2017-01-27 18:14:48 +01:00
|
|
|
unit uSimpleBrowser;
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-02-11 21:56:08 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-01-27 18:14:48 +01:00
|
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
2017-02-11 21:56:08 +01:00
|
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls,
|
|
|
|
{$ELSE}
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics,
|
|
|
|
Controls, Forms, Dialogs, StdCtrls, ExtCtrls,
|
|
|
|
{$ENDIF}
|
2018-09-16 10:39:41 +02:00
|
|
|
uCEFChromium, uCEFWindowParent, uCEFChromiumWindow, uCEFTypes, uCEFInterfaces,
|
2021-02-20 17:14:15 +01:00
|
|
|
uCEFWinControl;
|
2017-01-27 18:14:48 +01:00
|
|
|
|
|
|
|
type
|
2019-10-14 15:39:27 +02:00
|
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
TForm1 = class(TForm)
|
|
|
|
ChromiumWindow1: TChromiumWindow;
|
2017-09-07 10:58:09 +02:00
|
|
|
AddressPnl: TPanel;
|
|
|
|
AddressEdt: TEdit;
|
|
|
|
GoBtn: TButton;
|
2017-11-01 09:38:38 +01:00
|
|
|
Timer1: TTimer;
|
2021-02-20 17:14:15 +01:00
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
procedure GoBtnClick(Sender: TObject);
|
2017-11-01 09:38:38 +01:00
|
|
|
procedure Timer1Timer(Sender: TObject);
|
2021-02-20 17:14:15 +01:00
|
|
|
|
|
|
|
procedure FormShow(Sender: TObject);
|
2018-03-31 18:08:18 +02:00
|
|
|
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
|
|
|
procedure FormCreate(Sender: TObject);
|
2021-02-20 17:14:15 +01:00
|
|
|
|
|
|
|
procedure ChromiumWindow1AfterCreated(Sender: TObject);
|
2018-03-31 18:08:18 +02:00
|
|
|
procedure ChromiumWindow1Close(Sender: TObject);
|
2017-01-27 18:14:48 +01:00
|
|
|
private
|
2017-10-05 10:35:27 +02:00
|
|
|
// You have to handle this two messages to call NotifyMoveOrResizeStarted or some page elements will be misaligned.
|
2017-04-24 12:57:16 +02:00
|
|
|
procedure WMMove(var aMessage : TWMMove); message WM_MOVE;
|
|
|
|
procedure WMMoving(var aMessage : TMessage); message WM_MOVING;
|
2017-12-07 10:49:51 +01:00
|
|
|
// You also have to handle these two messages to set GlobalCEFApp.OsmodalLoop
|
|
|
|
procedure WMEnterMenuLoop(var aMessage: TMessage); message WM_ENTERMENULOOP;
|
|
|
|
procedure WMExitMenuLoop(var aMessage: TMessage); message WM_EXITMENULOOP;
|
2018-02-16 18:41:13 +01:00
|
|
|
|
|
|
|
protected
|
2018-03-31 18:08:18 +02:00
|
|
|
// Variables to control when can we destroy the form safely
|
2021-02-20 17:14:15 +01:00
|
|
|
FCanClose : boolean; // Set to True in TChromium.OnClose
|
2018-03-31 18:08:18 +02:00
|
|
|
FClosing : boolean; // Set to True in the CloseQuery event.
|
|
|
|
|
2019-06-16 10:31:13 +02:00
|
|
|
procedure Chromium_OnBeforePopup(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);
|
2018-02-16 18:41:13 +01:00
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
Form1: TForm1;
|
|
|
|
|
2019-06-19 16:53:26 +02:00
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
implementation
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{$R *.lfm}
|
2017-01-27 18:14:48 +01:00
|
|
|
|
2017-12-07 10:49:51 +01:00
|
|
|
uses
|
|
|
|
uCEFApplication;
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
// This is a demo with the simplest web browser you can build using CEF4Delphi and
|
|
|
|
// it doesn't show any sign of progress like other web browsers do.
|
|
|
|
|
|
|
|
// Remember that it may take a few seconds to load if Windows update, your antivirus or
|
|
|
|
// any other windows service is using your hard drive.
|
|
|
|
|
|
|
|
// Depending on your internet connection it may take longer than expected.
|
|
|
|
|
2021-02-20 17:14:15 +01:00
|
|
|
// This demo uses a TChromiumWindow component which should *ONLY* be used for extremely
|
|
|
|
// simple applications with a simple browser. For any other configuration it's
|
|
|
|
// recommended using a TChromium with a TCEFWindowParent as shown in the SimpleBrowser2 demo.
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
// Please check that your firewall or antivirus are not blocking this application
|
|
|
|
// or the domain "google.com". If you don't live in the US, you'll be redirected to
|
|
|
|
// another domain which will take a little time too.
|
|
|
|
|
2018-03-31 18:08:18 +02:00
|
|
|
// Destruction steps
|
|
|
|
// =================
|
2021-02-20 17:14:15 +01:00
|
|
|
// 1. The FormCloseQuery event sets CanClose to False and calls TChromiumWindow.CloseBrowser,
|
|
|
|
// which triggers the TChromiumWindow.OnClose event.
|
|
|
|
// 2. The TChromiumWindow.OnClose sets FCanClose to true and sends WM_CLOSE to the form.
|
2019-06-19 16:53:26 +02:00
|
|
|
|
2018-03-31 18:08:18 +02:00
|
|
|
procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
|
|
|
begin
|
|
|
|
CanClose := FCanClose;
|
|
|
|
|
|
|
|
if not(FClosing) then
|
|
|
|
begin
|
|
|
|
FClosing := True;
|
|
|
|
Visible := False;
|
|
|
|
ChromiumWindow1.CloseBrowser(True);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TForm1.FormCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
FCanClose := False;
|
2021-02-20 17:14:15 +01:00
|
|
|
FClosing := False;
|
|
|
|
|
|
|
|
// The browser will load the URL in AddressEdt initially.
|
|
|
|
ChromiumWindow1.ChromiumBrowser.DefaultURL := AddressEdt.Text;
|
2018-03-31 18:08:18 +02:00
|
|
|
end;
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
procedure TForm1.FormShow(Sender: TObject);
|
2017-01-27 18:14:48 +01:00
|
|
|
begin
|
2018-02-16 18:41:13 +01:00
|
|
|
// For simplicity, this demo blocks all popup windows and new tabs
|
|
|
|
ChromiumWindow1.ChromiumBrowser.OnBeforePopup := Chromium_OnBeforePopup;
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
// You *MUST* call CreateBrowser to create and initialize the browser.
|
|
|
|
// This will trigger the AfterCreated event when the browser is fully
|
|
|
|
// initialized and ready to receive commands.
|
2017-11-01 09:38:38 +01:00
|
|
|
|
|
|
|
// 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(ChromiumWindow1.CreateBrowser) then Timer1.Enabled := True;
|
2017-09-07 10:58:09 +02:00
|
|
|
end;
|
|
|
|
|
2021-02-20 17:14:15 +01:00
|
|
|
procedure TForm1.ChromiumWindow1Close(Sender: TObject);
|
2018-03-31 18:08:18 +02:00
|
|
|
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;
|
|
|
|
|
2021-02-20 17:14:15 +01:00
|
|
|
procedure TForm1.Chromium_OnBeforePopup( Sender : TObject;
|
|
|
|
const browser : ICefBrowser;
|
|
|
|
const frame : ICefFrame;
|
|
|
|
const targetUrl : ustring;
|
|
|
|
const 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-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-09-07 10:58:09 +02:00
|
|
|
procedure TForm1.ChromiumWindow1AfterCreated(Sender: TObject);
|
|
|
|
begin
|
2017-11-04 09:40:31 +01:00
|
|
|
Caption := 'Simple Browser';
|
2017-09-07 10:58:09 +02:00
|
|
|
AddressPnl.Enabled := True;
|
2017-01-27 18:14:48 +01:00
|
|
|
end;
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
procedure TForm1.GoBtnClick(Sender: TObject);
|
2017-01-27 18:14:48 +01:00
|
|
|
begin
|
2017-10-05 10:35:27 +02:00
|
|
|
// This will load the URL in the edit box
|
|
|
|
ChromiumWindow1.LoadURL(AddressEdt.Text);
|
2017-01-27 18:14:48 +01:00
|
|
|
end;
|
|
|
|
|
2017-11-01 09:38:38 +01:00
|
|
|
procedure TForm1.Timer1Timer(Sender: TObject);
|
|
|
|
begin
|
|
|
|
Timer1.Enabled := False;
|
2017-11-16 12:49:15 +01:00
|
|
|
if not(ChromiumWindow1.CreateBrowser) and not(ChromiumWindow1.Initialized) then
|
|
|
|
Timer1.Enabled := True;
|
2017-11-01 09:38:38 +01:00
|
|
|
end;
|
|
|
|
|
2017-04-24 12:57:16 +02:00
|
|
|
procedure TForm1.WMMove(var aMessage : TWMMove);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
2017-12-07 10:49:51 +01:00
|
|
|
if (ChromiumWindow1 <> nil) then ChromiumWindow1.NotifyMoveOrResizeStarted;
|
2017-04-24 12:57:16 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TForm1.WMMoving(var aMessage : TMessage);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
2017-12-07 10:49:51 +01:00
|
|
|
if (ChromiumWindow1 <> nil) then ChromiumWindow1.NotifyMoveOrResizeStarted;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TForm1.WMEnterMenuLoop(var aMessage: TMessage);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
if (aMessage.wParam = 0) and (GlobalCEFApp <> nil) then GlobalCEFApp.OsmodalLoop := True;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TForm1.WMExitMenuLoop(var aMessage: TMessage);
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
if (aMessage.wParam = 0) and (GlobalCEFApp <> nil) then GlobalCEFApp.OsmodalLoop := False;
|
2017-04-24 12:57:16 +02:00
|
|
|
end;
|
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
end.
|