2017-01-27 18:14:48 +01:00
|
|
|
program SimpleBrowser;
|
|
|
|
|
2023-11-26 19:28:28 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
uses
|
2017-02-11 21:56:08 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-07-02 13:17:47 +02:00
|
|
|
Vcl.Forms, WinApi.Windows,
|
2017-02-11 21:56:08 +01:00
|
|
|
{$ELSE}
|
2017-07-02 13:17:47 +02:00
|
|
|
Forms, Windows,
|
2017-02-11 21:56:08 +01:00
|
|
|
{$ENDIF}
|
2017-01-27 18:14:48 +01:00
|
|
|
uCEFApplication,
|
|
|
|
uSimpleBrowser in 'uSimpleBrowser.pas' {Form1};
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
2023-11-26 19:28:28 +01:00
|
|
|
const
|
|
|
|
IMAGE_FILE_LARGE_ADDRESS_AWARE = $0020;
|
|
|
|
|
|
|
|
// CEF needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM.
|
|
|
|
{$IFDEF WIN32}{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}{$ENDIF}
|
2017-04-15 18:19:22 +02:00
|
|
|
|
2017-01-27 18:14:48 +01:00
|
|
|
begin
|
|
|
|
GlobalCEFApp := TCefApplication.Create;
|
|
|
|
|
2019-09-19 14:14:03 +02:00
|
|
|
// In case you want to use custom directories for the CEF3 binaries, cache and user data.
|
2017-10-05 10:35:27 +02:00
|
|
|
// If you don't set a cache directory the browser will use in-memory cache.
|
2017-06-01 10:33:30 +02:00
|
|
|
{
|
2020-01-28 11:36:34 +01:00
|
|
|
GlobalCEFApp.FrameworkDirPath := 'c:\cef';
|
|
|
|
GlobalCEFApp.ResourcesDirPath := 'c:\cef';
|
|
|
|
GlobalCEFApp.LocalesDirPath := 'c:\cef\locales';
|
2017-11-01 09:38:38 +01:00
|
|
|
GlobalCEFApp.EnableGPU := True; // Enable hardware acceleration
|
2020-01-28 11:36:34 +01:00
|
|
|
GlobalCEFApp.cache := 'c:\cef\cache';
|
|
|
|
GlobalCEFApp.UserDataPath := 'c:\cef\User Data';
|
2017-06-01 10:33:30 +02:00
|
|
|
}
|
|
|
|
|
2017-10-05 10:35:27 +02:00
|
|
|
// You *MUST* call GlobalCEFApp.StartMainProcess in a if..then clause
|
|
|
|
// with the Application initialization inside the begin..end.
|
|
|
|
// Read this https://www.briskbard.com/index.php?lang=en&pageid=cef
|
2017-01-27 18:14:48 +01:00
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
2017-03-26 22:43:46 +02:00
|
|
|
{$IFDEF DELPHI11_UP}
|
2017-01-27 18:14:48 +01:00
|
|
|
Application.MainFormOnTaskbar := True;
|
2017-03-26 22:43:46 +02:00
|
|
|
{$ENDIF}
|
2017-01-27 18:14:48 +01:00
|
|
|
Application.CreateForm(TForm1, Form1);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
|
|
|
GlobalCEFApp.Free;
|
2018-05-24 19:15:41 +02:00
|
|
|
GlobalCEFApp := nil;
|
2017-01-27 18:14:48 +01:00
|
|
|
end.
|