2017-11-25 19:04:15 +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
|
|
|
|
|
//
|
2018-01-06 15:25:32 +01:00
|
|
|
|
// Copyright <20> 2018 Salvador D<>az Fau. All rights reserved.
|
2017-11-25 19:04:15 +01:00
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ 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.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
unit uCEFApp;
|
|
|
|
|
|
|
|
|
|
{$IFNDEF CPUX64}
|
|
|
|
|
{$ALIGN ON}
|
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2018-02-19 13:35:01 +01:00
|
|
|
|
System.Classes, System.UITypes,
|
2017-11-25 19:04:15 +01:00
|
|
|
|
{$ELSE}
|
|
|
|
|
Windows, Classes,
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
uCEFTypes, uCEFInterfaces, uCEFBaseRefCounted, uCEFSchemeRegistrar, uCEFApplication;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
TCefAppOwn = class(TCefBaseRefCountedOwn, ICefApp)
|
|
|
|
|
protected
|
|
|
|
|
procedure OnBeforeCommandLineProcessing(const processType: ustring; const commandLine: ICefCommandLine); virtual; abstract;
|
|
|
|
|
procedure OnRegisterCustomSchemes(const registrar: TCefSchemeRegistrarRef); virtual; abstract;
|
|
|
|
|
procedure GetResourceBundleHandler(var aHandler : ICefResourceBundleHandler); virtual; abstract;
|
|
|
|
|
procedure GetBrowserProcessHandler(var aHandler : ICefBrowserProcessHandler); virtual; abstract;
|
|
|
|
|
procedure GetRenderProcessHandler(var aHandler : ICefRenderProcessHandler); virtual; abstract;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create; virtual;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
TCustomCefApp = class(TCefAppOwn)
|
|
|
|
|
protected
|
2018-03-29 20:02:04 +02:00
|
|
|
|
FCefApp : TCefApplication;
|
|
|
|
|
FResourceBundleHandler : ICefResourceBundleHandler;
|
|
|
|
|
FBrowserProcessHandler : ICefBrowserProcessHandler;
|
|
|
|
|
FRenderProcessHandler : ICefRenderProcessHandler;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
procedure OnBeforeCommandLineProcessing(const processType: ustring; const commandLine: ICefCommandLine); override;
|
|
|
|
|
procedure OnRegisterCustomSchemes(const registrar: TCefSchemeRegistrarRef); override;
|
|
|
|
|
procedure GetResourceBundleHandler(var aHandler : ICefResourceBundleHandler); override;
|
|
|
|
|
procedure GetBrowserProcessHandler(var aHandler : ICefBrowserProcessHandler); override;
|
|
|
|
|
procedure GetRenderProcessHandler(var aHandler : ICefRenderProcessHandler); override;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure InitializeVars;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
public
|
|
|
|
|
constructor Create(const aCefApp : TCefApplication); reintroduce;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure BeforeDestruction; override;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
|
System.SysUtils,
|
|
|
|
|
{$ELSE}
|
|
|
|
|
SysUtils,
|
|
|
|
|
{$ENDIF}
|
2018-03-29 20:02:04 +02:00
|
|
|
|
uCEFLibFunctions, uCEFMiscFunctions, uCEFCommandLine, uCEFConstants,
|
|
|
|
|
uCEFBrowserProcessHandler, uCEFResourceBundleHandler, uCEFRenderProcessHandler;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefAppOwn
|
|
|
|
|
|
|
|
|
|
procedure cef_app_on_before_command_line_processing(self: PCefApp;
|
|
|
|
|
const process_type: PCefString;
|
|
|
|
|
command_line: PCefCommandLine); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
|
|
|
|
begin
|
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefAppOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
TCefAppOwn(TempObject).OnBeforeCommandLineProcessing(CefString(process_type),
|
|
|
|
|
TCefCommandLineRef.UnWrap(command_line));
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure cef_app_on_register_custom_schemes(self: PCefApp; registrar: PCefSchemeRegistrar); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempWrapper : TCefSchemeRegistrarRef;
|
|
|
|
|
TempObject : TObject;
|
|
|
|
|
begin
|
|
|
|
|
TempWrapper := nil;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
try
|
|
|
|
|
TempWrapper := TCefSchemeRegistrarRef.Create(registrar);
|
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefAppOwn) then
|
|
|
|
|
TCefAppOwn(TempObject).OnRegisterCustomSchemes(TempWrapper);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('cef_app_on_register_custom_schemes', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempWrapper <> nil) then FreeAndNil(TempWrapper);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_app_get_resource_bundle_handler(self: PCefApp): PCefResourceBundleHandler; stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
|
|
|
|
TempHandler : ICefResourceBundleHandler;
|
|
|
|
|
begin
|
|
|
|
|
Result := nil;
|
|
|
|
|
TempHandler := nil;
|
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefAppOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TCefAppOwn(TempObject).GetResourceBundleHandler(TempHandler);
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (TempHandler <> nil) then Result := TempHandler.Wrap;
|
|
|
|
|
finally
|
|
|
|
|
TempHandler := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_app_get_browser_process_handler(self: PCefApp): PCefBrowserProcessHandler; stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
|
|
|
|
TempHandler : ICefBrowserProcessHandler;
|
|
|
|
|
begin
|
|
|
|
|
Result := nil;
|
|
|
|
|
TempHandler := nil;
|
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefAppOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TCefAppOwn(TempObject).GetBrowserProcessHandler(TempHandler);
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (TempHandler <> nil) then Result := TempHandler.Wrap;
|
|
|
|
|
finally
|
|
|
|
|
TempHandler := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_app_get_render_process_handler(self: PCefApp): PCefRenderProcessHandler; stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
|
|
|
|
TempHandler : ICefRenderProcessHandler;
|
|
|
|
|
begin
|
|
|
|
|
Result := nil;
|
|
|
|
|
TempHandler := nil;
|
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefAppOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TCefAppOwn(TempObject).GetRenderProcessHandler(TempHandler);
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (TempHandler <> nil) then Result := TempHandler.Wrap;
|
|
|
|
|
finally
|
|
|
|
|
TempHandler := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
constructor TCefAppOwn.Create;
|
|
|
|
|
begin
|
|
|
|
|
inherited CreateData(SizeOf(TCefApp));
|
|
|
|
|
|
|
|
|
|
with PCefApp(FData)^ do
|
|
|
|
|
begin
|
|
|
|
|
on_before_command_line_processing := cef_app_on_before_command_line_processing;
|
|
|
|
|
on_register_custom_schemes := cef_app_on_register_custom_schemes;
|
|
|
|
|
get_resource_bundle_handler := cef_app_get_resource_bundle_handler;
|
|
|
|
|
get_browser_process_handler := cef_app_get_browser_process_handler;
|
|
|
|
|
get_render_process_handler := cef_app_get_render_process_handler;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCustomCefApp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor TCustomCefApp.Create(const aCefApp : TCefApplication);
|
|
|
|
|
begin
|
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
|
|
FCefApp := aCefApp;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
|
|
|
|
|
InitializeVars;
|
|
|
|
|
|
|
|
|
|
if (FCefApp <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
if FCefApp.MustCreateBrowserProcessHandler then
|
|
|
|
|
FBrowserProcessHandler := TCefCustomBrowserProcessHandler.Create(FCefApp);
|
|
|
|
|
|
|
|
|
|
if FCefApp.MustCreateResourceBundleHandler then
|
|
|
|
|
FResourceBundleHandler := TCefCustomResourceBundleHandler.Create(FCefApp);
|
|
|
|
|
|
|
|
|
|
if FCefApp.MustCreateRenderProcessHandler then
|
|
|
|
|
FRenderProcessHandler := TCefCustomRenderProcessHandler.Create(FCefApp);
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure TCustomCefApp.BeforeDestruction;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
begin
|
|
|
|
|
FCefApp := nil;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
InitializeVars;
|
|
|
|
|
|
|
|
|
|
inherited BeforeDestruction;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.InitializeVars;
|
|
|
|
|
begin
|
|
|
|
|
FResourceBundleHandler := nil;
|
|
|
|
|
FBrowserProcessHandler := nil;
|
|
|
|
|
FRenderProcessHandler := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.OnBeforeCommandLineProcessing(const processType: ustring; const commandLine: ICefCommandLine);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnBeforeCommandLineProcessing(processType, commandLine);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCustomCefApp.OnBeforeCommandLineProcessing', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.OnRegisterCustomSchemes(const registrar: TCefSchemeRegistrarRef);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnRegisterCustomSchemes(registrar);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCustomCefApp.OnRegisterCustomSchemes', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.GetResourceBundleHandler(var aHandler : ICefResourceBundleHandler);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (FResourceBundleHandler <> nil) then
|
|
|
|
|
aHandler := FResourceBundleHandler
|
2017-11-25 19:04:15 +01:00
|
|
|
|
else
|
|
|
|
|
aHandler := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.GetBrowserProcessHandler(var aHandler : ICefBrowserProcessHandler);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (FBrowserProcessHandler <> nil) then
|
|
|
|
|
aHandler := FBrowserProcessHandler
|
2017-11-25 19:04:15 +01:00
|
|
|
|
else
|
|
|
|
|
aHandler := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TCustomCefApp.GetRenderProcessHandler(var aHandler : ICefRenderProcessHandler);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
if (FRenderProcessHandler <> nil) then
|
|
|
|
|
aHandler := FRenderProcessHandler
|
2017-11-25 19:04:15 +01:00
|
|
|
|
else
|
|
|
|
|
aHandler := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|