2017-11-22 17:43:48 +01:00
|
|
|
unit uJSWindowBindingWithObject;
|
|
|
|
|
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-27 18:21:07 +01:00
|
|
|
uCEFWinControl, uCEFChromiumCore;
|
2017-11-22 17:43:48 +01:00
|
|
|
|
|
|
|
type
|
|
|
|
TJSWindowBindingWithObjectFrm = 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);
|
|
|
|
procedure Chromium1BeforePopup(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; 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);
|
|
|
|
procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
|
|
|
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;
|
2018-03-31 18:08:18 +02:00
|
|
|
procedure BrowserDestroyMsg(var aMessage : TMessage); message CEF_DESTROY;
|
2017-11-22 17:43:48 +01:00
|
|
|
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
|
|
|
|
JSWindowBindingWithObjectFrm: TJSWindowBindingWithObjectFrm;
|
|
|
|
|
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
|
2018-05-24 19:15:41 +02:00
|
|
|
uCEFv8Value, uMyV8Accessor, uCEFMiscFunctions;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
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 contents of 'window.myobj.myval'
|
|
|
|
// which was set in the GlobalCEFApp.OnContextCreated event.
|
|
|
|
|
2018-03-31 18:08:18 +02:00
|
|
|
// Destruction steps
|
|
|
|
// =================
|
|
|
|
// 1. FormCloseQuery sets CanClose to FALSE calls TChromium.CloseBrowser which triggers the TChromium.OnClose event.
|
2023-11-26 19:28:28 +01:00
|
|
|
// 2. TChromium.OnClose sends a CEF_DESTROY message to destroy CEFWindowParent1 in the main thread, which triggers the TChromium.OnBeforeClose event.
|
2020-02-26 13:28:29 +01:00
|
|
|
// 3. 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
|
|
|
|
TempAccessor : ICefV8Accessor;
|
|
|
|
TempObject : ICefv8Value;
|
|
|
|
begin
|
|
|
|
// This is the first JS Window Binding example in the "JavaScript Integration" wiki page at
|
|
|
|
// https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration.md
|
|
|
|
|
|
|
|
TempAccessor := TMyV8Accessor.Create;
|
|
|
|
TempObject := TCefv8ValueRef.NewObject(TempAccessor, nil);
|
|
|
|
TempObject.SetValueByKey('myval', TCefv8ValueRef.NewString('My Value!'), V8_PROPERTY_ATTRIBUTE_NONE);
|
|
|
|
|
|
|
|
context.Global.SetValueByKey('myobj', TempObject, 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 TJSWindowBindingWithObjectFrm.GoBtnClick(Sender: TObject);
|
|
|
|
begin
|
|
|
|
Chromium1.LoadURL(Edit1.Text);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.Chromium1AfterCreated(Sender: TObject; const browser: ICefBrowser);
|
|
|
|
begin
|
|
|
|
PostMessage(Handle, CEF_AFTERCREATED, 0, 0);
|
|
|
|
end;
|
|
|
|
|
2018-02-16 18:41:13 +01:00
|
|
|
procedure TJSWindowBindingWithObjectFrm.Chromium1BeforePopup(
|
|
|
|
Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame;
|
|
|
|
const targetUrl, targetFrameName: ustring;
|
|
|
|
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 TJSWindowBindingWithObjectFrm.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 TJSWindowBindingWithObjectFrm.WMMove(var aMessage : TWMMove);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
if (Chromium1 <> nil) then Chromium1.NotifyMoveOrResizeStarted;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.WMMoving(var aMessage : TMessage);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
if (Chromium1 <> nil) then Chromium1.NotifyMoveOrResizeStarted;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.Timer1Timer(Sender: TObject);
|
|
|
|
begin
|
|
|
|
Timer1.Enabled := False;
|
|
|
|
if not(Chromium1.CreateBrowser(CEFWindowParent1, '')) and not(Chromium1.Initialized) then
|
|
|
|
Timer1.Enabled := True;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.BrowserCreatedMsg(var aMessage : TMessage);
|
|
|
|
begin
|
|
|
|
Caption := 'JSWindowBindingWithObject';
|
|
|
|
CEFWindowParent1.UpdateSize;
|
|
|
|
NavControlPnl.Enabled := True;
|
|
|
|
GoBtn.Click;
|
|
|
|
end;
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
procedure TJSWindowBindingWithObjectFrm.WMEnterMenuLoop(var aMessage: TMessage);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
if (aMessage.wParam = 0) and (GlobalCEFApp <> nil) then GlobalCEFApp.OsmodalLoop := True;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.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 TJSWindowBindingWithObjectFrm.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 TJSWindowBindingWithObjectFrm.Chromium1Close(
|
2019-03-28 10:40:36 +01:00
|
|
|
Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
|
2018-03-31 18:08:18 +02:00
|
|
|
begin
|
|
|
|
PostMessage(Handle, CEF_DESTROY, 0, 0);
|
2019-03-28 10:40:36 +01:00
|
|
|
aAction := cbaDelay;
|
2018-03-31 18:08:18 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.FormCloseQuery(
|
|
|
|
Sender: TObject; var CanClose: Boolean);
|
|
|
|
begin
|
|
|
|
CanClose := FCanClose;
|
|
|
|
|
|
|
|
if not(FClosing) then
|
|
|
|
begin
|
|
|
|
FClosing := True;
|
|
|
|
Visible := False;
|
|
|
|
Chromium1.CloseBrowser(True);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.FormCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
FCanClose := False;
|
|
|
|
FClosing := False;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSWindowBindingWithObjectFrm.BrowserDestroyMsg(var aMessage : TMessage);
|
|
|
|
begin
|
|
|
|
CEFWindowParent1.Free;
|
|
|
|
end;
|
|
|
|
|
2017-11-22 17:43:48 +01:00
|
|
|
end.
|