2018-01-06 15:25:32 +01:00
unit uChildForm;
2023-11-26 19:28:28 +01:00
{$I ..\..\..\source\cef.inc}
2018-01-06 15:25:32 +01:00
interface
uses
{$IFDEF DELPHI16_UP}
Winapi . Windows, Winapi . Messages, System. SysUtils, System. Variants, System. Classes, Vcl. Graphics, Vcl. Menus,
Vcl. Controls, Vcl. Forms, Vcl. Dialogs, Vcl. StdCtrls, Vcl. ExtCtrls, System. Types, Vcl. ComCtrls, Vcl. ClipBrd,
System. UITypes,
{$ELSE}
Windows, Messages, SysUtils, Variants, Classes, Graphics, Menus,
Controls, Forms, Dialogs, StdCtrls, ExtCtrls, Types, ComCtrls, ClipBrd,
{$ENDIF}
2019-03-28 10:40:36 +01:00
uMainForm, uCEFChromium, uCEFWindowParent, uCEFInterfaces, uCEFConstants, uCEFTypes,
2020-07-02 10:50:52 +02:00
uCEFWinControl, uCEFChromiumCore;
2018-01-06 15:25:32 +01:00
type
TChildForm = class( TForm)
Panel1: TPanel;
Edit1: TEdit;
Button1: TButton;
Chromium1: TChromium;
CEFWindowParent1: TCEFWindowParent;
StatusBar1: TStatusBar;
2023-11-26 19:28:28 +01:00
2018-01-06 15:25:32 +01:00
procedure Button1Click( Sender: TObject) ;
2023-11-26 19:28:28 +01:00
procedure FormClose( Sender: TObject; var Action: TCloseAction) ;
2018-01-06 15:25:32 +01:00
procedure FormShow( Sender: TObject) ;
procedure FormCloseQuery( Sender: TObject; var CanClose: Boolean ) ;
procedure FormCreate( Sender: TObject) ;
procedure FormDestroy( Sender: TObject) ;
2023-11-26 19:28:28 +01:00
procedure Chromium1AfterCreated( Sender: TObject; const browser: ICefBrowser) ;
procedure Chromium1BeforeClose( Sender: TObject; const browser: ICefBrowser) ;
procedure Chromium1LoadingStateChange( Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean ) ;
procedure Chromium1StatusMessage( Sender: TObject; const browser: ICefBrowser; const value: ustring) ;
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 ) ;
2018-01-06 15:25:32 +01:00
private
// 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.
protected
procedure BrowserCreatedMsg( var aMessage : TMessage) ; message CEFBROWSER_CREATED;
procedure WMMove( var aMessage : TWMMove) ; message WM_MOVE;
procedure WMMoving( var aMessage : TMessage) ; message WM_MOVING;
procedure WMEnterMenuLoop( var aMessage: TMessage) ; message WM_ENTERMENULOOP;
procedure WMExitMenuLoop( var aMessage: TMessage) ; message WM_EXITMENULOOP;
public
property Closing : boolean read FClosing;
end ;
implementation
{$R *.dfm}
// 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-01-06 15:25:32 +01:00
uses
uCEFRequestContext, uCEFApplication;
procedure TChildForm. Button1Click( Sender: TObject) ;
begin
Chromium1. LoadURL( Edit1. Text ) ;
end ;
procedure TChildForm. Chromium1AfterCreated( Sender: TObject; const browser: ICefBrowser) ;
begin
PostMessage( Handle, CEFBROWSER_CREATED, 0 , 0 ) ;
end ;
procedure TChildForm. Chromium1BeforeClose( Sender: TObject; const browser: ICefBrowser) ;
begin
FCanClose : = True ;
PostMessage( Handle, WM_CLOSE, 0 , 0 ) ;
end ;
2018-02-16 18:41:13 +01:00
procedure TChildForm. Chromium1BeforePopup( Sender: TObject;
2024-11-16 12:19:26 +01:00
const browser: ICefBrowser; const frame: ICefFrame; popup_id: Integer ;
const targetUrl, targetFrameName: ustring; targetDisposition: TCefWindowOpenDisposition;
2018-03-29 20:02:04 +02:00
userGesture: Boolean ; const popupFeatures: TCefPopupFeatures;
2018-02-16 18:41:13 +01:00
var windowInfo: TCefWindowInfo; var client: ICefClient;
2019-06-16 10:31:13 +02:00
var settings: TCefBrowserSettings;
var extra_info: ICefDictionaryValue;
var noJavascriptAccess: Boolean ;
2018-03-29 20:02:04 +02:00
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 ;
2018-01-06 15:25:32 +01:00
procedure TChildForm. Chromium1LoadingStateChange( Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean ) ;
begin
if isLoading then
begin
StatusBar1. Panels[ 0 ] . Text : = 'Loading...' ;
cursor : = crAppStart;
end
else
begin
StatusBar1. Panels[ 0 ] . Text : = '' ;
cursor : = crDefault;
end ;
end ;
procedure TChildForm. Chromium1StatusMessage( Sender: TObject; const browser: ICefBrowser; const value: ustring) ;
begin
StatusBar1. Panels[ 1 ] . Text : = value;
end ;
procedure TChildForm. FormClose( Sender: TObject; var Action: TCloseAction) ;
begin
Action : = caFree;
end ;
procedure TChildForm. FormCloseQuery( Sender: TObject; var CanClose: Boolean ) ;
begin
2025-03-13 11:51:28 +01:00
CanClose : = ( Chromium1. BrowserId = 0 ) or FCanClose;
2018-01-06 15:25:32 +01:00
if not( FClosing) and Panel1. Enabled then
begin
FClosing : = True ;
Panel1. Enabled : = False ;
Chromium1. CloseBrowser( True ) ;
2024-09-03 17:26:03 +02:00
CEFWindowParent1. Free;
2018-01-06 15:25:32 +01:00
end ;
end ;
procedure TChildForm. FormCreate( Sender: TObject) ;
begin
FCanClose : = False ;
FClosing : = False ;
end ;
procedure TChildForm. FormDestroy( Sender: TObject) ;
begin
// Tell the main form that a child has been destroyed.
// The main form will check if this was the last child to close itself
PostMessage( MainForm. Handle, CEFBROWSER_CHILDDESTROYED, 0 , 0 ) ;
end ;
procedure TChildForm. FormShow( Sender: TObject) ;
var
TempContext : ICefRequestContext;
2021-06-04 15:10:40 +02:00
TempCache : string ;
2018-01-06 15:25:32 +01:00
begin
// The new request context overrides several GlobalCEFApp properties like :
2019-10-30 10:26:48 +01:00
// cache, AcceptLanguageList, PersistSessionCookies, PersistUserPreferences and
// IgnoreCertificateErrors.
2018-01-06 15:25:32 +01:00
// If you use an empty cache path, CEF will use in-memory cache.
2021-04-18 19:36:20 +02:00
// The cache directories of all the browsers *MUST* be a subdirectory of
// GlobalCEFApp.RootCache unless you use a blank cache (in-memory).
2019-10-30 10:26:48 +01:00
2021-06-04 15:10:40 +02:00
TempCache : = GlobalCEFApp. RootCache + '\cache2' ;
2018-01-06 15:25:32 +01:00
if MainForm. NewContextChk. Checked then
2024-09-03 17:26:03 +02:00
TempContext : = TCefRequestContextRef. New( TempCache, '' , '' , False , False )
2018-01-06 15:25:32 +01:00
else
TempContext : = nil ;
Chromium1. CreateBrowser( CEFWindowParent1, '' , TempContext) ;
end ;
procedure TChildForm. WMMove( var aMessage : TWMMove) ;
begin
inherited ;
if ( Chromium1 < > nil ) then Chromium1. NotifyMoveOrResizeStarted;
end ;
procedure TChildForm. WMMoving( var aMessage : TMessage) ;
begin
inherited ;
if ( Chromium1 < > nil ) then Chromium1. NotifyMoveOrResizeStarted;
end ;
procedure TChildForm. WMEnterMenuLoop( var aMessage: TMessage) ;
begin
inherited ;
if ( aMessage. wParam = 0 ) and ( GlobalCEFApp < > nil ) then GlobalCEFApp. OsmodalLoop : = True ;
end ;
procedure TChildForm. WMExitMenuLoop( var aMessage: TMessage) ;
begin
inherited ;
if ( aMessage. wParam = 0 ) and ( GlobalCEFApp < > nil ) then GlobalCEFApp. OsmodalLoop : = False ;
end ;
procedure TChildForm. BrowserCreatedMsg( var aMessage : TMessage) ;
begin
CEFWindowParent1. UpdateSize;
Panel1. Enabled : = True ;
Button1. Click;
end ;
end .