2017-02-11 21:56:08 +01:00
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ***************************** CEF4Delphi *******************************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
|
|
|
|
|
// browser in Delphi applications.
|
|
|
|
|
//
|
|
|
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
|
|
|
//
|
|
|
|
|
// For more information about CEF4Delphi visit :
|
|
|
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
|
|
|
//
|
|
|
|
|
// Copyright <20> 2017 Salvador D<>az Fau. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
(*
|
|
|
|
|
* Delphi Chromium Embedded 3
|
|
|
|
|
*
|
|
|
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
|
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
|
|
|
*
|
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
|
|
|
* the specific language governing rights and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
|
|
|
* Web site : http://www.progdigy.com
|
|
|
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
|
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
|
|
|
*
|
|
|
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
|
|
|
* this source code without explicit permission.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
program MiniBrowser;
|
|
|
|
|
|
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-06-17 09:19:18 +02:00
|
|
|
|
Vcl.Forms, System.SysUtils,
|
2017-02-11 21:56:08 +01:00
|
|
|
|
{$ELSE}
|
2017-06-17 09:19:18 +02:00
|
|
|
|
Forms, SysUtils,
|
2017-04-15 18:19:22 +02:00
|
|
|
|
{$ENDIF}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
uCEFApplication,
|
2017-03-15 14:53:45 +01:00
|
|
|
|
uCEFMiscFunctions,
|
2017-03-16 19:09:42 +01:00
|
|
|
|
uCEFSchemeRegistrar,
|
2017-03-22 15:22:11 +01:00
|
|
|
|
uCEFRenderProcessHandler,
|
|
|
|
|
uCEFv8Handler,
|
|
|
|
|
uCEFInterfaces,
|
|
|
|
|
uCEFDomVisitor,
|
2017-06-17 09:19:18 +02:00
|
|
|
|
uCEFDomNode,
|
2017-03-22 15:22:11 +01:00
|
|
|
|
uCEFConstants,
|
|
|
|
|
uCEFTypes,
|
|
|
|
|
uCEFTask,
|
2017-02-11 21:56:08 +01:00
|
|
|
|
uMiniBrowser in 'uMiniBrowser.pas' {MiniBrowserFrm},
|
2017-03-15 14:53:45 +01:00
|
|
|
|
uTestExtension in 'uTestExtension.pas',
|
|
|
|
|
uHelloScheme in 'uHelloScheme.pas',
|
|
|
|
|
uPreferences in 'uPreferences.pas' {PreferencesFrm};
|
2017-02-11 21:56:08 +01:00
|
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
2017-04-15 18:19:22 +02:00
|
|
|
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
|
|
|
|
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
|
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
var
|
|
|
|
|
TempProcessHandler : TCefCustomRenderProcessHandler;
|
|
|
|
|
|
2017-06-17 09:19:18 +02:00
|
|
|
|
procedure SimpleDOMIteration(const aDocument: ICefDomDocument);
|
|
|
|
|
var
|
|
|
|
|
TempHead, TempChild : ICefDomNode;
|
|
|
|
|
begin
|
|
|
|
|
try
|
|
|
|
|
if (aDocument <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
TempHead := aDocument.Head;
|
|
|
|
|
|
|
|
|
|
if (TempHead <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
TempChild := TempHead.FirstChild;
|
|
|
|
|
|
|
|
|
|
while (TempChild <> nil) do
|
|
|
|
|
begin
|
|
|
|
|
CefLog('CEF4Delphi', 1, CEF_LOG_SEVERITY_ERROR, 'Head child element : ' + TempChild.Name);
|
|
|
|
|
TempChild := TempChild.NextSibling;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('SimpleDOMIteration', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
procedure DOMVisitor_OnDocAvailable(const document: ICefDomDocument);
|
|
|
|
|
begin
|
|
|
|
|
// This function is called from a different process.
|
|
|
|
|
// document is only valid inside this function.
|
|
|
|
|
// As an example, this function only writes the document title to the 'debug.log' file.
|
|
|
|
|
CefLog('CEF4Delphi', 1, CEF_LOG_SEVERITY_ERROR, 'document.Title : ' + document.Title);
|
2017-06-17 09:19:18 +02:00
|
|
|
|
|
|
|
|
|
// Simple DOM iteration example
|
|
|
|
|
SimpleDOMIteration(document);
|
2017-03-22 15:22:11 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure ProcessHandler_OnCustomMessage(const browser: ICefBrowser; sourceProcess: TCefProcessId; const message: ICefProcessMessage);
|
|
|
|
|
var
|
|
|
|
|
TempFrame : ICefFrame;
|
|
|
|
|
TempVisitor : TCefFastDomVisitor;
|
|
|
|
|
begin
|
|
|
|
|
if (browser <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
TempFrame := browser.MainFrame;
|
|
|
|
|
|
|
|
|
|
if (TempFrame <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
TempVisitor := TCefFastDomVisitor.Create(DOMVisitor_OnDocAvailable);
|
|
|
|
|
TempFrame.VisitDom(TempVisitor);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure ProcessHandler_OnWebKitReady;
|
|
|
|
|
begin
|
|
|
|
|
{$IFDEF DELPHI14_UP}
|
2017-04-06 10:07:06 +02:00
|
|
|
|
// Registering the extension. Read this document for more details :
|
|
|
|
|
// https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md
|
|
|
|
|
TCefRTTIExtension.Register('myextension', TTestExtension);
|
2017-03-22 15:22:11 +01:00
|
|
|
|
{$ENDIF}
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
procedure GlobalCEFApp_OnRegCustomSchemes(const registrar: TCefSchemeRegistrarRef);
|
2017-03-15 14:53:45 +01:00
|
|
|
|
begin
|
2017-04-26 15:38:50 +02:00
|
|
|
|
registrar.AddCustomScheme('hello', True, True, False, False, False, False);
|
2017-03-15 14:53:45 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-02-11 21:56:08 +01:00
|
|
|
|
begin
|
2017-04-06 10:07:06 +02:00
|
|
|
|
// This ProcessHandler is used for the extension and the DOM visitor demos.
|
|
|
|
|
// It can be removed if you don't want those features.
|
2017-03-22 15:22:11 +01:00
|
|
|
|
TempProcessHandler := TCefCustomRenderProcessHandler.Create;
|
|
|
|
|
TempProcessHandler.MessageName := 'retrievedom'; // same message name than TMiniBrowserFrm.VisitDOMMsg
|
|
|
|
|
TempProcessHandler.OnCustomMessage := ProcessHandler_OnCustomMessage;
|
|
|
|
|
TempProcessHandler.OnWebKitReady := ProcessHandler_OnWebKitReady;
|
|
|
|
|
|
2017-02-11 21:56:08 +01:00
|
|
|
|
GlobalCEFApp := TCefApplication.Create;
|
|
|
|
|
GlobalCEFApp.RemoteDebuggingPort := 9000;
|
2017-03-22 15:22:11 +01:00
|
|
|
|
GlobalCEFApp.RenderProcessHandler := TempProcessHandler as ICefRenderProcessHandler;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
GlobalCEFApp.OnRegCustomSchemes := GlobalCEFApp_OnRegCustomSchemes;
|
2017-03-26 22:43:46 +02:00
|
|
|
|
|
2017-05-18 11:44:47 +02:00
|
|
|
|
// In case you want to use custom directories for the CEF3 binaries, cache, cookies and user data.
|
|
|
|
|
{
|
|
|
|
|
GlobalCEFApp.FrameworkDirPath := 'cef';
|
|
|
|
|
GlobalCEFApp.ResourcesDirPath := 'cef';
|
|
|
|
|
GlobalCEFApp.LocalesDirPath := 'cef\locales';
|
|
|
|
|
GlobalCEFApp.cache := 'cef\cache';
|
|
|
|
|
GlobalCEFApp.cookies := 'cef\cookies';
|
|
|
|
|
GlobalCEFApp.UserDataPath := 'cef\User Data';
|
|
|
|
|
}
|
2017-04-26 15:38:50 +02:00
|
|
|
|
|
2017-03-26 22:43:46 +02:00
|
|
|
|
// Enabling the debug log file for then DOM visitor demo.
|
|
|
|
|
// This adds lots of warnings to the console, specially if you run this inside VirtualBox.
|
2017-04-06 10:07:06 +02:00
|
|
|
|
// Remove it if you don't want to use the DOM visitor
|
2017-03-22 15:22:11 +01:00
|
|
|
|
GlobalCEFApp.LogFile := 'debug.log';
|
|
|
|
|
GlobalCEFApp.LogSeverity := LOGSEVERITY_ERROR;
|
2017-02-11 21:56:08 +01:00
|
|
|
|
|
2017-02-14 11:01:16 +01:00
|
|
|
|
// Examples of command line switches.
|
|
|
|
|
// **********************************
|
|
|
|
|
//
|
|
|
|
|
// Uncomment the following line to see an FPS counter in the browser.
|
2017-02-13 15:54:27 +01:00
|
|
|
|
//GlobalCEFApp.AddCustomCommandLine('--show-fps-counter');
|
2017-02-14 11:01:16 +01:00
|
|
|
|
//
|
|
|
|
|
// Uncomment the following line to change the user agent string.
|
|
|
|
|
//GlobalCEFApp.AddCustomCommandLine('--user-agent', 'MiniBrowser');
|
2017-02-13 15:54:27 +01:00
|
|
|
|
|
2017-02-11 21:56:08 +01:00
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
|
begin
|
2017-04-24 12:57:16 +02:00
|
|
|
|
// You can register the Scheme Handler Factory here or later, for example in a context menu command.
|
2017-03-15 14:53:45 +01:00
|
|
|
|
CefRegisterSchemeHandlerFactory('hello', '', THelloScheme);
|
|
|
|
|
|
2017-02-11 21:56:08 +01:00
|
|
|
|
Application.Initialize;
|
2017-03-26 22:43:46 +02:00
|
|
|
|
{$IFDEF DELPHI11_UP}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
Application.MainFormOnTaskbar := True;
|
2017-03-26 22:43:46 +02:00
|
|
|
|
{$ENDIF}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
Application.CreateForm(TMiniBrowserFrm, MiniBrowserFrm);
|
2017-03-15 14:53:45 +01:00
|
|
|
|
Application.CreateForm(TPreferencesFrm, PreferencesFrm);
|
2017-02-11 21:56:08 +01:00
|
|
|
|
Application.Run;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
GlobalCEFApp.Free;
|
|
|
|
|
end.
|