2017-11-22 17:43:48 +01:00
unit uJSWindowBindingWithFunction;
2023-11-26 19:28:28 +01:00
{$I ..\..\..\..\source\cef.inc}
2017-11-22 17:43:48 +01:00
interface
uses
{$IFDEF DELPHI16_UP}
Winapi . Windows, Winapi . Messages, System. SysUtils, System. Variants, System. Classes, Vcl. Graphics,
Vcl. Controls, Vcl. Forms, Vcl. Dialogs, Vcl. StdCtrls, Vcl. ExtCtrls, Vcl. ComCtrls,
{$ELSE}
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, StdCtrls, ExtCtrls, ComCtrls,
{$ENDIF}
2019-03-28 10:40:36 +01:00
uCEFChromium, uCEFWindowParent, uCEFInterfaces, uCEFApplication, uCEFTypes, uCEFConstants,
2023-11-26 19:28:28 +01:00
uCEFWinControl, uCEFChromiumCore;
2017-11-22 17:43:48 +01:00
type
TJSWindowBindingWithFunctionFrm = class( TForm)
NavControlPnl: TPanel;
Edit1: TEdit;
GoBtn: TButton;
CEFWindowParent1: TCEFWindowParent;
Chromium1: TChromium;
Timer1: TTimer;
2023-11-26 19:28:28 +01:00
2017-11-22 17:43:48 +01:00
procedure FormShow( Sender: TObject) ;
2018-03-31 18:08:18 +02:00
procedure FormCreate( Sender: TObject) ;
procedure FormCloseQuery( Sender: TObject; var CanClose: Boolean ) ;
2023-11-26 19:28:28 +01:00
procedure GoBtnClick( Sender: TObject) ;
procedure Timer1Timer( Sender: TObject) ;
procedure Chromium1AfterCreated( Sender: TObject; const browser: ICefBrowser) ;
2024-11-16 12:19:26 +01:00
procedure Chromium1BeforePopup( Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; popup_id: Integer ; const targetUrl, targetFrameName: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean ; const popupFeatures: TCefPopupFeatures; var windowInfo: TCefWindowInfo; var client: ICefClient; var settings: TCefBrowserSettings; var extra_info: ICefDictionaryValue; var noJavascriptAccess: Boolean ; var Result : Boolean ) ;
2023-11-26 19:28:28 +01:00
procedure Chromium1BeforeClose( Sender: TObject; const browser: ICefBrowser) ;
2017-11-22 17:43:48 +01:00
protected
2018-03-31 18:08:18 +02:00
// Variables to control when can we destroy the form safely
FCanClose : boolean ; // Set to True in TChromium.OnBeforeClose
FClosing : boolean ; // Set to True in the CloseQuery event.
2017-11-22 17:43:48 +01:00
procedure BrowserCreatedMsg( var aMessage : TMessage) ; message CEF_AFTERCREATED;
procedure WMMove( var aMessage : TWMMove) ; message WM_MOVE;
procedure WMMoving( var aMessage : TMessage) ; message WM_MOVING;
2017-12-18 19:38:56 +01:00
procedure WMEnterMenuLoop( var aMessage: TMessage) ; message WM_ENTERMENULOOP;
procedure WMExitMenuLoop( var aMessage: TMessage) ; message WM_EXITMENULOOP;
2017-11-22 17:43:48 +01:00
public
{ Public declarations }
end ;
var
JSWindowBindingWithFunctionFrm: TJSWindowBindingWithFunctionFrm;
2018-06-17 14:18:11 +02:00
procedure CreateGlobalCEFApp;
2017-11-25 19:04:15 +01:00
2017-11-22 17:43:48 +01:00
implementation
{$R *.dfm}
2017-11-25 19:04:15 +01:00
uses
uCEFv8Value, uMyV8Handler;
2019-10-19 10:58:34 +02:00
// The CEF document describing JavaScript integration is here :
2017-11-22 17:43:48 +01:00
// https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md
// The HTML file in this demo has a button that shows the result of 'window.myfunc()'
// which was set in the GlobalCEFApp.OnContextCreated event.
2018-03-31 18:08:18 +02:00
// Destruction steps
// =================
2024-09-03 17:26:03 +02:00
// 1. FormCloseQuery sets CanClose to FALSE, destroys CEFWindowParent1 and calls TChromium.CloseBrowser which triggers the TChromium.OnBeforeClose event.
// 2. TChromium.OnBeforeClose sets FCanClose := True and sends WM_CLOSE to the form.
2018-03-31 18:08:18 +02:00
2017-11-25 19:04:15 +01:00
procedure GlobalCEFApp_OnContextCreated( const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context) ;
var
TempHandler : ICefv8Handler;
TempFunction : ICefv8Value;
begin
// This is the JS Window Binding example with a function in the "JavaScript Integration" wiki page at
// https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md
TempHandler : = TMyV8Handler. Create;
TempFunction : = TCefv8ValueRef. NewFunction( 'myfunc' , TempHandler) ;
context. Global. SetValueByKey( 'myfunc' , TempFunction, V8_PROPERTY_ATTRIBUTE_NONE) ;
end ;
2018-06-17 14:18:11 +02:00
procedure CreateGlobalCEFApp;
begin
GlobalCEFApp : = TCefApplication. Create;
GlobalCEFApp. OnContextCreated : = GlobalCEFApp_OnContextCreated;
end ;
2017-11-22 17:43:48 +01:00
procedure TJSWindowBindingWithFunctionFrm. GoBtnClick( Sender: TObject) ;
begin
Chromium1. LoadURL( Edit1. Text ) ;
end ;
procedure TJSWindowBindingWithFunctionFrm. Chromium1AfterCreated( Sender: TObject; const browser: ICefBrowser) ;
begin
PostMessage( Handle, CEF_AFTERCREATED, 0 , 0 ) ;
end ;
2018-02-16 18:41:13 +01:00
procedure TJSWindowBindingWithFunctionFrm. Chromium1BeforePopup(
Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame;
2024-11-16 12:19:26 +01:00
popup_id: Integer ; const targetUrl, targetFrameName: ustring;
2018-02-16 18:41:13 +01:00
targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean ;
2018-03-29 20:02:04 +02:00
const popupFeatures: TCefPopupFeatures; var windowInfo: TCefWindowInfo;
2018-02-16 18:41:13 +01:00
var client: ICefClient; var settings: TCefBrowserSettings;
2019-06-16 10:31:13 +02:00
var extra_info: ICefDictionaryValue;
2018-03-29 20:02:04 +02:00
var noJavascriptAccess: Boolean ; var Result : Boolean ) ;
2018-02-16 18:41:13 +01:00
begin
// For simplicity, this demo blocks all popup windows and new tabs
2023-12-15 18:06:46 +01:00
Result : = ( targetDisposition in [ CEF_WOD_NEW_FOREGROUND_TAB, CEF_WOD_NEW_BACKGROUND_TAB, CEF_WOD_NEW_POPUP, CEF_WOD_NEW_WINDOW] ) ;
2018-02-16 18:41:13 +01:00
end ;
2017-11-22 17:43:48 +01:00
procedure TJSWindowBindingWithFunctionFrm. FormShow( Sender: TObject) ;
begin
// GlobalCEFApp.GlobalContextInitialized has to be TRUE before creating any browser
// If it's not initialized yet, we use a simple timer to create the browser later.
if not( Chromium1. CreateBrowser( CEFWindowParent1, '' ) ) then Timer1. Enabled : = True ;
end ;
procedure TJSWindowBindingWithFunctionFrm. WMMove( var aMessage : TWMMove) ;
begin
inherited ;
if ( Chromium1 < > nil ) then Chromium1. NotifyMoveOrResizeStarted;
end ;
procedure TJSWindowBindingWithFunctionFrm. WMMoving( var aMessage : TMessage) ;
begin
inherited ;
if ( Chromium1 < > nil ) then Chromium1. NotifyMoveOrResizeStarted;
end ;
procedure TJSWindowBindingWithFunctionFrm. Timer1Timer( Sender: TObject) ;
begin
Timer1. Enabled : = False ;
if not( Chromium1. CreateBrowser( CEFWindowParent1, '' ) ) and not( Chromium1. Initialized) then
Timer1. Enabled : = True ;
end ;
procedure TJSWindowBindingWithFunctionFrm. BrowserCreatedMsg( var aMessage : TMessage) ;
begin
Caption : = 'JSWindowBindingWithFunction' ;
CEFWindowParent1. UpdateSize;
NavControlPnl. Enabled : = True ;
GoBtn. Click;
end ;
2017-12-18 19:38:56 +01:00
procedure TJSWindowBindingWithFunctionFrm. WMEnterMenuLoop( var aMessage: TMessage) ;
begin
inherited ;
if ( aMessage. wParam = 0 ) and ( GlobalCEFApp < > nil ) then GlobalCEFApp. OsmodalLoop : = True ;
end ;
procedure TJSWindowBindingWithFunctionFrm. WMExitMenuLoop( var aMessage: TMessage) ;
begin
inherited ;
if ( aMessage. wParam = 0 ) and ( GlobalCEFApp < > nil ) then GlobalCEFApp. OsmodalLoop : = False ;
end ;
2018-03-31 18:08:18 +02:00
procedure TJSWindowBindingWithFunctionFrm. Chromium1BeforeClose(
Sender: TObject; const browser: ICefBrowser) ;
begin
2020-02-26 13:28:29 +01:00
FCanClose : = True ;
PostMessage( Handle, WM_CLOSE, 0 , 0 ) ;
2018-03-31 18:08:18 +02:00
end ;
procedure TJSWindowBindingWithFunctionFrm. FormCloseQuery(
Sender: TObject; var CanClose: Boolean ) ;
begin
CanClose : = FCanClose;
if not( FClosing) then
begin
FClosing : = True ;
Visible : = False ;
Chromium1. CloseBrowser( True ) ;
2024-09-03 17:26:03 +02:00
CEFWindowParent1. Free;
2018-03-31 18:08:18 +02:00
end ;
end ;
procedure TJSWindowBindingWithFunctionFrm. FormCreate( Sender: TObject) ;
begin
FCanClose : = False ;
FClosing : = False ;
end ;
2017-11-22 17:43:48 +01:00
end .