mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
a0c8eda6e0
Added Lazarus 3.0 support
39 lines
1.2 KiB
ObjectPascal
39 lines
1.2 KiB
ObjectPascal
program OSRExternalPumpBrowser_sp;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
uCEFApplicationCore;
|
|
|
|
begin
|
|
GlobalCEFApp := TCefApplicationCore.Create;
|
|
GlobalCEFApp.WindowlessRenderingEnabled := True;
|
|
GlobalCEFApp.ExternalMessagePump := True;
|
|
GlobalCEFApp.MultiThreadedMessageLoop := False;
|
|
GlobalCEFApp.SetCurrentDir := True;
|
|
|
|
// The main process and the subprocess *MUST* have the same GlobalCEFApp
|
|
// properties and events, specially FrameworkDirPath, ResourcesDirPath,
|
|
// LocalesDirPath, cache and UserDataPath paths.
|
|
|
|
// The demos are compiled into the BIN directory. Make sure OSRExternalPumpBrowser
|
|
// and OSRExternalPumpBrowser_sp are in that directory or this demo won't work.
|
|
|
|
// In case you want to use custom directories for the CEF binaries, cache
|
|
// and user data.
|
|
{
|
|
GlobalCEFApp.FrameworkDirPath := 'cef';
|
|
GlobalCEFApp.ResourcesDirPath := 'cef';
|
|
GlobalCEFApp.LocalesDirPath := 'cef\locales';
|
|
GlobalCEFApp.cache := 'cef\cache';
|
|
GlobalCEFApp.UserDataPath := 'cef\User Data';
|
|
}
|
|
|
|
GlobalCEFApp.StartSubProcess;
|
|
DestroyGlobalCEFApp;
|
|
end.
|
|
|