2018-01-06 15:25:32 +01:00
|
|
|
program JSSimpleWindowBinding;
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{$MODE Delphi}
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\..\source\cef.inc}
|
2018-01-06 15:25:32 +01:00
|
|
|
|
|
|
|
uses
|
|
|
|
Forms,
|
2019-05-19 16:08:15 +02:00
|
|
|
LCLIntf, LCLType, LMessages, Interfaces,
|
2018-01-06 15:25:32 +01:00
|
|
|
uCEFApplication,
|
|
|
|
uJSSimpleWindowBinding in 'uJSSimpleWindowBinding.pas' {JSSimpleWindowBindingFrm};
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{.$R *.res}
|
2018-01-06 15:25:32 +01:00
|
|
|
|
|
|
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
2019-05-19 16:08:15 +02:00
|
|
|
{$SetPEFlags $20}
|
2018-01-06 15:25:32 +01:00
|
|
|
|
2024-05-02 12:31:19 +02:00
|
|
|
{$R *.res}
|
|
|
|
|
2018-01-06 15:25:32 +01:00
|
|
|
begin
|
2023-12-23 18:58:40 +01:00
|
|
|
GlobalCEFApp := TCefApplication.Create;
|
|
|
|
GlobalCEFApp.SetCurrentDir := True;
|
2018-01-06 15:25:32 +01:00
|
|
|
|
|
|
|
// This is the same demo than the JSSimpleWindowBinding but using a different executable for the subprocesses.
|
|
|
|
// Notice that GlobalCEFApp.OnContextCreated is now defined in the SubProcess.
|
|
|
|
|
|
|
|
// Follow these steps to test this demo :
|
|
|
|
// 1. Build the SubProcess project in this directory.
|
2018-03-29 20:02:04 +02:00
|
|
|
// 2. Copy the CEF binaries to the BIN directory in CEF4Delphi.
|
|
|
|
// 3. Build this project : JSSimpleWindowBinding
|
|
|
|
// 4. Run this demo : JSSimpleWindowBinding
|
2018-01-06 15:25:32 +01:00
|
|
|
|
|
|
|
GlobalCEFApp.BrowserSubprocessPath := 'SubProcess.exe';
|
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
{$IFDEF DELPHI11_UP}
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
{$ENDIF}
|
|
|
|
Application.CreateForm(TJSSimpleWindowBindingFrm, JSSimpleWindowBindingFrm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
|
|
|
GlobalCEFApp.Free;
|
2018-05-24 19:15:41 +02:00
|
|
|
GlobalCEFApp := nil;
|
2018-01-06 15:25:32 +01:00
|
|
|
end.
|