diff --git a/bin/test.html b/bin/test.html index 1afcf670..6705c327 100644 --- a/bin/test.html +++ b/bin/test.html @@ -13,9 +13,8 @@ Local SWF file.
You need to install the Adobe Flash PPAPI plugin to view the SWF file.

-

-

- +

+


Bigger image

diff --git a/bin/test.js b/bin/test.js index a45d052b..393d7d03 100644 --- a/bin/test.js +++ b/bin/test.js @@ -1,5 +1,15 @@ function myAlertFunction() { - alert('This alert dialog is declared in a local JS file.'); - +} + +function sendCustomReq() { + var xhr = new XMLHttpRequest(); + var url = 'hello://localhost/customrequest?name1=value1'; + xhr.open('GET', url, true); + xhr.onreadystatechange = function() { + if(xhr.readyState == 4 && xhr.status == 200) { + alert(xhr.responseText); + } + } + xhr.send(); } diff --git a/demos/Delphi_VCL/ConsoleBrowser/uWebBrowser.dfm b/demos/Delphi_VCL/ConsoleBrowser/uWebBrowser.dfm index 70ccaf38..880bb177 100644 --- a/demos/Delphi_VCL/ConsoleBrowser/uWebBrowser.dfm +++ b/demos/Delphi_VCL/ConsoleBrowser/uWebBrowser.dfm @@ -42,6 +42,7 @@ object WebBrowserFrm: TWebBrowserFrm end object chrmosr: TChromium OnTooltip = chrmosrTooltip + OnCursorChange = chrmosrCursorChange OnBeforePopup = chrmosrBeforePopup OnAfterCreated = chrmosrAfterCreated OnBeforeClose = chrmosrBeforeClose @@ -51,7 +52,6 @@ object WebBrowserFrm: TWebBrowserFrm OnPopupShow = chrmosrPopupShow OnPopupSize = chrmosrPopupSize OnPaint = chrmosrPaint - OnCursorChange = chrmosrCursorChange Left = 24 Top = 56 end diff --git a/demos/Delphi_VCL/ConsoleBrowser2/00-DeleteDCUs.bat b/demos/Delphi_VCL/ConsoleBrowser2/00-DeleteDCUs.bat new file mode 100644 index 00000000..a9a84095 --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/00-DeleteDCUs.bat @@ -0,0 +1,18 @@ +del /s /q *.dcu +del /s /q *.exe +del /s /q *.res +del /s /q *.rsm +del /s /q *.log +del /s /q *.dsk +del /s /q *.identcache +del /s /q *.stat +del /s /q *.local +del /s /q *.~* +rmdir Win32\Debug +rmdir Win32\Release +rmdir Win32 +rmdir Win64\Debug +rmdir Win64\Release +rmdir Win64 +rmdir __history +rmdir __recovery diff --git a/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dpr b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dpr new file mode 100644 index 00000000..f46725b2 --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dpr @@ -0,0 +1,114 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program ConsoleBrowser2; + +{$I cef.inc} + +{$APPTYPE CONSOLE} + +{$R *.res} + +uses + {$IFDEF DELPHI16_UP} + System.SysUtils, + {$ELSE} + SysUtils, + {$ENDIF} + uCEFApplication, + uEncapsulatedBrowser in 'uEncapsulatedBrowser.pas', + uCEFBrowserThread in 'uCEFBrowserThread.pas'; + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +// This demo navigates to a webpage, captures the browser screen and saves it as a bitmap file called "snapshot.bmp" + +// ConsoleBrowser2 is a console application without a user interface. For this reason the browser is in +// "off-screen mode" (OSR mode), it's encamsulated in a custom thread and it uses a different EXE for the +// CEF subprocesses (ConsoleBrowser2_sp.exe). + +// While the custom browser thread is loading the webpage and capturing the screen, the console application is +// waiting for an Event. + +// ConsoleBrowser2 reads the "/url" parameter and uses that URL to navigate and capture the screen. +// For example : ConsoleBrowser2.exe /url=https://www.briskbard.com +// If you need to debug this demo in Delphi using http://www.example.com click on the "Run->Parameters" menu option, +// select the right target (Windows 32 bits / Windows 64 bits) and type "/url=http://www.example.com" (without quotes) +// in the "Parameters" box. + +// By default the browser uses a virtual screen size of 1024x728 with 96 DPI (screen scale = 1) +// If you need a different resolution or scale just edit those values in TEncapsulatedBrowser.Create +// or add new command line switches with the new information. + +// The browser captures the screen when the main frame is loaded but some web pages need some extra time to finish. +// This demo uses a 500 ms delay to avoid this problem and you can modify this value in TEncapsulatedBrowser.Create + +// CEF is configured in this demo to use "in memory" cache. As a result of this, the browser will always download +// all the web page resources. Remember that if you switch to a local directory for the cache you will have problems +// when you run several instances of this demo at the same time because Chromium doesn't allow sharing the same cache +// by different processes. + +// This demo is configured to load the CEF binaries in the same directory were ConsoleBrowser2.exe is located but you +// can set a different directory for the binaries by setting the GlobalCEFApp.FrameworkDirPath, +// GlobalCEFApp.ResourcesDirPath and GlobalCEFApp.LocalesDirPath properties inside CreateGlobalCEFApp. +// See the SimpleBrowser2 demo for more details. + +// CEF is configured to use ConsoleBrowser2_sp.exe for the subprocesses and it tries to find it in the same directory as +// ConsoleBrowser2.exe but it's possible to use a different location for that EXE if you set a custom path in +// GlobalCEFApp.BrowserSubprocessPath. + +// Most of the GlobalCEFApp properties must be the same in the main EXE and the EXE for the subprocesses. If you modify +// them in CreateGlobalCEFApp then you'll also have to copy those property values in ConsoleBrowser2_sp.dpr +// See the "SubProcess" demo for more details. + +begin + try + try + CreateGlobalCEFApp; + if WaitForMainAppEvent then + WriteResult; + except + on E: Exception do + Writeln(E.ClassName, ': ', E.Message); + end; + finally + DestroyGlobalCEFApp; + end; +end. diff --git a/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dproj b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dproj new file mode 100644 index 00000000..c689a95c --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2.dproj @@ -0,0 +1,920 @@ + + + {AA8E526F-FBD1-4D31-B463-A4CE79C00B18} + 19.1 + VCL + ConsoleBrowser2.dpr + True + Debug + Win32 + 3 + Console + + + true + + + true + Base + true + + + true + Base + true + + + true + Base + true + + + true + Cfg_1 + true + true + + + true + Base + true + + + .\$(Platform)\$(Config) + ..\..\..\bin + false + false + false + false + false + System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace) + ConsoleBrowser2 + 3082 + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + + + DBXSqliteDriver;RESTComponents;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;bindcompvclsmp;emsclientfiredac;tethering;svnui;DataSnapFireDAC;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;VisualStyles_runtime;vcltouch;vcldb;bindcompfmx;svn;DBXOracleDriver;inetdb;fmx;FireDACIBDriver;fmxdae;vcledge;FireDACDBXDriver;dbexpress;vclx;dsnap;emsclient;DataSnapCommon;FireDACCommon;IndySystem260;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;vclie;CEF4Delphi_FMX;bindengine;DBXMySQLDriver;CloudService;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;FireDACCommonDriver;DataSnapClient;inet;IndyProtocols260;bindcompdbx;vcl;DBXSybaseASEDriver;IndyCore260;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;Componentes_UI;FireDAC;FireDACSqliteDriver;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;SVGPackage;soaprtl;DbxCommonDriver;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;emsserverresource;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;fmxase;$(DCC_UsePackage) + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) + Debug + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + 1033 + true + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png + + + DBXSqliteDriver;RESTComponents;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;bindcompvclsmp;emsclientfiredac;tethering;DataSnapFireDAC;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;VisualStyles_runtime;vcltouch;vcldb;bindcompfmx;DBXOracleDriver;inetdb;fmx;FireDACIBDriver;fmxdae;vcledge;FireDACDBXDriver;dbexpress;vclx;dsnap;emsclient;DataSnapCommon;FireDACCommon;IndySystem260;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;vclie;CEF4Delphi_FMX;bindengine;DBXMySQLDriver;CloudService;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;FireDACCommonDriver;DataSnapClient;inet;IndyProtocols260;bindcompdbx;vcl;DBXSybaseASEDriver;IndyCore260;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;Componentes_UI;FireDAC;FireDACSqliteDriver;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;SVGPackage;soaprtl;DbxCommonDriver;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;emsserverresource;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;fmxase;$(DCC_UsePackage) + true + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) + Debug + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + 1033 + + + DEBUG;$(DCC_Define) + true + false + true + true + true + + + false + 1033 + (None) + + + false + RELEASE;$(DCC_Define) + 0 + 0 + + + + MainSource + + + + + Cfg_2 + Base + + + Base + + + Cfg_1 + Base + + + + Delphi.Personality.12 + Application + + + + ConsoleBrowser2.dpr + + + FireDAC Data Explorer Integration + IP Abstraction Indy Implementation Design Time + Microsoft Office 2000 Sample Automation Server Wrapper Components + Microsoft Office XP Sample Automation Server Wrapper Components + + + + + + true + + + + + true + + + + + true + + + + + ConsoleBrowser2.exe + true + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + classes + 1 + + + classes + 1 + + + + + res\xml + 1 + + + res\xml + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\armeabi + 1 + + + library\lib\armeabi + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\mips + 1 + + + library\lib\mips + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\values-v21 + 1 + + + res\values-v21 + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-ldpi + 1 + + + res\drawable-ldpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-xxxhdpi + 1 + + + res\drawable-xxxhdpi + 1 + + + + + res\drawable-small + 1 + + + res\drawable-small + 1 + + + + + res\drawable-normal + 1 + + + res\drawable-normal + 1 + + + + + res\drawable-large + 1 + + + res\drawable-large + 1 + + + + + res\drawable-xlarge + 1 + + + res\drawable-xlarge + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + Contents\MacOS + 1 + .framework + + + Contents\MacOS + 1 + .framework + + + 0 + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .dll;.bpl + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .bpl + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + Contents\Resources\StartUp\ + 0 + + + Contents\Resources\StartUp\ + 0 + + + 0 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen + 64 + + + ..\$(PROJECTNAME).launchscreen + 64 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + Contents + 1 + + + Contents + 1 + + + + + Contents\Resources + 1 + + + Contents\Resources + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + 1 + + + 1 + + + 1 + + + 1 + + + Contents\MacOS + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + library\lib\armeabi-v7a + 1 + + + + + 1 + + + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + + + + + + + + + + + True + True + + + 12 + + + + + diff --git a/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2Grp.groupproj b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2Grp.groupproj new file mode 100644 index 00000000..c9067f1c --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2Grp.groupproj @@ -0,0 +1,48 @@ + + + {B3B59DC2-AFE8-41F8-81CF-6F7882A9E196} + + + + + + + + + + + Default.Personality.12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dpr b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dpr new file mode 100644 index 00000000..1548c47f --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dpr @@ -0,0 +1,59 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program ConsoleBrowser2_sp; + +{$I cef.inc} + +uses + uCEFApplicationCore; + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + GlobalCEFApp := TCefApplicationCore.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; + GlobalCEFApp.ShowMessageDlg := False; + GlobalCEFApp.BlinkSettings := 'hideScrollbars'; + GlobalCEFApp.StartSubProcess; + DestroyGlobalCEFApp; +end. + diff --git a/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dproj b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dproj new file mode 100644 index 00000000..a1e2d2f3 --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/ConsoleBrowser2_sp.dproj @@ -0,0 +1,1249 @@ + + + {6ABCF641-08D0-4F35-9D13-2FBD18E5152A} + 19.1 + VCL + ConsoleBrowser2_sp.dpr + True + Debug + Win32 + 3 + Application + + + true + + + true + Base + true + + + true + Base + true + + + true + Base + true + + + true + Cfg_1 + true + true + + + true + Cfg_1 + true + true + + + true + Base + true + + + true + Cfg_2 + true + true + + + 3082 + System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace) + CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= + $(BDS)\bin\delphi_PROJECTICON.ico + ConsoleBrowser2_sp + .\$(Platform)\$(Config) + false + false + false + false + false + ..\..\..\bin + + + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) + true + 1033 + CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) + $(BDS)\bin\default_app.manifest + DBXSqliteDriver;RESTComponents;DataSnapServerMidas;DBXDb2Driver;DBXInterBaseDriver;vclactnband;frxe23;vclFireDAC;emsclientfiredac;DataSnapFireDAC;svnui;tethering;Componentes;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;vcltouch;vcldb;bindcompfmx;svn;Intraweb;DBXOracleDriver;inetdb;Componentes_Int;CEF4Delphi;FmxTeeUI;FireDACIBDriver;fmx;fmxdae;vclib;FireDACDBXDriver;dbexpress;IndyProtocols230;vclx;dsnap;DataSnapCommon;emsclient;FireDACCommon;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;frxTee23;vclie;bindengine;DBXMySQLDriver;FireDACOracleDriver;CloudService;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonDriver;DataSnapClient;inet;bindcompdbx;vcl;DBXSybaseASEDriver;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;Componentes_UI;TeeDB;FireDAC;FireDACSqliteDriver;FireDACPgDriver;ibmonitor;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;FMXTee;soaprtl;DbxCommonDriver;Componentes_Misc;ibxpress;Tee;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;ibxbindings;rtl;FireDACDSDriver;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;Componentes_RTF;DBXInformixDriver;bindcompvcl;frxDB23;Componentes_vCard;TeeUI;IndyCore230;vclribbon;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;IndySystem230;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;frx23;fmxase;$(DCC_UsePackage) + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png + + + DBXSqliteDriver;RESTComponents;DataSnapServerMidas;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;emsclientfiredac;DataSnapFireDAC;tethering;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;vcltouch;vcldb;bindcompfmx;Intraweb;DBXOracleDriver;inetdb;FmxTeeUI;FireDACIBDriver;fmx;fmxdae;vclib;FireDACDBXDriver;dbexpress;IndyProtocols230;vclx;dsnap;DataSnapCommon;emsclient;FireDACCommon;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;vclie;bindengine;DBXMySQLDriver;FireDACOracleDriver;CloudService;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonDriver;DataSnapClient;inet;bindcompdbx;vcl;DBXSybaseASEDriver;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;TeeDB;FireDAC;FireDACSqliteDriver;FireDACPgDriver;ibmonitor;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;FMXTee;soaprtl;DbxCommonDriver;ibxpress;Tee;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;ibxbindings;rtl;FireDACDSDriver;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;bindcompvcl;TeeUI;IndyCore230;vclribbon;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;IndySystem230;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;fmxase;$(DCC_UsePackage) + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) + Debug + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + 1033 + (None) + + + DEBUG;$(DCC_Define) + true + false + true + true + true + + + true + 1033 + true + false + PerMonitor + CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) + Debug + + + 1033 + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + + + false + RELEASE;$(DCC_Define) + 0 + 0 + + + true + Debug + true + 1033 + CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName) + PerMonitor + + + + MainSource + + + Cfg_2 + Base + + + Base + + + Cfg_1 + Base + + + + Delphi.Personality.12 + Application + + + + ConsoleBrowser2_sp.dpr + + + IP Abstraction Indy Implementation Design Time + DBExpress Enterprise Data Explorer Integration + Microsoft Office 2000 Sample Automation Server Wrapper Components + Microsoft Office XP Sample Automation Server Wrapper Components + + + + + + + ConsoleBrowser2_sp.exe + true + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + classes + 1 + + + classes + 1 + + + + + res\xml + 1 + + + res\xml + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\armeabi + 1 + + + library\lib\armeabi + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\mips + 1 + + + library\lib\mips + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\values-v21 + 1 + + + res\values-v21 + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-ldpi + 1 + + + res\drawable-ldpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-xxxhdpi + 1 + + + res\drawable-xxxhdpi + 1 + + + + + res\drawable-small + 1 + + + res\drawable-small + 1 + + + + + res\drawable-normal + 1 + + + res\drawable-normal + 1 + + + + + res\drawable-large + 1 + + + res\drawable-large + 1 + + + + + res\drawable-xlarge + 1 + + + res\drawable-xlarge + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + Contents\MacOS + 1 + .framework + + + Contents\MacOS + 1 + .framework + + + 0 + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .dll;.bpl + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .bpl + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + Contents\Resources\StartUp\ + 0 + + + Contents\Resources\StartUp\ + 0 + + + 0 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + 1 + + + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen + 64 + + + ..\$(PROJECTNAME).launchscreen + 64 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + Contents + 1 + + + Contents + 1 + + + + + Contents\Resources + 1 + + + Contents\Resources + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + 1 + + + 1 + + + 1 + + + 1 + + + Contents\MacOS + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + library\lib\armeabi-v7a + 1 + + + + + 1 + + + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + + + + + + + + + + + True + True + + + 12 + + + + + diff --git a/demos/Lazarus/CookieVisitor/cef.inc b/demos/Delphi_VCL/ConsoleBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/CookieVisitor/cef.inc rename to demos/Delphi_VCL/ConsoleBrowser2/cef.inc diff --git a/demos/Delphi_VCL/ConsoleBrowser2/uCEFBrowserThread.pas b/demos/Delphi_VCL/ConsoleBrowser2/uCEFBrowserThread.pas new file mode 100644 index 00000000..2880aa2c --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/uCEFBrowserThread.pas @@ -0,0 +1,692 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uCEFBrowserThread; + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, System.SyncObjs, System.Math, + {$ELSE} + Windows, Messages, SysUtils, Classes, Graphics, SyncObjs, Math, + {$ENDIF} + uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, uCEFChromiumCore, uCEFMiscFunctions; + +type + TVirtualBufferPanel = class(TBufferPanel) + protected + FCustomScale : single; + + function GetScreenScale : single; override; + + public + property CustomScale : single read FCustomScale write FCustomScale; + end; + + TCEFBrowserThread = class(TThread) + protected + FBrowser : TChromium; + FPanel : TVirtualBufferPanel; + FPanelSize : TSize; + FScreenScale : single; + FPopUpBitmap : TBitmap; + FPopUpRect : TRect; + FResizeCS : TCriticalSection; + FBrowserInfoCS : TCriticalSection; + FShowPopUp : boolean; + FClosing : boolean; + FResizing : boolean; + FPendingResize : boolean; + FInitialized : boolean; + FDefaultURL : ustring; + FSnapshot : TBitmap; + FDelayMs : integer; + FOnSnapshotAvailable : TNotifyEvent; + FOnError : TNotifyEvent; + FErrorCode : integer; + FErrorText : ustring; + FFailedUrl : ustring; + FPendingUrl : ustring; + + function GetErrorCode : integer; + function GetErrorText : ustring; + function GetFailedUrl : ustring; + function GetInitialized : boolean; + + procedure Panel_OnResize(Sender: TObject); + + procedure Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; width, height: Integer); + procedure Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); + procedure Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); + procedure Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); + procedure Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); + procedure Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); + procedure Browser_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); + procedure Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); + procedure Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); + + procedure Resize; + function CreateBrowser : boolean; + procedure TakeSnapshot; + procedure CloseBrowser; + procedure DoOnError; + procedure InitError; + procedure WebpagePostProcessing; + procedure LoadPendingURL; + procedure Execute; override; + + public + constructor Create(const aDefaultURL : ustring; aWidth, aHeight : integer; aDelayMs : integer = 500; const aScreenScale : single = 1); + destructor Destroy; override; + procedure AfterConstruction; override; + function TerminateBrowserThread : boolean; + function CopySnapshot(var aSnapshot : TBitmap) : boolean; + function SaveSnapshotToFile(const aPath : ustring) : boolean; + procedure LoadUrl(const aURL : ustring); + + property ErrorCode : integer read GetErrorCode; + property ErrorText : ustring read GetErrorText; + property FailedUrl : ustring read GetFailedUrl; + property Initialized : boolean read GetInitialized; + + property OnSnapshotAvailable : TNotifyEvent read FOnSnapshotAvailable write FOnSnapshotAvailable; + property OnError : TNotifyEvent read FOnError write FOnError; + end; + +implementation + +const + CEF_WEBPAGE_LOADED_MSG = WM_APP + 1; + CEF_WEBPAGE_ERROR_MSG = WM_APP + 2; + CEF_CLOSE_BROWSER_MSG = WM_APP + 3; + CEF_LOAD_PENDING_URL_MSG = WM_APP + 4; + +// ************************************* +// ******** TVirtualBufferPanel ******** +// ************************************* + +function TVirtualBufferPanel.GetScreenScale : single; +begin + Result := FCustomScale; +end; + + +// ************************************* +// ********* TCEFBrowserThread ********* +// ************************************* + +constructor TCEFBrowserThread.Create(const aDefaultURL : ustring; aWidth, aHeight, aDelayMs : integer; const aScreenScale : single); +begin + inherited Create(True); + + FreeOnTerminate := False; + FInitialized := False; + FBrowser := nil; + FPanel := nil; + FPanelSize.cx := aWidth; + FPanelSize.cy := aHeight; + FScreenScale := aScreenScale; + FDefaultURL := aDefaultURL; + FPopUpBitmap := nil; + FPopUpRect := rect(0, 0, 0, 0); + FShowPopUp := False; + FResizing := False; + FPendingResize := False; + FResizeCS := nil; + FBrowserInfoCS := nil; + FSnapshot := nil; + FDelayMs := aDelayMs; + FOnSnapshotAvailable := nil; + FOnError := nil; + FClosing := False; +end; + +destructor TCEFBrowserThread.Destroy; +begin + if (FBrowser <> nil) then + FreeAndNil(FBrowser); + + if (FPanel <> nil) then + FreeAndNil(FPanel); + + if (FPopUpBitmap <> nil) then + FreeAndNil(FPopUpBitmap); + + if (FSnapshot <> nil) then + FreeAndNil(FSnapshot); + + if (FResizeCS <> nil) then + FreeAndNil(FResizeCS); + + if (FBrowserInfoCS <> nil) then + FreeAndNil(FBrowserInfoCS); + + inherited Destroy; +end; + +procedure TCEFBrowserThread.AfterConstruction; +begin + inherited AfterConstruction; + + FResizeCS := TCriticalSection.Create; + FBrowserInfoCS := TCriticalSection.Create; + + FPanel := TVirtualBufferPanel.Create(nil); + FPanel.CustomScale := FScreenScale; + FPanel.Width := FPanelSize.cx; + FPanel.Height := FPanelSize.cy; + FPanel.OnResize := Panel_OnResize; + + FBrowser := TChromium.Create(nil); + FBrowser.DefaultURL := FDefaultURL; + FBrowser.Options.BackgroundColor := CefColorSetARGB($FF, $FF, $FF, $FF); + FBrowser.OnAfterCreated := Browser_OnAfterCreated; + FBrowser.OnPaint := Browser_OnPaint; + FBrowser.OnGetViewRect := Browser_OnGetViewRect; + FBrowser.OnGetScreenPoint := Browser_OnGetScreenPoint; + FBrowser.OnGetScreenInfo := Browser_OnGetScreenInfo; + FBrowser.OnPopupShow := Browser_OnPopupShow; + FBrowser.OnPopupSize := Browser_OnPopupSize; + FBrowser.OnBeforePopup := Browser_OnBeforePopup; + FBrowser.OnBeforeClose := Browser_OnBeforeClose; + FBrowser.OnLoadError := Browser_OnLoadError; + FBrowser.OnLoadingStateChange := Browser_OnLoadingStateChange; +end; + +function TCEFBrowserThread.GetErrorCode : integer; +begin + FBrowserInfoCS.Acquire; + Result := FErrorCode; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetErrorText : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FErrorText; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetFailedUrl : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FFailedUrl; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetInitialized : boolean; +begin + Result := False; + + if assigned(FBrowserInfoCS) and assigned(FBrowser) then + try + FBrowserInfoCS.Acquire; + Result := FInitialized and FBrowser.Initialized; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.CopySnapshot(var aSnapshot : TBitmap) : boolean; +begin + Result := False; + + if FClosing or Terminated or (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + if (aSnapshot = nil) then + begin + aSnapshot := TBitmap.Create; + aSnapshot.PixelFormat := pf32bit; + aSnapshot.HandleType := bmDIB; + aSnapshot.Width := FSnapshot.Width; + aSnapshot.Height := FSnapshot.Height; + end; + + aSnapshot.Assign(FSnapshot); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.CopySnapshot', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.SaveSnapshotToFile(const aPath : ustring) : boolean; +begin + Result := False; + + if (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + FSnapshot.SaveToFile(aPath); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.SaveSnapshotToFile', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.LoadUrl(const aURL : ustring); +begin + if FClosing or Terminated or (FBrowserInfoCS = nil) then + exit; + + if Initialized then + try + FBrowserInfoCS.Acquire; + FPendingUrl := aURL; + PostThreadMessage(ThreadID, CEF_LOAD_PENDING_URL_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.TerminateBrowserThread : boolean; +begin + Result := Initialized and + PostThreadMessage(ThreadID, CEF_CLOSE_BROWSER_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Panel_OnResize(Sender: TObject); +begin + Resize; +end; + +procedure TCEFBrowserThread.Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); +begin + FBrowserInfoCS.Acquire; + FInitialized := True; + FBrowserInfoCS.Release; +end; + +procedure TCEFBrowserThread.Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; width, height: Integer); +var + src, dst: PByte; + i, j, TempLineSize, TempSrcOffset, TempDstOffset, SrcStride, DstStride : Integer; + n : NativeUInt; + TempWidth, TempHeight, TempScanlineSize : integer; + TempBufferBits : Pointer; + TempForcedResize : boolean; + TempSrcRect : TRect; +begin + try + FResizeCS.Acquire; + TempForcedResize := False; + + if FPanel.BeginBufferDraw then + begin + if (kind = PET_POPUP) then + begin + if (FPopUpBitmap = nil) or + (width <> FPopUpBitmap.Width) or + (height <> FPopUpBitmap.Height) then + begin + if (FPopUpBitmap <> nil) then FPopUpBitmap.Free; + + FPopUpBitmap := TBitmap.Create; + FPopUpBitmap.PixelFormat := pf32bit; + FPopUpBitmap.HandleType := bmDIB; + FPopUpBitmap.Width := width; + FPopUpBitmap.Height := height; + end; + + TempWidth := FPopUpBitmap.Width; + TempHeight := FPopUpBitmap.Height; + TempScanlineSize := FPopUpBitmap.Width * SizeOf(TRGBQuad); + TempBufferBits := FPopUpBitmap.Scanline[pred(FPopUpBitmap.Height)]; + end + else + begin + TempForcedResize := FPanel.UpdateBufferDimensions(Width, Height) or not(FPanel.BufferIsResized(False)); + TempWidth := FPanel.BufferWidth; + TempHeight := FPanel.BufferHeight; + TempScanlineSize := FPanel.ScanlineSize; + TempBufferBits := FPanel.BufferBits; + end; + + if (TempBufferBits <> nil) then + begin + SrcStride := Width * SizeOf(TRGBQuad); + DstStride := - TempScanlineSize; + + n := 0; + + while (n < dirtyRectsCount) do + begin + if (dirtyRects[n].x >= 0) and (dirtyRects[n].y >= 0) then + begin + TempLineSize := min(dirtyRects[n].width, TempWidth - dirtyRects[n].x) * SizeOf(TRGBQuad); + + if (TempLineSize > 0) then + begin + TempSrcOffset := ((dirtyRects[n].y * Width) + dirtyRects[n].x) * SizeOf(TRGBQuad); + TempDstOffset := ((TempScanlineSize * pred(TempHeight)) - (dirtyRects[n].y * TempScanlineSize)) + + (dirtyRects[n].x * SizeOf(TRGBQuad)); + + src := @PByte(buffer)[TempSrcOffset]; + dst := @PByte(TempBufferBits)[TempDstOffset]; + + i := 0; + j := min(dirtyRects[n].height, TempHeight - dirtyRects[n].y); + + while (i < j) do + begin + Move(src^, dst^, TempLineSize); + + Inc(dst, DstStride); + Inc(src, SrcStride); + inc(i); + end; + end; + end; + + inc(n); + end; + + if FShowPopup and (FPopUpBitmap <> nil) then + begin + TempSrcRect := Rect(0, 0, + min(FPopUpRect.Right - FPopUpRect.Left, FPopUpBitmap.Width), + min(FPopUpRect.Bottom - FPopUpRect.Top, FPopUpBitmap.Height)); + + FPanel.BufferDraw(FPopUpBitmap, TempSrcRect, FPopUpRect); + end; + end; + + FPanel.EndBufferDraw; + + if (kind = PET_VIEW) then + begin + if TempForcedResize or FPendingResize then + PostThreadMessage(ThreadID, CEF_PENDINGRESIZE, 0, 0); + + FResizing := False; + FPendingResize := False; + end; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); +begin + rect.x := 0; + rect.y := 0; + rect.width := DeviceToLogical(FPanel.Width, FScreenScale); + rect.height := DeviceToLogical(FPanel.Height, FScreenScale); +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); +begin + screenX := LogicalToDevice(viewX, FScreenScale); + screenY := LogicalToDevice(viewY, FScreenScale); + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); +var + TempRect : TCEFRect; +begin + TempRect.x := 0; + TempRect.y := 0; + TempRect.width := DeviceToLogical(FPanel.Width, FScreenScale); + TempRect.height := DeviceToLogical(FPanel.Height, FScreenScale); + + screenInfo.device_scale_factor := FScreenScale; + screenInfo.depth := 0; + screenInfo.depth_per_component := 0; + screenInfo.is_monochrome := Ord(False); + screenInfo.rect := TempRect; + screenInfo.available_rect := TempRect; + + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); +begin + if show then + FShowPopUp := True + else + begin + FShowPopUp := False; + FPopUpRect := rect(0, 0, 0, 0); + + if (FBrowser <> nil) then FBrowser.Invalidate(PET_VIEW); + end; +end; + +procedure TCEFBrowserThread.Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); +begin + LogicalToDevice(rect^, FScreenScale); + + FPopUpRect.Left := rect.x; + FPopUpRect.Top := rect.y; + FPopUpRect.Right := rect.x + rect.width - 1; + FPopUpRect.Bottom := rect.y + rect.height - 1; +end; + +procedure TCEFBrowserThread.Browser_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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TCEFBrowserThread.Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + PostThreadMessage(ThreadID, WM_QUIT, 0, 0); +end; + +procedure TCEFBrowserThread.Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); +begin + if not(FClosing) and not(Terminated) and (frame <> nil) and frame.IsValid and frame.IsMain then + try + FBrowserInfoCS.Acquire; + + FErrorCode := errorCode; + FErrorText := errorText; + FFailedUrl := failedUrl; + + PostThreadMessage(ThreadID, CEF_WEBPAGE_ERROR_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); +begin + if not(FClosing) and not(Terminated) and not(isLoading) then + PostThreadMessage(ThreadID, CEF_WEBPAGE_LOADED_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Resize; +begin + if FClosing or Terminated or (FPanel = nil) or (FResizeCS = nil) or (FBrowser = nil) then + exit; + + try + FResizeCS.Acquire; + + if FResizing then + FPendingResize := True + else + if FPanel.BufferIsResized then + FBrowser.Invalidate(PET_VIEW) + else + begin + FResizing := True; + FBrowser.WasResized; + end; + finally + FResizeCS.Release; + end; +end; + +function TCEFBrowserThread.CreateBrowser : boolean; +begin + Result := (FBrowser <> nil) and FBrowser.CreateBrowser; +end; + +procedure TCEFBrowserThread.LoadPendingURL; +begin + if FClosing or Terminated or (FBrowser = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (length(FPendingURL) > 0) then + begin + FBrowser.LoadURL(FPendingURL); + FPendingURL := ''; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.WebpagePostProcessing; +begin + if FClosing or Terminated then + exit; + + if (FDelayMs > 0) then + sleep(FDelayMs); + + TakeSnapshot; + + if assigned(FOnSnapshotAvailable) then FOnSnapshotAvailable(self); +end; + +procedure TCEFBrowserThread.TakeSnapshot; +begin + if (FPanel = nil) or (FPanel.Buffer = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (FSnapshot = nil) then + begin + FSnapshot := TBitmap.Create; + FSnapshot.PixelFormat := pf32bit; + FSnapshot.HandleType := bmDIB; + FSnapshot.Width := FPanel.BufferWidth; + FSnapshot.Height := FPanel.BufferHeight; + end; + + FSnapshot.Assign(FPanel.Buffer); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.CloseBrowser; +begin + if not(FClosing) and assigned(FBrowser) then + begin + FClosing := True; + FBrowser.CloseBrowser(True); + end; +end; + +procedure TCEFBrowserThread.DoOnError; +begin + if assigned(FOnError) then + FOnError(self); +end; + +procedure TCEFBrowserThread.InitError; +begin + FBrowserInfoCS.Acquire; + FErrorText := 'There was an error initializing the CEF browser.'; + FBrowserInfoCS.Release; + DoOnError; +end; + +procedure TCEFBrowserThread.Execute; +var + TempCont : boolean; + TempMsg : TMsg; +begin + if CreateBrowser then + begin + TempCont := True; + PeekMessage(TempMsg, 0, WM_USER, WM_USER, PM_NOREMOVE); + + while TempCont and GetMessage(TempMsg, 0, 0, 0) and not(Terminated) do + begin + case TempMsg.Message of + CEF_PENDINGRESIZE : Resize; + CEF_CLOSE_BROWSER_MSG : CloseBrowser; + CEF_LOAD_PENDING_URL_MSG : LoadPendingURL; + CEF_WEBPAGE_LOADED_MSG : WebpagePostProcessing; + CEF_WEBPAGE_ERROR_MSG : DoOnError; + WM_QUIT : TempCont := False; + end; + + DispatchMessage(TempMsg); + end; + end + else + InitError; +end; + +end. diff --git a/demos/Delphi_VCL/ConsoleBrowser2/uEncapsulatedBrowser.pas b/demos/Delphi_VCL/ConsoleBrowser2/uEncapsulatedBrowser.pas new file mode 100644 index 00000000..0e05a94c --- /dev/null +++ b/demos/Delphi_VCL/ConsoleBrowser2/uEncapsulatedBrowser.pas @@ -0,0 +1,229 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uEncapsulatedBrowser; + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + System.SyncObjs, System.SysUtils, + {$ELSE} + SyncObjs, SysUtils, + {$ENDIF} + uCEFTypes, uCEFBrowserThread; + +type + TEncapsulatedBrowser = class + protected + FThread : TCEFBrowserThread; + FWidth : integer; + FHeight : integer; + FDelayMs : integer; + FScale : single; + FSnapshotPath : ustring; + FErrorText : ustring; + + procedure Thread_OnError(Sender: TObject); + procedure Thread_OnSnapshotAvailable(Sender: TObject); + + public + constructor Create; + destructor Destroy; override; + procedure LoadURL(const aURL : string); + + property Width : integer read FWidth write FWidth; + property Height : integer read FHeight write FHeight; + property DelayMs : integer read FDelayMs write FDelayMs; + property Scale : single read FScale write FScale; + property SnapshotPath : ustring read FSnapshotPath write FSnapshotPath; + property ErrorText : ustring read FErrorText; + end; + +procedure CreateGlobalCEFApp; +function WaitForMainAppEvent : boolean; +procedure WriteResult; + +implementation + +uses + uCEFApplication; + +var + MainAppEvent : TEvent; + EncapsulatedBrowser : TEncapsulatedBrowser = nil; + +procedure GlobalCEFApp_OnContextInitialized; +var + TempParam, TempURL : ustring; +begin + TempURL := ''; + + // This demo reads the "/url" parameter to load it as the default URL in the browser. + // For example : ConsoleBrowser2.exe /url=https://www.briskbard.com + if (ParamCount > 0) then + begin + TempParam := paramstr(1); + + if (Copy(TempParam, 1, 5) = '/url=') then + begin + TempURL := trim(Copy(TempParam, 6, length(TempParam))); + if (length(TempURL) > 0) then WriteLn('Loading ' + TempURL); + end; + end; + + if (length(TempURL) = 0) then + begin + TempURL := 'https://www.google.com'; + WriteLn('No URL has been specified. Using the default...'); + end; + + EncapsulatedBrowser := TEncapsulatedBrowser.Create; + EncapsulatedBrowser.LoadURL(TempURL); +end; + +function WaitForMainAppEvent : boolean; +begin + Result := True; + + // Wait for 1 minute max. + if (MainAppEvent.WaitFor(60000) = wrTimeout) then + begin + WriteLn('Timeout expired!'); + Result := False; + end; +end; + +procedure WriteResult; +begin + if (EncapsulatedBrowser = nil) then + WriteLn('There was a problem in the browser initialization') + else + if (length(EncapsulatedBrowser.ErrorText) > 0) then + WriteLn(EncapsulatedBrowser.ErrorText) + else + WriteLn('Snapshot saved successfully as ' + EncapsulatedBrowser.SnapshotPath); +end; + +procedure CreateGlobalCEFApp; +begin + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; + GlobalCEFApp.ShowMessageDlg := False; // This demo shouldn't show any window, just console messages. + GlobalCEFApp.BrowserSubprocessPath := 'ConsoleBrowser2_sp.exe'; // This is the other EXE for the CEF subprocesses. It's on the same directory as this app. + GlobalCEFApp.BlinkSettings := 'hideScrollbars'; // This setting removes all scrollbars to capture a cleaner snapshot + GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized; + GlobalCEFApp.StartMainProcess; +end; + +constructor TEncapsulatedBrowser.Create; +begin + inherited Create; + + FThread := nil; + FWidth := 1024; + FHeight := 768; + FDelayMs := 500; + FScale := 1; // This is the relative scale to a 96 DPI screen. It's calculated with the formula : scale = custom_DPI / 96 + FSnapshotPath := 'snapshot.bmp'; + FErrorText := ''; +end; + +destructor TEncapsulatedBrowser.Destroy; +begin + if (FThread <> nil) then + begin + if FThread.TerminateBrowserThread then + FThread.WaitFor; + + FreeAndNil(FThread); + end; + + inherited Destroy; +end; + +procedure TEncapsulatedBrowser.LoadURL(const aURL : string); +begin + if (FThread = nil) then + begin + FThread := TCEFBrowserThread.Create(aURL, FWidth, FHeight, FDelayMs, FScale); + FThread.OnError := Thread_OnError; + FThread.OnSnapshotAvailable := Thread_OnSnapshotAvailable; + FThread.Start; + end + else + FThread.LoadUrl(aURL); +end; + +procedure TEncapsulatedBrowser.Thread_OnError(Sender: TObject); +begin + // This code is executed in the TCEFBrowserThread thread context while the main application thread is waiting for MainAppEvent. + + FErrorText := 'Error'; + + if (FThread.ErrorCode <> 0) then + FErrorText := FErrorText + ' ' + inttostr(FThread.ErrorCode); + + FErrorText := FErrorText + ' : ' + FThread.ErrorText; + + if (length(FThread.FailedUrl) > 0) then + FErrorText := FErrorText + ' - ' + FThread.FailedUrl; + + MainAppEvent.SetEvent; +end; + +procedure TEncapsulatedBrowser.Thread_OnSnapshotAvailable(Sender: TObject); +begin + // This code is executed in the TCEFBrowserThread thread context while the main application thread is waiting for MainAppEvent. + + if not(FThread.SaveSnapshotToFile(FSnapshotPath)) then + FErrorText := 'There was an error copying the snapshot'; + + MainAppEvent.SetEvent; +end; + +initialization + MainAppEvent := TEvent.Create; + +finalization + MainAppEvent.Free; + if (EncapsulatedBrowser <> nil) then FreeAndNil(EncapsulatedBrowser); + +end. diff --git a/demos/Delphi_VCL/KioskOSRBrowser/uKioskOSRBrowser.dfm b/demos/Delphi_VCL/KioskOSRBrowser/uKioskOSRBrowser.dfm index ba65f79e..09c239f4 100644 --- a/demos/Delphi_VCL/KioskOSRBrowser/uKioskOSRBrowser.dfm +++ b/demos/Delphi_VCL/KioskOSRBrowser/uKioskOSRBrowser.dfm @@ -59,6 +59,7 @@ object Form1: TForm1 OnBeforeContextMenu = chrmosrBeforeContextMenu OnContextMenuCommand = chrmosrContextMenuCommand OnTooltip = chrmosrTooltip + OnCursorChange = chrmosrCursorChange OnBeforePopup = chrmosrBeforePopup OnBeforeClose = chrmosrBeforeClose OnGetViewRect = chrmosrGetViewRect @@ -67,7 +68,6 @@ object Form1: TForm1 OnPopupShow = chrmosrPopupShow OnPopupSize = chrmosrPopupSize OnPaint = chrmosrPaint - OnCursorChange = chrmosrCursorChange OnVirtualKeyboardRequested = chrmosrVirtualKeyboardRequested Left = 40 Top = 40 diff --git a/demos/Delphi_VCL/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.dfm b/demos/Delphi_VCL/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.dfm index 139392ba..005bcf42 100644 --- a/demos/Delphi_VCL/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.dfm +++ b/demos/Delphi_VCL/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.dfm @@ -124,6 +124,7 @@ object OSRExternalPumpBrowserFrm: TOSRExternalPumpBrowserFrm end object chrmosr: TChromium OnTooltip = chrmosrTooltip + OnCursorChange = chrmosrCursorChange OnBeforePopup = chrmosrBeforePopup OnAfterCreated = chrmosrAfterCreated OnBeforeClose = chrmosrBeforeClose @@ -133,7 +134,6 @@ object OSRExternalPumpBrowserFrm: TOSRExternalPumpBrowserFrm OnPopupShow = chrmosrPopupShow OnPopupSize = chrmosrPopupSize OnPaint = chrmosrPaint - OnCursorChange = chrmosrCursorChange OnIMECompositionRangeChanged = chrmosrIMECompositionRangeChanged Left = 24 Top = 56 diff --git a/demos/Delphi_VCL/PopupBrowser/uChildForm.dfm b/demos/Delphi_VCL/PopupBrowser/uChildForm.dfm index 4632be05..0b289e2f 100644 --- a/demos/Delphi_VCL/PopupBrowser/uChildForm.dfm +++ b/demos/Delphi_VCL/PopupBrowser/uChildForm.dfm @@ -44,6 +44,7 @@ object ChildForm: TChildForm object Chromium1: TChromium OnTitleChange = Chromium1TitleChange OnTooltip = Chromium1Tooltip + OnCursorChange = Chromium1CursorChange OnBeforeClose = Chromium1BeforeClose OnGetViewRect = Chromium1GetViewRect OnGetScreenPoint = Chromium1GetScreenPoint @@ -51,7 +52,6 @@ object ChildForm: TChildForm OnPopupShow = Chromium1PopupShow OnPopupSize = Chromium1PopupSize OnPaint = Chromium1Paint - OnCursorChange = Chromium1CursorChange Left = 24 Top = 56 end diff --git a/demos/Delphi_VCL/SchemeRegistrationBrowser/uHelloScheme.pas b/demos/Delphi_VCL/SchemeRegistrationBrowser/uHelloScheme.pas index e4488fad..f4fa1ad9 100644 --- a/demos/Delphi_VCL/SchemeRegistrationBrowser/uHelloScheme.pas +++ b/demos/Delphi_VCL/SchemeRegistrationBrowser/uHelloScheme.pas @@ -69,6 +69,9 @@ type implementation +uses + uCEFConstants; + constructor THelloScheme.Create(const browser : ICefBrowser; const frame : ICefFrame; const schemeName : ustring; @@ -115,15 +118,17 @@ end; function THelloScheme.ProcessRequest(const request : ICefRequest; const callback : ICefCallback): Boolean; var - TempFilename, TempExt : string; + TempFilename, TempExt, TempMessageTxt : string; TempParts : TUrlParts; TempFile : TFileStream; + TempResp : TStringStream; begin Result := False; FStatus := 404; FStatusText := 'ERROR'; FMimeType := ''; TempFile := nil; + TempResp := nil; try try @@ -132,54 +137,51 @@ begin TempFilename := ''; FStream.Clear; - if CefParseUrl(Request.URL, TempParts) then + if CefParseUrl(Request.URL, TempParts) and + (length(TempParts.path) > 0) and + (TempParts.path <> '/') then begin - if (length(TempParts.path) > 0) and - (TempParts.path <> '/') then - begin - TempFilename := TempParts.path; + TempFilename := TempParts.path; - if (length(TempFilename) > 0) and (TempFilename[1] = '/') then - TempFilename := copy(TempFilename, 2, length(TempFilename)); + if (length(TempFilename) > 0) and (TempFilename[1] = '/') then + TempFilename := copy(TempFilename, 2, length(TempFilename)); - if (length(TempFilename) > 0) and (TempFilename[length(TempFilename)] = '/') then - TempFilename := copy(TempFilename, 1, length(TempFilename) - 1); - - if (length(TempFilename) > 0) and not(FileExists(TempFilename)) then - TempFilename := ''; - end; - - if (length(TempFilename) = 0) and - (length(TempParts.host) > 0) and - (TempParts.host <> '/') then - begin - TempFilename := TempParts.host; - - if (length(TempFilename) > 0) and (TempFilename[1] = '/') then - TempFilename := copy(TempFilename, 2, length(TempFilename)); - - if (length(TempFilename) > 0) and (TempFilename[length(TempFilename)] = '/') then - TempFilename := copy(TempFilename, 1, length(TempFilename) - 1); - - if (length(TempFilename) > 0) and not(FileExists(TempFilename)) then - TempFilename := ''; - end; + if (length(TempFilename) > 0) and (TempFilename[length(TempFilename)] = '/') then + TempFilename := copy(TempFilename, 1, length(TempFilename) - 1); end; if (length(TempFilename) > 0) then begin - TempExt := ExtractFileExt(TempFilename); + if (CompareText(TempFilename, 'customrequest') = 0) then + begin + Result := True; + FStatus := 200; + FStatusText := 'OK'; - if (length(TempExt) > 0) and (TempExt[1] = '.') then - TempExt := copy(TempExt, 2, length(TempExt)); + // This could be any information that your application needs to send to JS. + TempMessageTxt := 'This is the response from Delphi!' + CRLF + CRLF + + 'Request query : ' + TempParts.query; - Result := True; - FStatus := 200; - FStatusText := 'OK'; - FMimeType := CefGetMimeType(TempExt); - TempFile := TFileStream.Create(TempFilename, fmOpenRead); - TempFile.Seek(0, soFromBeginning); - FStream.LoadFromStream(TStream(TempFile)); + TempResp := TStringStream.Create(TempMessageTxt); + TempResp.Seek(0, soFromBeginning); + FStream.LoadFromStream(TStream(TempResp)); + end + else + if FileExists(TempFilename) then + begin + TempExt := ExtractFileExt(TempFilename); + + if (length(TempExt) > 0) and (TempExt[1] = '.') then + TempExt := copy(TempExt, 2, length(TempExt)); + + FMimeType := CefGetMimeType(TempExt); + Result := True; + FStatus := 200; + FStatusText := 'OK'; + TempFile := TFileStream.Create(TempFilename, fmOpenRead); + TempFile.Seek(0, soFromBeginning); + FStream.LoadFromStream(TStream(TempFile)); + end; end; FStream.Seek(0, soFromBeginning); @@ -191,6 +193,7 @@ begin finally if (callback <> nil) then callback.Cont; if (TempFile <> nil) then FreeAndNil(TempFile); + if (TempResp <> nil) then FreeAndNil(TempResp); end; end; diff --git a/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.dfm b/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.dfm index a9e22003..8deb0f2d 100644 --- a/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.dfm +++ b/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.dfm @@ -51,10 +51,10 @@ object SchemeRegistrationBrowserFrm: TSchemeRegistrationBrowserFrm Align = alClient ItemIndex = 1 TabOrder = 1 - Text = 'hello://test.html' + Text = 'hello://localhost/test.html' Items.Strings = ( 'https://www.google.com' - 'hello://test.html' + 'hello://localhost/test.html' 'file://test.html') end end diff --git a/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas b/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas index c8ed4eb3..7789689f 100644 --- a/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas +++ b/demos/Delphi_VCL/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas @@ -56,6 +56,7 @@ uses const MINIBROWSER_CONTEXTMENU_REGSCHEME = MENU_ID_USER_FIRST + 1; MINIBROWSER_CONTEXTMENU_CLEARFACT = MENU_ID_USER_FIRST + 2; + MINIBROWSER_CONTEXTMENU_SHOWDEVTOOLS = MENU_ID_USER_FIRST + 3; CUSTOM_SCHEME_NAME = 'hello'; @@ -148,6 +149,7 @@ procedure CreateGlobalCEFApp; begin GlobalCEFApp := TCefApplication.Create; GlobalCEFApp.OnRegCustomSchemes := GlobalCEFApp_OnRegCustomSchemes; + GlobalCEFApp.DisableWebSecurity := True; // GlobalCEFApp.LogFile := 'debug.log'; // GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE; @@ -171,6 +173,7 @@ procedure TSchemeRegistrationBrowserFrm.Chromium1BeforeContextMenu( begin model.AddItem(MINIBROWSER_CONTEXTMENU_REGSCHEME, 'Register scheme'); model.AddItem(MINIBROWSER_CONTEXTMENU_CLEARFACT, 'Clear schemes'); + model.AddItem(MINIBROWSER_CONTEXTMENU_SHOWDEVTOOLS, 'Show DevTools'); end; procedure TSchemeRegistrationBrowserFrm.Chromium1BeforePopup( @@ -198,6 +201,7 @@ procedure TSchemeRegistrationBrowserFrm.Chromium1ContextMenuCommand( const params: ICefContextMenuParams; commandId: Integer; eventFlags: Cardinal; out Result: Boolean); var + TempPoint : TPoint; TempFactory: ICefSchemeHandlerFactory; begin Result := False; @@ -222,6 +226,13 @@ begin if not(browser.host.RequestContext.ClearSchemeHandlerFactories) then MessageDlg('ClearSchemeHandlerFactories error !', mtError, [mbOk], 0); end; + + MINIBROWSER_CONTEXTMENU_SHOWDEVTOOLS : + begin + TempPoint.x := params.XCoord; + TempPoint.y := params.YCoord; + Chromium1.ShowDevTools(TempPoint, nil); + end; end; end; @@ -245,6 +256,7 @@ end; procedure TSchemeRegistrationBrowserFrm.FormShow(Sender: TObject); begin + Chromium1.DefaultURL := AddressCbx.Text; // 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(Chromium1.CreateBrowser(CEFWindowParent1, '')) then Timer1.Enabled := True; @@ -266,7 +278,6 @@ procedure TSchemeRegistrationBrowserFrm.BrowserCreatedMsg(var aMessage : TMessag begin CEFWindowParent1.UpdateSize; AddressBarPnl.Enabled := True; - GoBtn.Click; end; procedure TSchemeRegistrationBrowserFrm.BrowserDestroyMsg(var aMessage : TMessage); diff --git a/demos/Delphi_VCL/SimpleOSRBrowser/uSimpleOSRBrowser.pas b/demos/Delphi_VCL/SimpleOSRBrowser/uSimpleOSRBrowser.pas index c4faaabb..c0b0fd19 100644 --- a/demos/Delphi_VCL/SimpleOSRBrowser/uSimpleOSRBrowser.pas +++ b/demos/Delphi_VCL/SimpleOSRBrowser/uSimpleOSRBrowser.pas @@ -45,13 +45,13 @@ uses {$IFDEF DELPHI16_UP} Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, System.SyncObjs, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, - Vcl.ExtCtrls, Vcl.AppEvnts, WinApi.imm, + Vcl.ExtCtrls, Vcl.AppEvnts, WinApi.imm, Vcl.ComCtrls, {$ELSE} Windows, Messages, SysUtils, Variants, Classes, SyncObjs, - Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, AppEvnts, + Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, AppEvnts, ComCtrls, {$ENDIF} uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, - uCEFSentinel, uCEFChromiumCore, Vcl.ComCtrls; + uCEFChromiumCore; const // Set this constant to True and load "file://transparency.html" to test a diff --git a/demos/Delphi_VCL/WebpageSnapshot/00-DeleteDCUs.bat b/demos/Delphi_VCL/WebpageSnapshot/00-DeleteDCUs.bat new file mode 100644 index 00000000..a9a84095 --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/00-DeleteDCUs.bat @@ -0,0 +1,18 @@ +del /s /q *.dcu +del /s /q *.exe +del /s /q *.res +del /s /q *.rsm +del /s /q *.log +del /s /q *.dsk +del /s /q *.identcache +del /s /q *.stat +del /s /q *.local +del /s /q *.~* +rmdir Win32\Debug +rmdir Win32\Release +rmdir Win32 +rmdir Win64\Debug +rmdir Win64\Release +rmdir Win64 +rmdir __history +rmdir __recovery diff --git a/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dpr b/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dpr new file mode 100644 index 00000000..6a87c2cc --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dpr @@ -0,0 +1,71 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program WebpageSnapshot; + +{$I cef.inc} + +uses + {$IFDEF DELPHI16_UP} + Vcl.Forms, + {$ELSE} + Forms, + {$ENDIF} + uCEFApplication, + uCEFBrowserThread in 'uCEFBrowserThread.pas', + uWebpageSnapshot in 'uWebpageSnapshot.pas' {WebpageSnapshotFrm}; + +{$R *.res} + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + CreateGlobalCEFApp; + + if GlobalCEFApp.StartMainProcess then + begin + Application.Initialize; + Application.MainFormOnTaskbar := True; + Application.CreateForm(TWebpageSnapshotFrm, WebpageSnapshotFrm); + Application.Run; + end; + + DestroyGlobalCEFApp; +end. diff --git a/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dproj b/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dproj new file mode 100644 index 00000000..2429b4d3 --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/WebpageSnapshot.dproj @@ -0,0 +1,940 @@ + + + {54265C7D-F5FB-4C27-A683-6F968C4157F1} + 19.1 + VCL + WebpageSnapshot.dpr + True + Debug + Win32 + 3 + Application + + + true + + + true + Base + true + + + true + Base + true + + + true + Base + true + + + true + Cfg_1 + true + true + + + true + Cfg_1 + true + true + + + true + Base + true + + + true + Cfg_2 + true + true + + + true + Cfg_2 + true + true + + + .\$(Platform)\$(Config) + ..\..\..\bin + false + false + false + false + false + System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace) + $(BDS)\bin\delphi_PROJECTICON.ico + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png + $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png + WebpageSnapshot + 3082 + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + + + DBXSqliteDriver;RESTComponents;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;bindcompvclsmp;emsclientfiredac;tethering;svnui;DataSnapFireDAC;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;VisualStyles_runtime;vcltouch;vcldb;bindcompfmx;svn;DBXOracleDriver;inetdb;fmx;FireDACIBDriver;fmxdae;vcledge;FireDACDBXDriver;dbexpress;vclx;dsnap;emsclient;DataSnapCommon;FireDACCommon;IndySystem260;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;vclie;CEF4Delphi_FMX;bindengine;DBXMySQLDriver;CloudService;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;FireDACCommonDriver;DataSnapClient;inet;IndyProtocols260;bindcompdbx;vcl;DBXSybaseASEDriver;IndyCore260;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;Componentes_UI;FireDAC;FireDACSqliteDriver;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;SVGPackage;soaprtl;DbxCommonDriver;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;emsserverresource;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;fmxase;$(DCC_UsePackage) + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) + Debug + true + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + 1033 + $(BDS)\bin\default_app.manifest + + + DBXSqliteDriver;RESTComponents;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;bindcompvclsmp;emsclientfiredac;tethering;DataSnapFireDAC;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;VisualStyles_runtime;vcltouch;vcldb;bindcompfmx;DBXOracleDriver;inetdb;fmx;FireDACIBDriver;fmxdae;vcledge;FireDACDBXDriver;dbexpress;vclx;dsnap;emsclient;DataSnapCommon;FireDACCommon;IndySystem260;RESTBackendComponents;DataSnapConnectors;VCLRESTComponents;soapserver;vclie;CEF4Delphi_FMX;bindengine;DBXMySQLDriver;CloudService;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;FireDACCommonDriver;DataSnapClient;inet;IndyProtocols260;bindcompdbx;vcl;DBXSybaseASEDriver;IndyCore260;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;Componentes_UI;FireDAC;FireDACSqliteDriver;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;SVGPackage;soaprtl;DbxCommonDriver;DataSnapServer;xmlrtl;soapmidas;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;emsserverresource;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;fmxase;$(DCC_UsePackage) + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace) + Debug + true + CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments= + 1033 + $(BDS)\bin\default_app.manifest + + + DEBUG;$(DCC_Define) + true + false + true + true + true + + + false + true + PerMonitorV2 + + + true + PerMonitorV2 + true + 1033 + + + false + RELEASE;$(DCC_Define) + 0 + 0 + + + true + PerMonitorV2 + + + true + PerMonitorV2 + + + + MainSource + + + +
WebpageSnapshotFrm
+
+ + Cfg_2 + Base + + + Base + + + Cfg_1 + Base + +
+ + Delphi.Personality.12 + Application + + + + WebpageSnapshot.dpr + + + FireDAC Data Explorer Integration + IP Abstraction Indy Implementation Design Time + Microsoft Office 2000 Sample Automation Server Wrapper Components + Microsoft Office XP Sample Automation Server Wrapper Components + + + + + + WebpageSnapshot.exe + true + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + classes + 1 + + + classes + 1 + + + + + res\xml + 1 + + + res\xml + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\armeabi + 1 + + + library\lib\armeabi + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + library\lib\mips + 1 + + + library\lib\mips + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + + + library\lib\armeabi-v7a + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\values-v21 + 1 + + + res\values-v21 + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + res\drawable + 1 + + + res\drawable + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-ldpi + 1 + + + res\drawable-ldpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-mdpi + 1 + + + res\drawable-mdpi + 1 + + + + + res\drawable-hdpi + 1 + + + res\drawable-hdpi + 1 + + + + + res\drawable-xhdpi + 1 + + + res\drawable-xhdpi + 1 + + + + + res\drawable-xxhdpi + 1 + + + res\drawable-xxhdpi + 1 + + + + + res\drawable-xxxhdpi + 1 + + + res\drawable-xxxhdpi + 1 + + + + + res\drawable-small + 1 + + + res\drawable-small + 1 + + + + + res\drawable-normal + 1 + + + res\drawable-normal + 1 + + + + + res\drawable-large + 1 + + + res\drawable-large + 1 + + + + + res\drawable-xlarge + 1 + + + res\drawable-xlarge + 1 + + + + + res\values + 1 + + + res\values + 1 + + + + + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + Contents\MacOS + 1 + .framework + + + Contents\MacOS + 1 + .framework + + + 0 + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .dll;.bpl + + + + + 1 + .dylib + + + 1 + .dylib + + + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + Contents\MacOS + 1 + .dylib + + + 0 + .bpl + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + Contents\Resources\StartUp\ + 0 + + + Contents\Resources\StartUp\ + 0 + + + 0 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + ..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset + 1 + + + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).launchscreen + 64 + + + ..\$(PROJECTNAME).launchscreen + 64 + + + + + 1 + + + 1 + + + 1 + + + + + ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF + 1 + + + + + ..\ + 1 + + + ..\ + 1 + + + + + Contents + 1 + + + Contents + 1 + + + + + Contents\Resources + 1 + + + Contents\Resources + 1 + + + + + library\lib\armeabi-v7a + 1 + + + library\lib\arm64-v8a + 1 + + + 1 + + + 1 + + + 1 + + + 1 + + + Contents\MacOS + 1 + + + Contents\MacOS + 1 + + + 0 + + + + + library\lib\armeabi-v7a + 1 + + + + + 1 + + + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + Assets + 1 + + + Assets + 1 + + + + + + + + + + + + + + + True + True + + + 12 + + + + +
diff --git a/demos/Lazarus/CustomResourceBrowser/cef.inc b/demos/Delphi_VCL/WebpageSnapshot/cef.inc similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/cef.inc rename to demos/Delphi_VCL/WebpageSnapshot/cef.inc diff --git a/demos/Delphi_VCL/WebpageSnapshot/uCEFBrowserThread.pas b/demos/Delphi_VCL/WebpageSnapshot/uCEFBrowserThread.pas new file mode 100644 index 00000000..7dac2f7b --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/uCEFBrowserThread.pas @@ -0,0 +1,662 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uCEFBrowserThread; + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, System.SyncObjs, System.Math, + {$ELSE} + Windows, Messages, SysUtils, Classes, Graphics, SyncObjs, Math, + {$ENDIF} + uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, uCEFChromiumCore, uCEFMiscFunctions; + +type + TVirtualBufferPanel = class(TBufferPanel) + protected + FCustomScale : single; + + function GetScreenScale : single; override; + + public + property CustomScale : single read FCustomScale write FCustomScale; + end; + + TCEFBrowserThread = class(TThread) + protected + FBrowser : TChromium; + FPanel : TVirtualBufferPanel; + FPanelSize : TSize; + FScreenScale : single; + FPopUpBitmap : TBitmap; + FPopUpRect : TRect; + FResizeCS : TCriticalSection; + FBrowserInfoCS : TCriticalSection; + FShowPopUp : boolean; + FClosing : boolean; + FResizing : boolean; + FPendingResize : boolean; + FInitialized : boolean; + FDefaultURL : ustring; + FSnapshot : TBitmap; + FDelayMs : integer; + FOnSnapshotAvailable : TNotifyEvent; + FOnError : TNotifyEvent; + FErrorCode : integer; + FErrorText : ustring; + FFailedUrl : ustring; + FPendingUrl : ustring; + + function GetErrorCode : integer; + function GetErrorText : ustring; + function GetFailedUrl : ustring; + function GetInitialized : boolean; + + procedure Panel_OnResize(Sender: TObject); + + procedure Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; width, height: Integer); + procedure Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); + procedure Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); + procedure Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); + procedure Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); + procedure Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); + procedure Browser_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); + procedure Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); + procedure Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); + + procedure DoOnError; + procedure DoOnSnapshotAvailable; + procedure Resize; + function CreateBrowser : boolean; + procedure TakeSnapshot; + procedure CloseBrowser; + procedure WebpagePostProcessing; + procedure LoadPendingURL; + procedure Execute; override; + + public + constructor Create(const aDefaultURL : ustring; aWidth, aHeight : integer; aDelayMs : integer = 500; const aScreenScale : single = 1); + destructor Destroy; override; + procedure AfterConstruction; override; + function TerminateBrowserThread : boolean; + function CopySnapshot(var aSnapshot : TBitmap) : boolean; + procedure LoadUrl(const aURL : ustring); + + property ErrorCode : integer read GetErrorCode; + property ErrorText : ustring read GetErrorText; + property FailedUrl : ustring read GetFailedUrl; + property Initialized : boolean read GetInitialized; + + property OnSnapshotAvailable : TNotifyEvent read FOnSnapshotAvailable write FOnSnapshotAvailable; + property OnError : TNotifyEvent read FOnError write FOnError; + end; + +implementation + +const + CEF_WEBPAGE_LOADED_MSG = WM_APP + 1; + CEF_WEBPAGE_ERROR_MSG = WM_APP + 2; + CEF_CLOSE_BROWSER_MSG = WM_APP + 3; + CEF_LOAD_PENDING_URL_MSG = WM_APP + 4; + +// ************************************* +// ******** TVirtualBufferPanel ******** +// ************************************* + +function TVirtualBufferPanel.GetScreenScale : single; +begin + Result := FCustomScale; +end; + + +// ************************************* +// ********* TCEFBrowserThread ********* +// ************************************* + +constructor TCEFBrowserThread.Create(const aDefaultURL : ustring; aWidth, aHeight, aDelayMs : integer; const aScreenScale : single); +begin + inherited Create(True); + + FreeOnTerminate := False; + FInitialized := False; + FBrowser := nil; + FPanel := nil; + FPanelSize.cx := aWidth; + FPanelSize.cy := aHeight; + FScreenScale := aScreenScale; + FDefaultURL := aDefaultURL; + FPopUpBitmap := nil; + FPopUpRect := rect(0, 0, 0, 0); + FShowPopUp := False; + FResizing := False; + FPendingResize := False; + FResizeCS := nil; + FBrowserInfoCS := nil; + FSnapshot := nil; + FDelayMs := aDelayMs; + FOnSnapshotAvailable := nil; + FOnError := nil; + FClosing := False; +end; + +destructor TCEFBrowserThread.Destroy; +begin + if (FBrowser <> nil) then + FreeAndNil(FBrowser); + + if (FPanel <> nil) then + FreeAndNil(FPanel); + + if (FPopUpBitmap <> nil) then + FreeAndNil(FPopUpBitmap); + + if (FSnapshot <> nil) then + FreeAndNil(FSnapshot); + + if (FResizeCS <> nil) then + FreeAndNil(FResizeCS); + + if (FBrowserInfoCS <> nil) then + FreeAndNil(FBrowserInfoCS); + + inherited Destroy; +end; + +procedure TCEFBrowserThread.AfterConstruction; +begin + inherited AfterConstruction; + + FResizeCS := TCriticalSection.Create; + FBrowserInfoCS := TCriticalSection.Create; + + FPanel := TVirtualBufferPanel.Create(nil); + FPanel.CustomScale := FScreenScale; + FPanel.Width := FPanelSize.cx; + FPanel.Height := FPanelSize.cy; + FPanel.OnResize := Panel_OnResize; + + FBrowser := TChromium.Create(nil); + FBrowser.DefaultURL := FDefaultURL; + FBrowser.Options.BackgroundColor := CefColorSetARGB($FF, $FF, $FF, $FF); + FBrowser.OnAfterCreated := Browser_OnAfterCreated; + FBrowser.OnPaint := Browser_OnPaint; + FBrowser.OnGetViewRect := Browser_OnGetViewRect; + FBrowser.OnGetScreenPoint := Browser_OnGetScreenPoint; + FBrowser.OnGetScreenInfo := Browser_OnGetScreenInfo; + FBrowser.OnPopupShow := Browser_OnPopupShow; + FBrowser.OnPopupSize := Browser_OnPopupSize; + FBrowser.OnBeforePopup := Browser_OnBeforePopup; + FBrowser.OnBeforeClose := Browser_OnBeforeClose; + FBrowser.OnLoadError := Browser_OnLoadError; + FBrowser.OnLoadingStateChange := Browser_OnLoadingStateChange; +end; + +function TCEFBrowserThread.GetErrorCode : integer; +begin + FBrowserInfoCS.Acquire; + Result := FErrorCode; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetErrorText : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FErrorText; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetFailedUrl : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FFailedUrl; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetInitialized : boolean; +begin + Result := False; + + if assigned(FBrowserInfoCS) and assigned(FBrowser) then + try + FBrowserInfoCS.Acquire; + Result := FInitialized and FBrowser.Initialized; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.CopySnapshot(var aSnapshot : TBitmap) : boolean; +begin + Result := False; + + if FClosing or Terminated or (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + if (aSnapshot = nil) then + begin + aSnapshot := TBitmap.Create; + aSnapshot.PixelFormat := pf32bit; + aSnapshot.HandleType := bmDIB; + aSnapshot.Width := FSnapshot.Width; + aSnapshot.Height := FSnapshot.Height; + end; + + aSnapshot.Assign(FSnapshot); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.CopySnapshot', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.LoadUrl(const aURL : ustring); +begin + if FClosing or Terminated or (FBrowserInfoCS = nil) then + exit; + + if Initialized then + try + FBrowserInfoCS.Acquire; + FPendingUrl := aURL; + PostThreadMessage(ThreadID, CEF_LOAD_PENDING_URL_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.TerminateBrowserThread : boolean; +begin + Result := Initialized and + PostThreadMessage(ThreadID, CEF_CLOSE_BROWSER_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Panel_OnResize(Sender: TObject); +begin + Resize; +end; + +procedure TCEFBrowserThread.Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); +begin + FBrowserInfoCS.Acquire; + FInitialized := True; + FBrowserInfoCS.Release; +end; + +procedure TCEFBrowserThread.Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; width, height: Integer); +var + src, dst: PByte; + i, j, TempLineSize, TempSrcOffset, TempDstOffset, SrcStride, DstStride : Integer; + n : NativeUInt; + TempWidth, TempHeight, TempScanlineSize : integer; + TempBufferBits : Pointer; + TempForcedResize : boolean; + TempSrcRect : TRect; +begin + try + FResizeCS.Acquire; + TempForcedResize := False; + + if FPanel.BeginBufferDraw then + begin + if (kind = PET_POPUP) then + begin + if (FPopUpBitmap = nil) or + (width <> FPopUpBitmap.Width) or + (height <> FPopUpBitmap.Height) then + begin + if (FPopUpBitmap <> nil) then FPopUpBitmap.Free; + + FPopUpBitmap := TBitmap.Create; + FPopUpBitmap.PixelFormat := pf32bit; + FPopUpBitmap.HandleType := bmDIB; + FPopUpBitmap.Width := width; + FPopUpBitmap.Height := height; + end; + + TempWidth := FPopUpBitmap.Width; + TempHeight := FPopUpBitmap.Height; + TempScanlineSize := FPopUpBitmap.Width * SizeOf(TRGBQuad); + TempBufferBits := FPopUpBitmap.Scanline[pred(FPopUpBitmap.Height)]; + end + else + begin + TempForcedResize := FPanel.UpdateBufferDimensions(Width, Height) or not(FPanel.BufferIsResized(False)); + TempWidth := FPanel.BufferWidth; + TempHeight := FPanel.BufferHeight; + TempScanlineSize := FPanel.ScanlineSize; + TempBufferBits := FPanel.BufferBits; + end; + + if (TempBufferBits <> nil) then + begin + SrcStride := Width * SizeOf(TRGBQuad); + DstStride := - TempScanlineSize; + + n := 0; + + while (n < dirtyRectsCount) do + begin + if (dirtyRects[n].x >= 0) and (dirtyRects[n].y >= 0) then + begin + TempLineSize := min(dirtyRects[n].width, TempWidth - dirtyRects[n].x) * SizeOf(TRGBQuad); + + if (TempLineSize > 0) then + begin + TempSrcOffset := ((dirtyRects[n].y * Width) + dirtyRects[n].x) * SizeOf(TRGBQuad); + TempDstOffset := ((TempScanlineSize * pred(TempHeight)) - (dirtyRects[n].y * TempScanlineSize)) + + (dirtyRects[n].x * SizeOf(TRGBQuad)); + + src := @PByte(buffer)[TempSrcOffset]; + dst := @PByte(TempBufferBits)[TempDstOffset]; + + i := 0; + j := min(dirtyRects[n].height, TempHeight - dirtyRects[n].y); + + while (i < j) do + begin + Move(src^, dst^, TempLineSize); + + Inc(dst, DstStride); + Inc(src, SrcStride); + inc(i); + end; + end; + end; + + inc(n); + end; + + if FShowPopup and (FPopUpBitmap <> nil) then + begin + TempSrcRect := Rect(0, 0, + min(FPopUpRect.Right - FPopUpRect.Left, FPopUpBitmap.Width), + min(FPopUpRect.Bottom - FPopUpRect.Top, FPopUpBitmap.Height)); + + FPanel.BufferDraw(FPopUpBitmap, TempSrcRect, FPopUpRect); + end; + end; + + FPanel.EndBufferDraw; + FPanel.InvalidatePanel; + + if (kind = PET_VIEW) then + begin + if TempForcedResize or FPendingResize then PostThreadMessage(ThreadID, CEF_PENDINGRESIZE, 0, 0); + + FResizing := False; + FPendingResize := False; + end; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); +begin + rect.x := 0; + rect.y := 0; + rect.width := DeviceToLogical(FPanel.Width, FScreenScale); + rect.height := DeviceToLogical(FPanel.Height, FScreenScale); +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); +begin + screenX := LogicalToDevice(viewX, FScreenScale); + screenY := LogicalToDevice(viewY, FScreenScale); + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); +var + TempRect : TCEFRect; +begin + TempRect.x := 0; + TempRect.y := 0; + TempRect.width := DeviceToLogical(FPanel.Width, FScreenScale); + TempRect.height := DeviceToLogical(FPanel.Height, FScreenScale); + + screenInfo.device_scale_factor := FScreenScale; + screenInfo.depth := 0; + screenInfo.depth_per_component := 0; + screenInfo.is_monochrome := Ord(False); + screenInfo.rect := TempRect; + screenInfo.available_rect := TempRect; + + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); +begin + if show then + FShowPopUp := True + else + begin + FShowPopUp := False; + FPopUpRect := rect(0, 0, 0, 0); + + if (FBrowser <> nil) then FBrowser.Invalidate(PET_VIEW); + end; +end; + +procedure TCEFBrowserThread.Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); +begin + LogicalToDevice(rect^, FScreenScale); + + FPopUpRect.Left := rect.x; + FPopUpRect.Top := rect.y; + FPopUpRect.Right := rect.x + rect.width - 1; + FPopUpRect.Bottom := rect.y + rect.height - 1; +end; + +procedure TCEFBrowserThread.Browser_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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TCEFBrowserThread.Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + PostThreadMessage(ThreadID, WM_QUIT, 0, 0); +end; + +procedure TCEFBrowserThread.Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); +begin + if not(FClosing) and not(Terminated) and (frame <> nil) and frame.IsValid and frame.IsMain then + try + FBrowserInfoCS.Acquire; + + FErrorCode := errorCode; + FErrorText := errorText; + FFailedUrl := failedUrl; + + PostThreadMessage(ThreadID, CEF_WEBPAGE_ERROR_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); +begin + if not(FClosing) and not(Terminated) and not(isLoading) then + PostThreadMessage(ThreadID, CEF_WEBPAGE_LOADED_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.DoOnError; +begin + FOnError(self); +end; + +procedure TCEFBrowserThread.DoOnSnapshotAvailable; +begin + FOnSnapshotAvailable(self); +end; + +procedure TCEFBrowserThread.Resize; +begin + if FClosing or Terminated or (FPanel = nil) or (FResizeCS = nil) or (FBrowser = nil) then + exit; + + try + FResizeCS.Acquire; + + if FResizing then + FPendingResize := True + else + if FPanel.BufferIsResized then + FBrowser.Invalidate(PET_VIEW) + else + begin + FResizing := True; + FBrowser.WasResized; + end; + finally + FResizeCS.Release; + end; +end; + +function TCEFBrowserThread.CreateBrowser : boolean; +begin + Result := (FBrowser <> nil) and FBrowser.CreateBrowser; +end; + +procedure TCEFBrowserThread.LoadPendingURL; +begin + if FClosing or Terminated or (FBrowser = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (length(FPendingURL) > 0) then + begin + FBrowser.LoadURL(FPendingURL); + FPendingURL := ''; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.WebpagePostProcessing; +begin + if FClosing or Terminated then + exit; + + if (FDelayMs > 0) then + sleep(FDelayMs); + + TakeSnapshot; + + if assigned(FOnSnapshotAvailable) then + Synchronize(DoOnSnapshotAvailable); +end; + +procedure TCEFBrowserThread.TakeSnapshot; +begin + if (FPanel = nil) or (FPanel.Buffer = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (FSnapshot = nil) then + begin + FSnapshot := TBitmap.Create; + FSnapshot.PixelFormat := pf32bit; + FSnapshot.HandleType := bmDIB; + FSnapshot.Width := FPanel.BufferWidth; + FSnapshot.Height := FPanel.BufferHeight; + end; + + FSnapshot.Assign(FPanel.Buffer); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.CloseBrowser; +begin + if not(FClosing) and assigned(FBrowser) then + begin + FClosing := True; + FBrowser.CloseBrowser(True); + end; +end; + +procedure TCEFBrowserThread.Execute; +var + TempCont : boolean; + TempMsg : TMsg; +begin + if CreateBrowser then + begin + TempCont := True; + PeekMessage(TempMsg, 0, WM_USER, WM_USER, PM_NOREMOVE); + + while TempCont and GetMessage(TempMsg, 0, 0, 0) and not(Terminated) do + begin + case TempMsg.Message of + WM_QUIT : TempCont := False; + CEF_PENDINGRESIZE : Resize; + CEF_CLOSE_BROWSER_MSG : CloseBrowser; + CEF_LOAD_PENDING_URL_MSG : LoadPendingURL; + CEF_WEBPAGE_LOADED_MSG : WebpagePostProcessing; + CEF_WEBPAGE_ERROR_MSG : if assigned(FOnError) then Synchronize(DoOnError); + end; + + DispatchMessage(TempMsg); + end; + end; +end; + +end. diff --git a/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.dfm b/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.dfm new file mode 100644 index 00000000..8a70f54d --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.dfm @@ -0,0 +1,75 @@ +object WebpageSnapshotFrm: TWebpageSnapshotFrm + Left = 0 + Top = 0 + Caption = 'Web page snapshot' + ClientHeight = 486 + ClientWidth = 711 + Color = clBtnFace + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -11 + Font.Name = 'Tahoma' + Font.Style = [] + OldCreateOrder = False + Position = poScreenCenter + OnCloseQuery = FormCloseQuery + OnCreate = FormCreate + PixelsPerInch = 96 + TextHeight = 13 + object Image1: TImage + Left = 0 + Top = 25 + Width = 711 + Height = 442 + Align = alClient + AutoSize = True + Center = True + Proportional = True + ExplicitLeft = 104 + ExplicitTop = 112 + ExplicitWidth = 105 + ExplicitHeight = 105 + end + object StatusBar1: TStatusBar + Left = 0 + Top = 467 + Width = 711 + Height = 19 + Panels = < + item + Width = 1000 + end> + end + object NavigationPnl: TPanel + Left = 0 + Top = 0 + Width = 711 + Height = 25 + Align = alTop + BevelOuter = bvNone + Padding.Left = 2 + Padding.Top = 2 + Padding.Right = 2 + Padding.Bottom = 2 + TabOrder = 1 + object GoBtn: TButton + Left = 634 + Top = 2 + Width = 75 + Height = 21 + Align = alRight + Caption = 'Go' + TabOrder = 0 + OnClick = GoBtnClick + end + object AddressEdt: TEdit + Left = 2 + Top = 2 + Width = 632 + Height = 21 + Align = alClient + TabOrder = 1 + Text = 'https://www.google.com' + end + end +end diff --git a/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.pas b/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.pas new file mode 100644 index 00000000..ef62a7f6 --- /dev/null +++ b/demos/Delphi_VCL/WebpageSnapshot/uWebpageSnapshot.pas @@ -0,0 +1,165 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uWebpageSnapshot; + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, + Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls, + {$ELSE} + Windows, Messages, SysUtils, Variants, Classes, + Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ExtCtrls, + {$ENDIF} + uCEFBrowserThread; + +type + TWebpageSnapshotFrm = class(TForm) + StatusBar1: TStatusBar; + Image1: TImage; + NavigationPnl: TPanel; + GoBtn: TButton; + AddressEdt: TEdit; + procedure GoBtnClick(Sender: TObject); + procedure FormCreate(Sender: TObject); + procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); + + private + FThread : TCEFBrowserThread; + + procedure Thread_OnError(Sender: TObject); + procedure Thread_OnSnapshotAvailable(Sender: TObject); + end; + +var + WebpageSnapshotFrm: TWebpageSnapshotFrm; + +// This demo shows how to encapsulate a browser without user interface in a thread. + +// The thread in the uCEFBrowserThread unit has a browser in "off-screen" mode +// and it takes a snapshot when the browser has loaded a web page. + +// The thread triggers the TCEFBrowserThread.OnSnapshotAvailable when the main thread +// can copy the snapshot in a bitmap. + +// If there's an error loading the page then TCEFBrowserThread.OnError will be +// triggered and the error information will be available in the +// TCEFBrowserThread.ErrorCode, TCEFBrowserThread.ErrorText and +// TCEFBrowserThread.FailedUrl properties. + +// The TCEFBrowserThread.Create constructor has the default URL, virtual screen size, +// virtual screen scale and a delay as parameters. The delay is applied after the browser +// has finished loading the main frame and before taking the snapshot. + +procedure CreateGlobalCEFApp; + +implementation + +{$R *.dfm} + +uses + uCEFApplication; + +procedure CreateGlobalCEFApp; +begin + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; +end; + +procedure TWebpageSnapshotFrm.GoBtnClick(Sender: TObject); +begin + StatusBar1.Panels[0].Text := 'Loading...'; + screen.cursor := crAppStart; + + if (FThread = nil) then + begin + FThread := TCEFBrowserThread.Create(AddressEdt.Text, 1024, 768); + FThread.OnError := Thread_OnError; + FThread.OnSnapshotAvailable := Thread_OnSnapshotAvailable; + FThread.Start; + end + else + FThread.LoadUrl(AddressEdt.Text); +end; + +procedure TWebpageSnapshotFrm.FormCloseQuery(Sender: TObject; var CanClose: Boolean); +begin + if (FThread <> nil) then + begin + if FThread.TerminateBrowserThread then + FThread.WaitFor; + + FreeAndNil(FThread); + end; + + CanClose := True; +end; + +procedure TWebpageSnapshotFrm.FormCreate(Sender: TObject); +begin + FThread := nil; +end; + +procedure TWebpageSnapshotFrm.Thread_OnError(Sender: TObject); +begin + StatusBar1.Panels[0].Text := 'Error ' + inttostr(FThread.ErrorCode) + ' : ' + FThread.ErrorText + ' - ' + FThread.FailedUrl; + screen.cursor := crDefault; +end; + +procedure TWebpageSnapshotFrm.Thread_OnSnapshotAvailable(Sender: TObject); +var + TempBitmap : TBitmap; +begin + TempBitmap := nil; + screen.cursor := crDefault; + + if (FThread <> nil) and FThread.CopySnapshot(TempBitmap) then + begin + Image1.Picture.Assign(TempBitmap); + StatusBar1.Panels[0].Text := 'Snapshot copied successfully'; + TempBitmap.Free; + end + else + StatusBar1.Panels[0].Text := 'There was an error copying the snapshot'; +end; + +end. diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps b/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps deleted file mode 100644 index 0bfdc164..00000000 --- a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/Lazarus/CookieVisitor/00-Delete.bat b/demos/Lazarus_Linux/OSRExternalPumpBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/CookieVisitor/00-Delete.bat rename to demos/Lazarus_Linux/OSRExternalPumpBrowser/00-Delete.bat diff --git a/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi new file mode 100644 index 00000000..363e8e12 --- /dev/null +++ b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="2"> + <Unit0> + <Filename Value="OSRExternalPumpBrowser.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="OSRExternalPumpBrowserFrm"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit1> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\OSRExternalPumpBrowser"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL -dUseCthreads"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr new file mode 100644 index 00000000..82841a86 --- /dev/null +++ b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr @@ -0,0 +1,78 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program OSRExternalPumpBrowser; + +{$MODE Delphi} + +{$I cef.inc} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + cmem, + {$ENDIF}{$ENDIF} + Interfaces, Forms, + uCEFApplication, + uCEFWorkScheduler, + uOSRExternalPumpBrowser in 'uOSRExternalPumpBrowser.pas' {OSRExternalPumpBrowserFrm}; + +{.$R *.res} + +// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM. +{$SetPEFlags $20} + +begin + // GlobalCEFApp creation and initialization moved to a different unit to fix the memory leak described in the bug #89 + // https://github.com/salvadordf/CEF4Delphi/issues/89 + CreateGlobalCEFApp; + + if GlobalCEFApp.StartMainProcess then + begin + Application.Initialize; + Application.CreateForm(TOSRExternalPumpBrowserFrm, OSRExternalPumpBrowserFrm); + Application.Run; + + // The form needs to be destroyed *BEFORE* stopping the scheduler. + OSRExternalPumpBrowserFrm.Free; + + GlobalCEFWorkScheduler.StopScheduler; + end; + + DestroyGlobalCEFApp; + DestroyGlobalCEFWorkScheduler; +end. diff --git a/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps new file mode 100644 index 00000000..27bc655d --- /dev/null +++ b/demos/Lazarus_Linux/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps @@ -0,0 +1,202 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="12"> + <Unit0> + <Filename Value="OSRExternalPumpBrowser.lpr"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="39"/> + <CursorPos X="30" Y="66"/> + <UsageCount Value="28"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="OSRExternalPumpBrowserFrm"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <IsVisibleTab Value="True"/> + <TopLine Value="67"/> + <CursorPos X="63" Y="108"/> + <UsageCount Value="28"/> + <Bookmarks Count="1"> + <Item0 X="72" Y="518" ID="1"/> + </Bookmarks> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="..\..\..\source\uCEFApplication.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="412"/> + <CursorPos X="39" Y="425"/> + <UsageCount Value="11"/> + </Unit2> + <Unit3> + <Filename Value="..\..\..\source\uCEFInterfaces.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="157"/> + <CursorPos X="100" Y="168"/> + <UsageCount Value="11"/> + </Unit3> + <Unit4> + <Filename Value="C:\lazarus\lcl\lcltype.pp"/> + <UnitName Value="LCLType"/> + <EditorIndex Value="-1"/> + <TopLine Value="59"/> + <CursorPos X="32" Y="68"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit4> + <Unit5> + <Filename Value="C:\lazarus\lcl\include\wincontrol.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="5667"/> + <CursorPos Y="5683"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit5> + <Unit6> + <Filename Value="..\..\..\source\uCEFMediaObserver.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="266"/> + <CursorPos X="13" Y="86"/> + <UsageCount Value="10"/> + </Unit6> + <Unit7> + <Filename Value="..\..\..\source\uCEFLinkedWindowParent.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="61"/> + <UsageCount Value="10"/> + </Unit7> + <Unit8> + <Filename Value="..\..\..\source\uCEFChromiumCore.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="904"/> + <CursorPos Y="925"/> + <UsageCount Value="10"/> + </Unit8> + <Unit9> + <Filename Value="..\..\..\source\uCEFMediaObserverComponent.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="115"/> + <UsageCount Value="10"/> + </Unit9> + <Unit10> + <Filename Value="..\..\..\..\..\..\..\usr\share\fpcsrc\3.2.0\rtl\wince\windows.pp"/> + <EditorIndex Value="-1"/> + <TopLine Value="25"/> + <CursorPos X="5" Y="44"/> + <UsageCount Value="10"/> + </Unit10> + <Unit11> + <Filename Value="..\SimpleOSRBrowser\usimpleosrbrowser.pas"/> + <ComponentName Value="Form1"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="uSimpleOSRBrowser"/> + <EditorIndex Value="-1"/> + <TopLine Value="150"/> + <CursorPos X="80" Y="175"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit11> + </Units> + <JumpHistory Count="21" HistoryIndex="20"> + <Position1> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="762" Column="73" TopLine="739"/> + </Position1> + <Position2> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="123" Column="30" TopLine="104"/> + </Position2> + <Position3> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="203" Column="18" TopLine="171"/> + </Position3> + <Position4> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="209" Column="18" TopLine="177"/> + </Position4> + <Position5> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="415" Column="24" TopLine="383"/> + </Position5> + <Position6> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="420" Column="30" TopLine="388"/> + </Position6> + <Position7> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="468" Column="74" TopLine="447"/> + </Position7> + <Position8> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="50" Column="20" TopLine="27"/> + </Position8> + <Position9> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="162" Column="52" TopLine="125"/> + </Position9> + <Position10> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="170" Column="65" TopLine="133"/> + </Position10> + <Position11> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="162" Column="37" TopLine="130"/> + </Position11> + <Position12> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="616" Column="82" TopLine="596"/> + </Position12> + <Position13> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="77" TopLine="58"/> + </Position13> + <Position14> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="668" Column="56" TopLine="651"/> + </Position14> + <Position15> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="127" Column="34" TopLine="109"/> + </Position15> + <Position16> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="595" Column="42" TopLine="573"/> + </Position16> + <Position17> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="115" Column="41" TopLine="100"/> + </Position17> + <Position18> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="641" Column="54" TopLine="614"/> + </Position18> + <Position19> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="121" TopLine="102"/> + </Position19> + <Position20> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="537" TopLine="506"/> + </Position20> + <Position21> + <Filename Value="uOSRExternalPumpBrowser.pas"/> + <Caret Line="639" Column="84" TopLine="632"/> + </Position21> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus/DOMVisitor/cef.inc b/demos/Lazarus_Linux/OSRExternalPumpBrowser/cef.inc similarity index 100% rename from demos/Lazarus/DOMVisitor/cef.inc rename to demos/Lazarus_Linux/OSRExternalPumpBrowser/cef.inc diff --git a/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm b/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm new file mode 100644 index 00000000..b807a02f --- /dev/null +++ b/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm @@ -0,0 +1,143 @@ +object OSRExternalPumpBrowserFrm: TOSRExternalPumpBrowserFrm + Left = 293 + Height = 584 + Top = 210 + Width = 913 + Caption = 'Initializing browser. Please wait...' + ClientHeight = 584 + ClientWidth = 913 + Color = clBtnFace + Font.Color = clWindowText + Font.Height = -11 + Font.Name = 'Tahoma' + OnCloseQuery = FormCloseQuery + OnCreate = FormCreate + OnDestroy = FormDestroy + OnHide = FormHide + OnShow = FormShow + Position = poScreenCenter + LCLVersion = '2.0.10.0' + object NavControlPnl: TPanel + Left = 0 + Height = 21 + Top = 0 + Width = 913 + Align = alTop + BevelOuter = bvNone + ClientHeight = 21 + ClientWidth = 913 + Enabled = False + TabOrder = 0 + object ComboBox1: TComboBox + Left = 0 + Height = 21 + Top = 0 + Width = 844 + Align = alClient + ItemHeight = 0 + ItemIndex = 0 + Items.Strings = ( + 'https://www.google.com' + 'https://html5demos.com/drag' + 'https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_select_form' + 'https://www.briskbard.com' + 'https://frames-per-second.appspot.com/' + 'https://www.youtube.com' + ) + OnEnter = ComboBox1Enter + TabOrder = 0 + Text = 'https://www.google.com' + end + object Panel2: TPanel + Left = 844 + Height = 21 + Top = 0 + Width = 69 + Align = alRight + BevelOuter = bvNone + ClientHeight = 21 + ClientWidth = 69 + TabOrder = 1 + object GoBtn: TButton + Left = 0 + Height = 21 + Top = 0 + Width = 31 + Align = alLeft + Caption = 'Go' + OnClick = GoBtnClick + OnEnter = GoBtnEnter + TabOrder = 0 + end + object SnapshotBtn: TButton + Left = 38 + Height = 21 + Hint = 'Take snapshot' + Top = 0 + Width = 31 + Align = alRight + Caption = 'µ' + Font.CharSet = SYMBOL_CHARSET + Font.Color = clWindowText + Font.Height = -24 + Font.Name = 'Webdings' + OnClick = SnapshotBtnClick + OnEnter = SnapshotBtnEnter + ParentFont = False + ParentShowHint = False + ShowHint = True + TabOrder = 1 + end + end + end + object Panel1: TBufferPanel + Left = 0 + Height = 563 + Top = 21 + Width = 913 + Align = alClient + OnUTF8KeyPress = Panel1UTF8KeyPress + Caption = 'Panel1' + TabOrder = 1 + TabStop = True + OnClick = Panel1Click + OnEnter = Panel1Enter + OnExit = Panel1Exit + OnMouseDown = Panel1MouseDown + OnMouseMove = Panel1MouseMove + OnMouseUp = Panel1MouseUp + OnMouseWheel = Panel1MouseWheel + OnKeyDown = Panel1KeyDown + OnKeyUp = Panel1KeyUp + OnResize = Panel1Resize + end + object chrmosr: TChromium + OnTooltip = chrmosrTooltip + OnCursorChange = chrmosrCursorChange + OnBeforePopup = chrmosrBeforePopup + OnAfterCreated = chrmosrAfterCreated + OnBeforeClose = chrmosrBeforeClose + OnGetViewRect = chrmosrGetViewRect + OnGetScreenPoint = chrmosrGetScreenPoint + OnGetScreenInfo = chrmosrGetScreenInfo + OnPopupShow = chrmosrPopupShow + OnPopupSize = chrmosrPopupSize + OnPaint = chrmosrPaint + Left = 24 + Top = 56 + end + object SaveDialog1: TSaveDialog + Title = 'Save snapshot' + DefaultExt = '.bmp' + Filter = 'Bitmap files (*.bmp)|*.BMP' + Left = 24 + Top = 278 + end + object Timer1: TTimer + Enabled = False + Interval = 300 + OnTimer = Timer1Timer + Left = 24 + Top = 206 + end +end diff --git a/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas b/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas new file mode 100644 index 00000000..56a28a5c --- /dev/null +++ b/demos/Lazarus_Linux/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas @@ -0,0 +1,732 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uOSRExternalPumpBrowser; + +{$MODE OBJFPC}{$H+} + +{$I cef.inc} + +interface + +uses + Classes, SysUtils, LCLType, Variants, SyncObjs, Graphics, Controls, + Forms, Dialogs, StdCtrls, ExtCtrls, Types, + uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, + uCEFWorkScheduler; + +type + + { TOSRExternalPumpBrowserFrm } + + TOSRExternalPumpBrowserFrm = class(TForm) + NavControlPnl: TPanel; + chrmosr: TChromium; + ComboBox1: TComboBox; + Panel2: TPanel; + GoBtn: TButton; + SnapshotBtn: TButton; + SaveDialog1: TSaveDialog; + Timer1: TTimer; + Panel1: TBufferPanel; + + procedure GoBtnClick(Sender: TObject); + procedure GoBtnEnter(Sender: TObject); + + procedure Panel1Enter(Sender: TObject); + procedure Panel1Exit(Sender: TObject); + procedure Panel1Resize(Sender: TObject); + procedure Panel1Click(Sender: TObject); + procedure Panel1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); + procedure Panel1MouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); + procedure Panel1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); + procedure Panel1MouseWheel(Sender: TObject; Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint; var Handled: Boolean); + procedure Panel1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); + procedure Panel1KeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); + procedure Panel1UTF8KeyPress(Sender: TObject; var UTF8Key: TUTF8Char); + + procedure FormCreate(Sender: TObject); + procedure FormDestroy(Sender: TObject); + procedure FormShow(Sender: TObject); + procedure FormHide(Sender: TObject); + procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); + + procedure chrmosrPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, aHeight: Integer); + procedure chrmosrCursorChange(Sender: TObject; const browser: ICefBrowser; aCursor: HICON; cursorType: TCefCursorType; const customCursorInfo: PCefCursorInfo; var aResult : boolean); + procedure chrmosrGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); + procedure chrmosrGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); + procedure chrmosrGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); + procedure chrmosrPopupShow(Sender: TObject; const browser: ICefBrowser; aShow: Boolean); + procedure chrmosrPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); + procedure chrmosrAfterCreated(Sender: TObject; const browser: ICefBrowser); + procedure chrmosrTooltip(Sender: TObject; const browser: ICefBrowser; var aText: ustring; out Result: Boolean); + procedure chrmosrBeforePopup(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); + procedure chrmosrBeforeClose(Sender: TObject; const browser: ICefBrowser); + + procedure SnapshotBtnClick(Sender: TObject); + procedure SnapshotBtnEnter(Sender: TObject); + + procedure Timer1Timer(Sender: TObject); + procedure ComboBox1Enter(Sender: TObject); + + protected + FbFirst : boolean; + FPopUpBitmap : TBitmap; + FPopUpRect : TRect; + FShowPopUp : boolean; + FResizing : boolean; + FPendingResize : boolean; + FCanClose : boolean; + FClosing : boolean; + FResizeCS : TCriticalSection; + + function SendCompMessage(aMsg : cardinal) : boolean; + function getModifiers(Shift: TShiftState): TCefEventFlags; + function GetButton(Button: TMouseButton): TCefMouseButtonType; + procedure DoResize; + + procedure BrowserCreated(Data: PtrInt); + procedure BrowserCloseForm(Data: PtrInt); + procedure PendingResize(Data: PtrInt); + procedure PendingInvalidate(Data: PtrInt); + + public + { Public declarations } + end; + +var + OSRExternalPumpBrowserFrm : TOSRExternalPumpBrowserFrm; + +// This is a simple browser in OSR mode (off-screen rendering). +// It was necessary to destroy the browser following the destruction sequence described in +// the MDIBrowser demo but in OSR mode there are some modifications. + +// This is the destruction sequence in OSR mode : +// 1- FormCloseQuery sets CanClose to the initial FCanClose value (False) and calls chrmosr.CloseBrowser(True). +// 2- chrmosr.CloseBrowser(True) will trigger chrmosr.OnClose and we have to +// set "Result" to false and CEF will destroy the internal browser immediately. +// 3- chrmosr.OnBeforeClose is triggered because the internal browser was destroyed. +// FCanClose is set to True and sends WM_CLOSE to the form. + +procedure CreateGlobalCEFApp; +procedure GlobalCEFApp_OnScheduleMessagePumpWork(const aDelayMS : int64); + +implementation + +{$R *.lfm} + +uses + Math, + uCEFMiscFunctions, uCEFApplication; + +procedure GlobalCEFApp_OnScheduleMessagePumpWork(const aDelayMS : int64); +begin + if (GlobalCEFWorkScheduler <> nil) then + GlobalCEFWorkScheduler.ScheduleMessagePumpWork(aDelayMS); +end; + +procedure CreateGlobalCEFApp; +var + TempHome, TempBinDir : ustring; +begin + TempHome := IncludeTrailingPathDelimiter(GetEnvironmentVariable('HOME')); + TempBinDir := TempHome + 'Lazarus/CEF4Delphi/bin'; + + // TCEFWorkScheduler will call cef_do_message_loop_work when + // it's told in the GlobalCEFApp.OnScheduleMessagePumpWork event. + // GlobalCEFWorkScheduler needs to be created before the + // GlobalCEFApp.StartMainProcess call. + GlobalCEFWorkScheduler := TCEFWorkScheduler.Create(nil); + + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; + GlobalCEFApp.ExternalMessagePump := True; + GlobalCEFApp.MultiThreadedMessageLoop := False; + GlobalCEFApp.OnScheduleMessagePumpWork := @GlobalCEFApp_OnScheduleMessagePumpWork; + GlobalCEFApp.SetCurrentDir := True; + + if DirectoryExists(TempBinDir) then + begin + GlobalCEFApp.FrameworkDirPath := TempBinDir; + GlobalCEFApp.ResourcesDirPath := TempBinDir; + GlobalCEFApp.LocalesDirPath := TempBinDir + '/locales'; + end; + + // Add a debug log in the BIN directory + GlobalCEFApp.LogFile := 'cef.log'; + GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE; +end; + +procedure TOSRExternalPumpBrowserFrm.GoBtnClick(Sender: TObject); +begin + FResizeCS.Acquire; + FResizing := False; + FPendingResize := False; + FResizeCS.Release; + + chrmosr.LoadURL(ComboBox1.Text); +end; + +procedure TOSRExternalPumpBrowserFrm.GoBtnEnter(Sender: TObject); +begin + chrmosr.SendFocusEvent(False); +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrAfterCreated(Sender: TObject; const browser: ICefBrowser); +begin + SendCompMessage(CEF_AFTERCREATED); +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + FCanClose := True; + SendCompMessage(CEF_BEFORECLOSE); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1UTF8KeyPress(Sender: TObject; var UTF8Key: TUTF8Char); +var + TempKeyEvent : TCefKeyEvent; + TempString : UnicodeString; +begin + if Panel1.Focused then + begin + TempString := UTF8Decode(UTF8Key); + + if (length(TempString) > 0) then + begin + TempKeyEvent.kind := KEYEVENT_CHAR; + TempKeyEvent.modifiers := EVENTFLAG_NONE; + TempKeyEvent.windows_key_code := ord(TempString[1]); + TempKeyEvent.native_key_code := 0; + TempKeyEvent.is_system_key := ord(False); + TempKeyEvent.character := #0; + TempKeyEvent.unmodified_character := #0; + TempKeyEvent.focus_on_editable_field := ord(False); + + chrmosr.SendKeyEvent(@TempKeyEvent); + end; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrBeforePopup(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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrCursorChange(Sender : TObject; + const browser : ICefBrowser; + aCursor : HICON; + cursorType : TCefCursorType; + const customCursorInfo : PCefCursorInfo; + var aResult : boolean); +begin + Panel1.Cursor := CefCursorToWindowsCursor(cursorType); + aResult := True; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrGetScreenInfo(Sender : TObject; + const browser : ICefBrowser; + var screenInfo : TCefScreenInfo; + out Result : Boolean); +var + TempRect : TCEFRect; + TempScale : single; +begin + TempScale := Panel1.ScreenScale; + TempRect.x := 0; + TempRect.y := 0; + TempRect.width := DeviceToLogical(Panel1.Width, TempScale); + TempRect.height := DeviceToLogical(Panel1.Height, TempScale); + + screenInfo.device_scale_factor := TempScale; + screenInfo.depth := 0; + screenInfo.depth_per_component := 0; + screenInfo.is_monochrome := Ord(False); + screenInfo.rect := TempRect; + screenInfo.available_rect := TempRect; + + Result := True; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrGetScreenPoint(Sender: TObject; + const browser: ICefBrowser; viewX, viewY: Integer; var screenX, + screenY: Integer; out Result: Boolean); +var + TempScreenPt, TempViewPt : TPoint; + TempScale : single; +begin + TempScale := Panel1.ScreenScale; + TempViewPt.x := LogicalToDevice(viewX, TempScale); + TempViewPt.y := LogicalToDevice(viewY, TempScale); + TempScreenPt := Panel1.ClientToScreen(TempViewPt); + screenX := TempScreenPt.x; + screenY := TempScreenPt.y; + Result := True; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrGetViewRect(Sender : TObject; + const browser : ICefBrowser; + var rect : TCefRect); +var + TempScale : single; +begin + TempScale := Panel1.ScreenScale; + rect.x := 0; + rect.y := 0; + rect.width := DeviceToLogical(Panel1.Width, TempScale); + rect.height := DeviceToLogical(Panel1.Height, TempScale); +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrPaint(Sender: TObject; const browser: ICefBrowser; + kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; + const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, + aHeight: Integer); +var + src, dst: PByte; + i, j, TempLineSize, TempSrcOffset, TempDstOffset, SrcStride : Integer; + n : NativeUInt; + TempWidth, TempHeight : integer; + TempBufferBits : Pointer; + TempForcedResize : boolean; + TempBitmap : TBitmap; + TempSrcRect : TRect; +begin + try + FResizeCS.Acquire; + TempForcedResize := False; + + if Panel1.BeginBufferDraw then + begin + if (kind = PET_POPUP) then + begin + if (FPopUpBitmap = nil) or + (aWidth <> FPopUpBitmap.Width) or + (aHeight <> FPopUpBitmap.Height) then + begin + if (FPopUpBitmap <> nil) then FPopUpBitmap.Free; + + FPopUpBitmap := TBitmap.Create; + FPopUpBitmap.PixelFormat := pf32bit; + FPopUpBitmap.HandleType := bmDIB; + FPopUpBitmap.Width := aWidth; + FPopUpBitmap.Height := aHeight; + end; + + TempBitmap := FPopUpBitmap; + TempBitmap.BeginUpdate; + + TempWidth := FPopUpBitmap.Width; + TempHeight := FPopUpBitmap.Height; + end + else + begin + TempForcedResize := Panel1.UpdateBufferDimensions(aWidth, aHeight) or not(Panel1.BufferIsResized(False)); + + TempBitmap := Panel1.Buffer; + TempBitmap.BeginUpdate; + + TempWidth := Panel1.BufferWidth; + TempHeight := Panel1.BufferHeight; + end; + + SrcStride := aWidth * SizeOf(TRGBQuad); + n := 0; + + while (n < dirtyRectsCount) do + begin + if (dirtyRects^[n].x >= 0) and (dirtyRects^[n].y >= 0) then + begin + TempLineSize := min(dirtyRects^[n].width, TempWidth - dirtyRects^[n].x) * SizeOf(TRGBQuad); + + if (TempLineSize > 0) then + begin + TempSrcOffset := ((dirtyRects^[n].y * aWidth) + dirtyRects^[n].x) * SizeOf(TRGBQuad); + TempDstOffset := (dirtyRects^[n].x * SizeOf(TRGBQuad)); + + src := @PByte(buffer)[TempSrcOffset]; + + i := 0; + j := min(dirtyRects^[n].height, TempHeight - dirtyRects^[n].y); + + while (i < j) do + begin + TempBufferBits := TempBitmap.Scanline[dirtyRects^[n].y + i]; + dst := @PByte(TempBufferBits)[TempDstOffset]; + + Move(src^, dst^, TempLineSize); + + Inc(src, SrcStride); + inc(i); + end; + end; + end; + + inc(n); + end; + + TempBitmap.EndUpdate; + + if FShowPopup and (FPopUpBitmap <> nil) then + begin + TempSrcRect := Rect(0, 0, + min(FPopUpRect.Right - FPopUpRect.Left, FPopUpBitmap.Width), + min(FPopUpRect.Bottom - FPopUpRect.Top, FPopUpBitmap.Height)); + + Panel1.BufferDraw(FPopUpBitmap, TempSrcRect, FPopUpRect); + end; + + Panel1.EndBufferDraw; + + SendCompMessage(CEF_PENDINGINVALIDATE); + + if (kind = PET_VIEW) then + begin + if TempForcedResize or FPendingResize then + SendCompMessage(CEF_PENDINGRESIZE); + + FResizing := False; + FPendingResize := False; + end; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrPopupShow(Sender : TObject; + const browser : ICefBrowser; + aShow : Boolean); +begin + if aShow then + FShowPopUp := True + else + begin + FShowPopUp := False; + FPopUpRect := rect(0, 0, 0, 0); + + if (chrmosr <> nil) then chrmosr.Invalidate(PET_VIEW); + end; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrPopupSize(Sender : TObject; + const browser : ICefBrowser; + const rect : PCefRect); +begin + LogicalToDevice(rect^, Panel1.ScreenScale); + + FPopUpRect.Left := rect^.x; + FPopUpRect.Top := rect^.y; + FPopUpRect.Right := rect^.x + rect^.width - 1; + FPopUpRect.Bottom := rect^.y + rect^.height - 1; +end; + +procedure TOSRExternalPumpBrowserFrm.chrmosrTooltip(Sender: TObject; const browser: ICefBrowser; var aText: ustring; out Result: Boolean); +begin + Panel1.hint := aText; + Panel1.ShowHint := (length(aText) > 0); + Result := True; +end; + +procedure TOSRExternalPumpBrowserFrm.ComboBox1Enter(Sender: TObject); +begin + chrmosr.SendFocusEvent(False); +end; + +function TOSRExternalPumpBrowserFrm.SendCompMessage(aMsg : cardinal) : boolean; +begin + case aMsg of + CEF_AFTERCREATED : Application.QueueAsyncCall(@BrowserCreated, 0); + CEF_BEFORECLOSE : Application.QueueAsyncCall(@BrowserCloseForm, 0); + CEF_PENDINGRESIZE : Application.QueueAsyncCall(@PendingResize, 0); + CEF_PENDINGINVALIDATE : Application.QueueAsyncCall(@PendingInvalidate, 0); + end; +end; + +function TOSRExternalPumpBrowserFrm.getModifiers(Shift: TShiftState): TCefEventFlags; +begin + Result := EVENTFLAG_NONE; + + if (ssShift in Shift) then Result := Result or EVENTFLAG_SHIFT_DOWN; + if (ssAlt in Shift) then Result := Result or EVENTFLAG_ALT_DOWN; + if (ssCtrl in Shift) then Result := Result or EVENTFLAG_CONTROL_DOWN; + if (ssLeft in Shift) then Result := Result or EVENTFLAG_LEFT_MOUSE_BUTTON; + if (ssRight in Shift) then Result := Result or EVENTFLAG_RIGHT_MOUSE_BUTTON; + if (ssMiddle in Shift) then Result := Result or EVENTFLAG_MIDDLE_MOUSE_BUTTON; +end; + +function TOSRExternalPumpBrowserFrm.GetButton(Button: TMouseButton): TCefMouseButtonType; +begin + case Button of + TMouseButton.mbRight : Result := MBT_RIGHT; + TMouseButton.mbMiddle : Result := MBT_MIDDLE; + else Result := MBT_LEFT; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.BrowserCreated(Data: PtrInt); +begin + Caption := 'Simple Lazarus OSR Browser'; + NavControlPnl.Enabled := True; +end; + +procedure TOSRExternalPumpBrowserFrm.BrowserCloseForm(Data: PtrInt); +begin + Close; +end; + +procedure TOSRExternalPumpBrowserFrm.PendingResize(Data: PtrInt); +begin + DoResize; +end; + +procedure TOSRExternalPumpBrowserFrm.PendingInvalidate(Data: PtrInt); +begin + Panel1.Invalidate; +end; + +procedure TOSRExternalPumpBrowserFrm.FormCloseQuery(Sender: TObject; var CanClose: Boolean); +begin + CanClose := FCanClose; + + if not(FClosing) then + begin + FClosing := True; + Visible := False; + chrmosr.CloseBrowser(True); + end; +end; + +procedure TOSRExternalPumpBrowserFrm.FormCreate(Sender: TObject); +begin + FbFirst := False; + FPopUpBitmap := nil; + FPopUpRect := rect(0, 0, 0, 0); + FShowPopUp := False; + FResizing := False; + FPendingResize := False; + FCanClose := False; + FClosing := False; + FResizeCS := TCriticalSection.Create; +end; + +procedure TOSRExternalPumpBrowserFrm.FormDestroy(Sender: TObject); +begin + if (FPopUpBitmap <> nil) then FreeAndNil(FPopUpBitmap); + if (FResizeCS <> nil) then FreeAndNil(FResizeCS); +end; + +procedure TOSRExternalPumpBrowserFrm.FormHide(Sender: TObject); +begin + chrmosr.SendFocusEvent(False); + chrmosr.WasHidden(True); +end; + +procedure TOSRExternalPumpBrowserFrm.FormShow(Sender: TObject); +begin + if chrmosr.Initialized then + begin + chrmosr.WasHidden(False); + chrmosr.SendFocusEvent(True); + end + else + begin + // opaque white background color + chrmosr.Options.BackgroundColor := CefColorSetARGB($FF, $FF, $FF, $FF); + chrmosr.DefaultURL := ComboBox1.Text; + + if not(chrmosr.CreateBrowser(nil, '')) then + Timer1.Enabled := True; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1Click(Sender: TObject); +begin + Panel1.SetFocus; +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); +var + TempEvent : TCefMouseEvent; +begin + Panel1.SetFocus; + + TempEvent.x := X; + TempEvent.y := Y; + TempEvent.modifiers := getModifiers(Shift); + DeviceToLogical(TempEvent, Panel1.ScreenScale); + chrmosr.SendMouseClickEvent(@TempEvent, GetButton(Button), False, 1); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); +var + TempEvent : TCefMouseEvent; +begin + TempEvent.x := x; + TempEvent.y := y; + TempEvent.modifiers := getModifiers(Shift); + DeviceToLogical(TempEvent, Panel1.ScreenScale); + chrmosr.SendMouseMoveEvent(@TempEvent, False); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1MouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); +var + TempEvent : TCefMouseEvent; +begin + TempEvent.x := X; + TempEvent.y := Y; + TempEvent.modifiers := getModifiers(Shift); + DeviceToLogical(TempEvent, Panel1.ScreenScale); + chrmosr.SendMouseClickEvent(@TempEvent, GetButton(Button), True, 1); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1Resize(Sender: TObject); +begin + DoResize; +end; + +procedure TOSRExternalPumpBrowserFrm.DoResize; +begin + try + FResizeCS.Acquire; + + if FResizing then + FPendingResize := True + else + if Panel1.BufferIsResized then + chrmosr.Invalidate(PET_VIEW) + else + begin + FResizing := True; + chrmosr.WasResized; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1Enter(Sender: TObject); +begin + chrmosr.SendFocusEvent(True); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1Exit(Sender: TObject); +begin + chrmosr.SendFocusEvent(False); +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); +var + TempKeyEvent : TCefKeyEvent; +begin + if (Key <> 0) and (chrmosr <> nil) then + begin + TempKeyEvent.kind := KEYEVENT_RAWKEYDOWN; + TempKeyEvent.modifiers := getModifiers(Shift); + TempKeyEvent.windows_key_code := Key; + TempKeyEvent.native_key_code := 0; + TempKeyEvent.is_system_key := ord(False); + TempKeyEvent.character := #0; + TempKeyEvent.unmodified_character := #0; + TempKeyEvent.focus_on_editable_field := ord(False); + + chrmosr.SendKeyEvent(@TempKeyEvent); + + if (Key in [VK_LEFT, VK_RIGHT, VK_UP, VK_DOWN, VK_TAB]) then Key := 0; + end; +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1KeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); +var + TempKeyEvent : TCefKeyEvent; +begin + if (Key <> 0) and (chrmosr <> nil) then + begin + TempKeyEvent.kind := KEYEVENT_KEYUP; + TempKeyEvent.modifiers := getModifiers(Shift); + TempKeyEvent.windows_key_code := Key; + TempKeyEvent.native_key_code := 0; + TempKeyEvent.is_system_key := ord(False); + TempKeyEvent.character := #0; + TempKeyEvent.unmodified_character := #0; + TempKeyEvent.focus_on_editable_field := ord(False); + + chrmosr.SendKeyEvent(@TempKeyEvent); + end; +end; + +procedure TOSRExternalPumpBrowserFrm.Panel1MouseWheel(Sender: TObject; Shift: TShiftState; + WheelDelta: Integer; MousePos: TPoint; var Handled: Boolean); +var + TempEvent : TCefMouseEvent; +begin + TempEvent.x := MousePos.x; + TempEvent.y := MousePos.y; + TempEvent.modifiers := getModifiers(Shift); + DeviceToLogical(TempEvent, Panel1.ScreenScale); + chrmosr.SendMouseWheelEvent(@TempEvent, 0, WheelDelta); +end; + +procedure TOSRExternalPumpBrowserFrm.SnapshotBtnClick(Sender: TObject); +begin + if SaveDialog1.Execute then Panel1.SaveToFile(SaveDialog1.FileName); +end; + +procedure TOSRExternalPumpBrowserFrm.SnapshotBtnEnter(Sender: TObject); +begin + chrmosr.SendFocusEvent(False); +end; + +procedure TOSRExternalPumpBrowserFrm.Timer1Timer(Sender: TObject); +begin + Timer1.Enabled := False; + + if not(chrmosr.CreateBrowser(nil, '')) and + not(chrmosr.Initialized) then + Timer1.Enabled := True; +end; + +end. diff --git a/demos/Lazarus/CustomResourceBrowser/00-Delete.bat b/demos/Lazarus_Linux/SimpleBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/00-Delete.bat rename to demos/Lazarus_Linux/SimpleBrowser2/00-Delete.bat diff --git a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.ico b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.ico similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.ico rename to demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.ico diff --git a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpi b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpi similarity index 97% rename from demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpi rename to demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpi index 49199e84..63a58329 100644 --- a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpi +++ b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpi @@ -51,7 +51,7 @@ <CompilerOptions> <Version Value="11"/> <Target> - <Filename Value="../../../../bin/SimpleBrowser2"/> + <Filename Value="../../../bin/SimpleBrowser2"/> </Target> <SearchPaths> <IncludeFiles Value="$(ProjOutDir)"/> diff --git a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpr b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpr similarity index 99% rename from demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpr rename to demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpr index fc9d3e1e..26442745 100644 --- a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lpr +++ b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lpr @@ -42,6 +42,7 @@ program SimpleBrowser2; uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, + cmem, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, uSimpleBrowser2, diff --git a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lps b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lps similarity index 98% rename from demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lps rename to demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lps index 9c3fa498..e65bf505 100644 --- a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.lps +++ b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.lps @@ -8,8 +8,8 @@ <Filename Value="SimpleBrowser2.lpr"/> <IsPartOfProject Value="True"/> <EditorIndex Value="1"/> - <TopLine Value="34"/> - <CursorPos Y="56"/> + <TopLine Value="27"/> + <CursorPos X="49" Y="58"/> <UsageCount Value="22"/> <Loaded Value="True"/> </Unit0> @@ -22,7 +22,7 @@ <UnitName Value="uSimpleBrowser2"/> <IsVisibleTab Value="True"/> <TopLine Value="122"/> - <CursorPos X="30" Y="139"/> + <CursorPos X="66" Y="149"/> <UsageCount Value="22"/> <Loaded Value="True"/> <LoadedDesigner Value="True"/> diff --git a/demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.res b/demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.res similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/SimpleBrowser2.res rename to demos/Lazarus_Linux/SimpleBrowser2/SimpleBrowser2.res diff --git a/demos/Lazarus/EditorBrowser/cef.inc b/demos/Lazarus_Linux/SimpleBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/EditorBrowser/cef.inc rename to demos/Lazarus_Linux/SimpleBrowser2/cef.inc diff --git a/demos/Lazarus/Linux/SimpleBrowser2/usimplebrowser2.lfm b/demos/Lazarus_Linux/SimpleBrowser2/usimplebrowser2.lfm similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/usimplebrowser2.lfm rename to demos/Lazarus_Linux/SimpleBrowser2/usimplebrowser2.lfm diff --git a/demos/Lazarus/Linux/SimpleBrowser2/usimplebrowser2.pas b/demos/Lazarus_Linux/SimpleBrowser2/usimplebrowser2.pas similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/usimplebrowser2.pas rename to demos/Lazarus_Linux/SimpleBrowser2/usimplebrowser2.pas diff --git a/demos/Lazarus/DOMVisitor/00-Delete.bat b/demos/Lazarus_Linux/SimpleOSRBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/DOMVisitor/00-Delete.bat rename to demos/Lazarus_Linux/SimpleOSRBrowser/00-Delete.bat diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.ico b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.ico similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.ico rename to demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.ico diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi similarity index 97% rename from demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi rename to demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi index af58b677..93fa39cd 100644 --- a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi +++ b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpi @@ -51,7 +51,7 @@ <CompilerOptions> <Version Value="11"/> <Target> - <Filename Value="../../../../bin/SimpleOSRBrowser"/> + <Filename Value="../../../bin/SimpleOSRBrowser"/> </Target> <SearchPaths> <IncludeFiles Value="$(ProjOutDir)"/> diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr similarity index 99% rename from demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr rename to demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr index 873dcb2b..528bd724 100644 --- a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr +++ b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lpr @@ -42,6 +42,7 @@ program SimpleOSRBrowser; uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, + cmem, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, uSimpleOSRBrowser, diff --git a/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps new file mode 100644 index 00000000..35084ca9 --- /dev/null +++ b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.lps @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="6"> + <Unit0> + <Filename Value="SimpleOSRBrowser.lpr"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <WindowIndex Value="-1"/> + <TopLine Value="13"/> + <CursorPos X="8" Y="45"/> + <UsageCount Value="23"/> + </Unit0> + <Unit1> + <Filename Value="usimpleosrbrowser.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="Form1"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="uSimpleOSRBrowser"/> + <IsVisibleTab Value="True"/> + <TopLine Value="165"/> + <CursorPos X="32" Y="726"/> + <UsageCount Value="23"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + </Unit1> + <Unit2> + <Filename Value="/usr/share/lazarus/2.0.6/lcl/lcltype.pp"/> + <UnitName Value="LCLType"/> + <EditorIndex Value="-1"/> + <TopLine Value="52"/> + <CursorPos X="3" Y="68"/> + <UsageCount Value="10"/> + </Unit2> + <Unit3> + <Filename Value="../../../../source/uCEFMiscFunctions.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="1889"/> + <CursorPos X="27" Y="1907"/> + <UsageCount Value="10"/> + </Unit3> + <Unit4> + <Filename Value="../../../../source/uCEFApplicationCore.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="432"/> + <CursorPos X="29" Y="445"/> + <UsageCount Value="10"/> + </Unit4> + <Unit5> + <Filename Value="/usr/share/fpcsrc/3.2.0/rtl/objpas/sysutils/finah.inc"/> + <EditorIndex Value="-1"/> + <CursorPos X="10" Y="33"/> + <UsageCount Value="10"/> + </Unit5> + </Units> + <JumpHistory Count="5" HistoryIndex="4"> + <Position1> + <Filename Value="usimpleosrbrowser.pas"/> + <Caret Line="137" Column="44" TopLine="124"/> + </Position1> + <Position2> + <Filename Value="usimpleosrbrowser.pas"/> + <Caret Line="138" Column="30" TopLine="124"/> + </Position2> + <Position3> + <Filename Value="usimpleosrbrowser.pas"/> + <Caret Line="389" Column="18" TopLine="360"/> + </Position3> + <Position4> + <Filename Value="usimpleosrbrowser.pas"/> + <Caret Line="575" Column="48" TopLine="555"/> + </Position4> + <Position5> + <Filename Value="usimpleosrbrowser.pas"/> + <Caret Line="581" Column="30" TopLine="555"/> + </Position5> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.res b/demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.res similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/SimpleOSRBrowser.res rename to demos/Lazarus_Linux/SimpleOSRBrowser/SimpleOSRBrowser.res diff --git a/demos/Lazarus/ExternalPumpBrowser/cef.inc b/demos/Lazarus_Linux/SimpleOSRBrowser/cef.inc similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/cef.inc rename to demos/Lazarus_Linux/SimpleOSRBrowser/cef.inc diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/usimpleosrbrowser.lfm b/demos/Lazarus_Linux/SimpleOSRBrowser/usimpleosrbrowser.lfm similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/usimpleosrbrowser.lfm rename to demos/Lazarus_Linux/SimpleOSRBrowser/usimpleosrbrowser.lfm diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/usimpleosrbrowser.pas b/demos/Lazarus_Linux/SimpleOSRBrowser/usimpleosrbrowser.pas similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/usimpleosrbrowser.pas rename to demos/Lazarus_Linux/SimpleOSRBrowser/usimpleosrbrowser.pas diff --git a/demos/Lazarus/EditorBrowser/00-Delete.bat b/demos/Lazarus_Linux/TinyBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/EditorBrowser/00-Delete.bat rename to demos/Lazarus_Linux/TinyBrowser2/00-Delete.bat diff --git a/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpi b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpi new file mode 100644 index 00000000..80187b17 --- /dev/null +++ b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpi @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <General> + <Flags> + <MainUnitHasUsesSectionForAllUnits Value="False"/> + <MainUnitHasCreateFormStatements Value="False"/> + <MainUnitHasTitleStatement Value="False"/> + <MainUnitHasScaledStatement Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> + <Title Value="TinyBrowser2"/> + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="2"> + <Unit0> + <Filename Value="TinyBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="uTinyBrowser2.pas"/> + <IsPartOfProject Value="True"/> + </Unit1> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\TinyBrowser2"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL -dUseCthreads"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpr b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpr new file mode 100644 index 00000000..5110ca93 --- /dev/null +++ b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lpr @@ -0,0 +1,68 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program TinyBrowser2; + +{$MODE Delphi} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + cmem, + {$ENDIF}{$ENDIF} + Interfaces, + uCEFApplication, + uTinyBrowser2 in 'uTinyBrowser2.pas'; + +{.$R *.res} + +{$IFDEF WIN32} + // CEF needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + CreateGlobalCEFApp; + + if GlobalCEFApp.StartMainProcess then + begin + GlobalCEFApp.RunMessageLoop; + DestroyTinyBrowser; + end; + + DestroyGlobalCEFApp; +end. diff --git a/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lps b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lps new file mode 100644 index 00000000..786413c9 --- /dev/null +++ b/demos/Lazarus_Linux/TinyBrowser2/TinyBrowser2.lps @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="5"> + <Unit0> + <Filename Value="TinyBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="28"/> + <CursorPos X="36" Y="66"/> + <UsageCount Value="21"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="uTinyBrowser2.pas"/> + <IsPartOfProject Value="True"/> + <IsVisibleTab Value="True"/> + <TopLine Value="83"/> + <CursorPos X="86" Y="108"/> + <UsageCount Value="21"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="..\..\..\source\uCEFChromiumCore.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="46"/> + <CursorPos X="95" Y="60"/> + <UsageCount Value="10"/> + </Unit2> + <Unit3> + <Filename Value="..\..\..\..\source\cef.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="22"/> + <CursorPos Y="43"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit3> + <Unit4> + <Filename Value="..\..\..\..\source\uCEFApplicationCore.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="2207"/> + <CursorPos Y="2239"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit4> + </Units> + <JumpHistory HistoryIndex="-1"/> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus/FullScreenBrowser/cef.inc b/demos/Lazarus_Linux/TinyBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/FullScreenBrowser/cef.inc rename to demos/Lazarus_Linux/TinyBrowser2/cef.inc diff --git a/demos/Lazarus_Linux/TinyBrowser2/uTinyBrowser2.pas b/demos/Lazarus_Linux/TinyBrowser2/uTinyBrowser2.pas new file mode 100644 index 00000000..8a454899 --- /dev/null +++ b/demos/Lazarus_Linux/TinyBrowser2/uTinyBrowser2.pas @@ -0,0 +1,193 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uTinyBrowser2; + +{$MODE Delphi} + +interface + +uses + SysUtils, + uCEFInterfaces, uCEFTypes, uCEFChromiumCore; + +type + TTinyBrowser2 = class + private + FChromium : TChromiumCore; + + procedure Chromium_OnClose(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction); + procedure Chromium_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + 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); + procedure Chromium_OnOpenUrlFromTab(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const targetUrl: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean; out Result: Boolean); + + public + constructor Create; + destructor Destroy; override; + procedure AfterConstruction; override; + end; + +procedure CreateGlobalCEFApp; +procedure DestroyTinyBrowser; + +implementation + +// This demo is similar to the cefsimple demo in the official CEF project. + +// It doesn't use LCL to create forms from Lazarus code. +// It just uses CEF to create a browser window as if it was a popup browser window. + +// This browser doesn't use multiple threads to handle the browser and it doesn't use an external message pump. +// For this reason we have to call GlobalCEFApp.RunMessageLoop to let CEF handle the message loop and +// GlobalCEFApp.QuitMessageLoop when the browser has been destroyed. + +// The destruction steps are much simpler for that reason. +// In this demo it's only necessary to implement the TChromium.OnClose and TChromium.OnBeforeClose events. +// The TChromium.OnClose event only sets aAction to cbaClose to continue closing the browser. +// The TChromium.OnBeforeClose event calls GlobalCEFApp.QuitMessageLoop because the browser has been destroyed +// and it's necessary to close the message loop. + +uses + uCEFApplication, uCEFConstants; + +var + TinyBrowser : TTinyBrowser2 = nil; + +procedure GlobalCEFApp_OnContextInitialized; +begin + TinyBrowser := TTinyBrowser2.Create; +end; + +procedure CreateGlobalCEFApp; +var + TempHome, TempBinDir : ustring; +begin + TempHome := IncludeTrailingPathDelimiter(GetEnvironmentVariable('HOME')); + TempBinDir := TempHome + 'Lazarus/CEF4Delphi/bin'; + + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.MultiThreadedMessageLoop := False; + GlobalCEFApp.ExternalMessagePump := False; + GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized; + GlobalCEFApp.SetCurrentDir := True; + + // This is a workaround for the CEF4Delphi issue #324 : + // https://github.com/salvadordf/CEF4Delphi/issues/324 + GlobalCEFApp.DisableFeatures := 'WinUseBrowserSpellChecker'; + + if DirectoryExists(TempBinDir) then + begin + GlobalCEFApp.FrameworkDirPath := TempBinDir; + GlobalCEFApp.ResourcesDirPath := TempBinDir; + GlobalCEFApp.LocalesDirPath := TempBinDir + '/locales'; + end; + + // Add a debug log in the BIN directory + GlobalCEFApp.LogFile := 'cef.log'; + GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE; +end; + +procedure DestroyTinyBrowser; +begin + if (TinyBrowser <> nil) then + begin + TinyBrowser.Free; + TinyBrowser := nil; + end; +end; + +constructor TTinyBrowser2.Create; +begin + inherited Create; + + FChromium := nil; +end; + +destructor TTinyBrowser2.Destroy; +begin + if (FChromium <> nil) then + begin + FChromium.Free; + FChromium := nil; + end; + + inherited Destroy; +end; + +procedure TTinyBrowser2.AfterConstruction; +begin + inherited AfterConstruction; + + FChromium := TChromiumCore.Create(nil); + FChromium.DefaultURL := 'https://www.google.com'; + FChromium.OnClose := Chromium_OnClose; + FChromium.OnBeforeClose := Chromium_OnBeforeClose; + FChromium.OnBeforePopup := Chromium_OnBeforePopup; + FChromium.OnOpenUrlFromTab := Chromium_OnOpenUrlFromTab; + FChromium.CreateBrowser('Tiny Browser 2'); +end; + +procedure TTinyBrowser2.Chromium_OnClose(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction); +begin + aAction := cbaClose; +end; + +procedure TTinyBrowser2.Chromium_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + GlobalCEFApp.QuitMessageLoop; +end; + +procedure TTinyBrowser2.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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TTinyBrowser2.Chromium_OnOpenUrlFromTab(Sender: TObject; + const browser: ICefBrowser; const frame: ICefFrame; + const targetUrl: ustring; targetDisposition: TCefWindowOpenDisposition; + userGesture: Boolean; out Result: Boolean); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +end. diff --git a/demos/Lazarus/ExternalPumpBrowser/00-Delete.bat b/demos/Lazarus_Windows/ConsoleBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/00-Delete.bat rename to demos/Lazarus_Windows/ConsoleBrowser2/00-Delete.bat diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpi b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpi new file mode 100644 index 00000000..0e76094b --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpi @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <General> + <Flags> + <MainUnitHasUsesSectionForAllUnits Value="False"/> + <MainUnitHasCreateFormStatements Value="False"/> + <MainUnitHasTitleStatement Value="False"/> + <MainUnitHasScaledStatement Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> + <Title Value="ConsoleBrowser2"/> + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="3"> + <Unit0> + <Filename Value="ConsoleBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="uEncapsulatedBrowser.pas"/> + <IsPartOfProject Value="True"/> + </Unit1> + <Unit2> + <Filename Value="uCEFBrowserThread.pas"/> + <IsPartOfProject Value="True"/> + </Unit2> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\ConsoleBrowser2"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpr b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpr new file mode 100644 index 00000000..45e5ecd2 --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lpr @@ -0,0 +1,111 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program ConsoleBrowser2; + +{$MODE Delphi} + +{$APPTYPE CONSOLE} + +{.$R *.res} + +uses + SysUtils, Interfaces, + uCEFApplication, + uEncapsulatedBrowser in 'uEncapsulatedBrowser.pas', + uCEFBrowserThread in 'uCEFBrowserThread.pas'; + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +// This demo navigates to a webpage, captures the browser screen and saves it as a bitmap file called "snapshot.bmp" + +// ConsoleBrowser2 is a console application without a user interface. For this reason the browser is in +// "off-screen mode" (OSR mode), it's encamsulated in a custom thread and it uses a different EXE for the +// CEF subprocesses (ConsoleBrowser2_sp.exe). + +// In order to test this demo you need to build the "ConsoleBrowser2_sp.lpr" project too !!! + +// While the custom browser thread is loading the webpage and capturing the screen, the console application is +// waiting for an Event. + +// ConsoleBrowser2 reads the "/url" parameter and uses that URL to navigate and capture the screen. +// For example : ConsoleBrowser2.exe /url=https://www.briskbard.com +// If you need to debug this demo in Lazarus using http://www.example.com click on the "Run->Run Parameters" menu option, +// and type "/url=http://www.example.com" (without quotes) in the "Command line parameters" box. + +// By default the browser uses a virtual screen size of 1024x728 with 96 DPI (screen scale = 1) +// If you need a different resolution or scale just edit those values in TEncapsulatedBrowser.Create +// or add new command line switches with the new information. + +// The browser captures the screen when the main frame is loaded but some web pages need some extra time to finish. +// This demo uses a 500 ms delay to avoid this problem and you can modify this value in TEncapsulatedBrowser.Create + +// CEF is configured in this demo to use "in memory" cache. As a result of this, the browser will always download +// all the web page resources. Remember that if you switch to a local directory for the cache you will have problems +// when you run several instances of this demo at the same time because Chromium doesn't allow sharing the same cache +// by different processes. + +// This demo is configured to load the CEF binaries in the same directory were ConsoleBrowser2.exe is located but you +// can set a different directory for the binaries by setting the GlobalCEFApp.FrameworkDirPath, +// GlobalCEFApp.ResourcesDirPath and GlobalCEFApp.LocalesDirPath properties inside CreateGlobalCEFApp. +// See the SimpleBrowser2 demo for more details. + +// CEF is configured to use ConsoleBrowser2_sp.exe for the subprocesses and it tries to find it in the same directory as +// ConsoleBrowser2.exe but it's possible to use a different location for that EXE if you set a custom path in +// GlobalCEFApp.BrowserSubprocessPath. + +// Most of the GlobalCEFApp properties must be the same in the main EXE and the EXE for the subprocesses. If you modify +// them in CreateGlobalCEFApp then you'll also have to copy those property values in ConsoleBrowser2_sp.dpr +// See the "SubProcess" demo for more details. + +begin + try + try + CreateGlobalCEFApp; + if WaitForMainAppEvent then + WriteResult; + except + on E: Exception do + Writeln(E.ClassName, ': ', E.Message); + end; + finally + DestroyGlobalCEFApp; + end; +end. diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lps b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lps new file mode 100644 index 00000000..6d1b57be --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2.lps @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="5"> + <Unit0> + <Filename Value="ConsoleBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + <IsVisibleTab Value="True"/> + <TopLine Value="37"/> + <CursorPos X="101" Y="71"/> + <UsageCount Value="20"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="uEncapsulatedBrowser.pas"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="203"/> + <CursorPos X="31" Y="225"/> + <UsageCount Value="20"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="uCEFBrowserThread.pas"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="86"/> + <CursorPos Y="98"/> + <UsageCount Value="20"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit2> + <Unit3> + <Filename Value="..\WebpageSnapshot\uCEFBrowserThread.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="421"/> + <CursorPos X="31" Y="445"/> + <UsageCount Value="10"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit3> + <Unit4> + <Filename Value="C:\lazarus\fpc\3.2.0\source\packages\fcl-base\src\syncobjs.pp"/> + <EditorIndex Value="-1"/> + <TopLine Value="64"/> + <CursorPos X="16" Y="80"/> + <UsageCount Value="10"/> + </Unit4> + </Units> + <JumpHistory HistoryIndex="-1"/> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="1" ActiveMode="default"> + <Mode0 Name="default"/> + </Modes> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpi b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpi new file mode 100644 index 00000000..c88d2f04 --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpi @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <General> + <Flags> + <MainUnitHasUsesSectionForAllUnits Value="False"/> + <MainUnitHasCreateFormStatements Value="False"/> + <MainUnitHasTitleStatement Value="False"/> + <MainUnitHasScaledStatement Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> + <Title Value="ConsoleBrowser2_sp"/> + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="1"> + <Unit0> + <Filename Value="ConsoleBrowser2_sp.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\ConsoleBrowser2_sp"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpr b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpr new file mode 100644 index 00000000..88c28253 --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lpr @@ -0,0 +1,61 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program ConsoleBrowser2_sp; + +{$MODE Delphi} + +{$I cef.inc} + +uses + uCEFApplicationCore; + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + GlobalCEFApp := TCefApplicationCore.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; + GlobalCEFApp.ShowMessageDlg := False; + GlobalCEFApp.BlinkSettings := 'hideScrollbars'; + GlobalCEFApp.StartSubProcess; + DestroyGlobalCEFApp; +end. + diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lps b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lps new file mode 100644 index 00000000..e300a581 --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/ConsoleBrowser2_sp.lps @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="1"> + <Unit0> + <Filename Value="ConsoleBrowser2_sp.lpr"/> + <IsPartOfProject Value="True"/> + <IsVisibleTab Value="True"/> + <UsageCount Value="20"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + </Units> + <JumpHistory HistoryIndex="-1"/> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus/JavaScript/JSDialog/cef.inc b/demos/Lazarus_Windows/ConsoleBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/cef.inc rename to demos/Lazarus_Windows/ConsoleBrowser2/cef.inc diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/uCEFBrowserThread.pas b/demos/Lazarus_Windows/ConsoleBrowser2/uCEFBrowserThread.pas new file mode 100644 index 00000000..fed949de --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/uCEFBrowserThread.pas @@ -0,0 +1,695 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uCEFBrowserThread; + +{$MODE Delphi} + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, System.SyncObjs, System.Math, + {$ELSE} + Windows, Messages, SysUtils, Classes, Graphics, SyncObjs, Math, + {$ENDIF} + uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, uCEFChromiumCore, uCEFMiscFunctions; + +type + TVirtualBufferPanel = class(TBufferPanel) + protected + FCustomScale : single; + + function GetScreenScale : single; override; + + public + property CustomScale : single read FCustomScale write FCustomScale; + end; + + TCEFBrowserThread = class(TThread) + protected + FBrowser : TChromium; + FPanel : TVirtualBufferPanel; + FPanelSize : TSize; + FScreenScale : single; + FPopUpBitmap : TBitmap; + FPopUpRect : TRect; + FResizeCS : TCriticalSection; + FBrowserInfoCS : TCriticalSection; + FShowPopUp : boolean; + FClosing : boolean; + FResizing : boolean; + FPendingResize : boolean; + FInitialized : boolean; + FDefaultURL : ustring; + FSnapshot : TBitmap; + FDelayMs : integer; + FOnSnapshotAvailable : TNotifyEvent; + FOnError : TNotifyEvent; + FErrorCode : integer; + FErrorText : ustring; + FFailedUrl : ustring; + FPendingUrl : ustring; + + function GetErrorCode : integer; + function GetErrorText : ustring; + function GetFailedUrl : ustring; + function GetInitialized : boolean; + + procedure Panel_OnResize(Sender: TObject); + + procedure Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, aHeight: Integer); + procedure Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); + procedure Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); + procedure Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); + procedure Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); + procedure Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); + procedure Browser_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); + procedure Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); + procedure Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); + + procedure Resize; + function CreateBrowser : boolean; + procedure TakeSnapshot; + procedure CloseBrowser; + procedure DoOnError; + procedure InitError; + procedure WebpagePostProcessing; + procedure LoadPendingURL; + procedure Execute; override; + + public + constructor Create(const aDefaultURL : ustring; aWidth, aHeight : integer; aDelayMs : integer = 500; const aScreenScale : single = 1); + destructor Destroy; override; + procedure AfterConstruction; override; + function TerminateBrowserThread : boolean; + function CopySnapshot(var aSnapshot : TBitmap) : boolean; + function SaveSnapshotToFile(const aPath : ustring) : boolean; + procedure LoadUrl(const aURL : ustring); + + property ErrorCode : integer read GetErrorCode; + property ErrorText : ustring read GetErrorText; + property FailedUrl : ustring read GetFailedUrl; + property Initialized : boolean read GetInitialized; + + property OnSnapshotAvailable : TNotifyEvent read FOnSnapshotAvailable write FOnSnapshotAvailable; + property OnError : TNotifyEvent read FOnError write FOnError; + end; + +implementation + +const + CEF_WEBPAGE_LOADED_MSG = WM_APP + 1; + CEF_WEBPAGE_ERROR_MSG = WM_APP + 2; + CEF_CLOSE_BROWSER_MSG = WM_APP + 3; + CEF_LOAD_PENDING_URL_MSG = WM_APP + 4; + +// ************************************* +// ******** TVirtualBufferPanel ******** +// ************************************* + +function TVirtualBufferPanel.GetScreenScale : single; +begin + Result := FCustomScale; +end; + + +// ************************************* +// ********* TCEFBrowserThread ********* +// ************************************* + +constructor TCEFBrowserThread.Create(const aDefaultURL : ustring; aWidth, aHeight, aDelayMs : integer; const aScreenScale : single); +begin + inherited Create(True); + + FreeOnTerminate := False; + FInitialized := False; + FBrowser := nil; + FPanel := nil; + FPanelSize.cx := aWidth; + FPanelSize.cy := aHeight; + FScreenScale := aScreenScale; + FDefaultURL := aDefaultURL; + FPopUpBitmap := nil; + FPopUpRect := rect(0, 0, 0, 0); + FShowPopUp := False; + FResizing := False; + FPendingResize := False; + FResizeCS := nil; + FBrowserInfoCS := nil; + FSnapshot := nil; + FDelayMs := aDelayMs; + FOnSnapshotAvailable := nil; + FOnError := nil; + FClosing := False; +end; + +destructor TCEFBrowserThread.Destroy; +begin + if (FBrowser <> nil) then + FreeAndNil(FBrowser); + + if (FPanel <> nil) then + FreeAndNil(FPanel); + + if (FPopUpBitmap <> nil) then + FreeAndNil(FPopUpBitmap); + + if (FSnapshot <> nil) then + FreeAndNil(FSnapshot); + + if (FResizeCS <> nil) then + FreeAndNil(FResizeCS); + + if (FBrowserInfoCS <> nil) then + FreeAndNil(FBrowserInfoCS); + + inherited Destroy; +end; + +procedure TCEFBrowserThread.AfterConstruction; +begin + inherited AfterConstruction; + + FResizeCS := TCriticalSection.Create; + FBrowserInfoCS := TCriticalSection.Create; + + FPanel := TVirtualBufferPanel.Create(nil); + FPanel.CustomScale := FScreenScale; + FPanel.Width := FPanelSize.cx; + FPanel.Height := FPanelSize.cy; + FPanel.OnResize := Panel_OnResize; + + FBrowser := TChromium.Create(nil); + FBrowser.DefaultURL := FDefaultURL; + FBrowser.Options.BackgroundColor := CefColorSetARGB($FF, $FF, $FF, $FF); + FBrowser.OnAfterCreated := Browser_OnAfterCreated; + FBrowser.OnPaint := Browser_OnPaint; + FBrowser.OnGetViewRect := Browser_OnGetViewRect; + FBrowser.OnGetScreenPoint := Browser_OnGetScreenPoint; + FBrowser.OnGetScreenInfo := Browser_OnGetScreenInfo; + FBrowser.OnPopupShow := Browser_OnPopupShow; + FBrowser.OnPopupSize := Browser_OnPopupSize; + FBrowser.OnBeforePopup := Browser_OnBeforePopup; + FBrowser.OnBeforeClose := Browser_OnBeforeClose; + FBrowser.OnLoadError := Browser_OnLoadError; + FBrowser.OnLoadingStateChange := Browser_OnLoadingStateChange; +end; + +function TCEFBrowserThread.GetErrorCode : integer; +begin + FBrowserInfoCS.Acquire; + Result := FErrorCode; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetErrorText : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FErrorText; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetFailedUrl : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FFailedUrl; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetInitialized : boolean; +begin + Result := False; + + if assigned(FBrowserInfoCS) and assigned(FBrowser) then + try + FBrowserInfoCS.Acquire; + Result := FInitialized and FBrowser.Initialized; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.CopySnapshot(var aSnapshot : TBitmap) : boolean; +begin + Result := False; + + if FClosing or Terminated or (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + if (aSnapshot = nil) then + begin + aSnapshot := TBitmap.Create; + aSnapshot.PixelFormat := pf32bit; + aSnapshot.HandleType := bmDIB; + aSnapshot.Width := FSnapshot.Width; + aSnapshot.Height := FSnapshot.Height; + end; + + aSnapshot.Assign(FSnapshot); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.CopySnapshot', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.SaveSnapshotToFile(const aPath : ustring) : boolean; +begin + Result := False; + + if (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + FSnapshot.SaveToFile(aPath); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.SaveSnapshotToFile', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.LoadUrl(const aURL : ustring); +begin + if FClosing or Terminated or (FBrowserInfoCS = nil) then + exit; + + if Initialized then + try + FBrowserInfoCS.Acquire; + FPendingUrl := aURL; + PostThreadMessage(ThreadID, CEF_LOAD_PENDING_URL_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.TerminateBrowserThread : boolean; +begin + Result := Initialized and + PostThreadMessage(ThreadID, CEF_CLOSE_BROWSER_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Panel_OnResize(Sender: TObject); +begin + Resize; +end; + +procedure TCEFBrowserThread.Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); +begin + FBrowserInfoCS.Acquire; + FInitialized := True; + FBrowserInfoCS.Release; +end; + +procedure TCEFBrowserThread.Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, aHeight: Integer); +var + src, dst: PByte; + i, j, TempLineSize, TempSrcOffset, TempDstOffset, SrcStride : Integer; + n : NativeUInt; + TempWidth, TempHeight : integer; + TempBufferBits : Pointer; + TempForcedResize : boolean; + TempBitmap : TBitmap; + TempSrcRect : TRect; +begin + try + FResizeCS.Acquire; + TempForcedResize := False; + + if FPanel.BeginBufferDraw then + begin + if (kind = PET_POPUP) then + begin + if (FPopUpBitmap = nil) or + (aWidth <> FPopUpBitmap.Width) or + (aHeight <> FPopUpBitmap.Height) then + begin + if (FPopUpBitmap <> nil) then FPopUpBitmap.Free; + + FPopUpBitmap := TBitmap.Create; + FPopUpBitmap.PixelFormat := pf32bit; + FPopUpBitmap.HandleType := bmDIB; + FPopUpBitmap.Width := aWidth; + FPopUpBitmap.Height := aHeight; + end; + + TempBitmap := FPopUpBitmap; + TempBitmap.BeginUpdate; + + TempWidth := FPopUpBitmap.Width; + TempHeight := FPopUpBitmap.Height; + end + else + begin + TempForcedResize := FPanel.UpdateBufferDimensions(aWidth, aHeight) or not(FPanel.BufferIsResized(False)); + + TempBitmap := FPanel.Buffer; + TempBitmap.BeginUpdate; + + TempWidth := FPanel.BufferWidth; + TempHeight := FPanel.BufferHeight; + end; + + SrcStride := aWidth * SizeOf(TRGBQuad); + n := 0; + + while (n < dirtyRectsCount) do + begin + if (dirtyRects^[n].x >= 0) and (dirtyRects^[n].y >= 0) then + begin + TempLineSize := min(dirtyRects^[n].width, TempWidth - dirtyRects^[n].x) * SizeOf(TRGBQuad); + + if (TempLineSize > 0) then + begin + TempSrcOffset := ((dirtyRects^[n].y * aWidth) + dirtyRects^[n].x) * SizeOf(TRGBQuad); + TempDstOffset := (dirtyRects^[n].x * SizeOf(TRGBQuad)); + + src := @PByte(buffer)[TempSrcOffset]; + + i := 0; + j := min(dirtyRects^[n].height, TempHeight - dirtyRects^[n].y); + + while (i < j) do + begin + TempBufferBits := TempBitmap.Scanline[dirtyRects^[n].y + i]; + dst := @PByte(TempBufferBits)[TempDstOffset]; + + Move(src^, dst^, TempLineSize); + + Inc(src, SrcStride); + inc(i); + end; + end; + end; + + inc(n); + end; + + TempBitmap.EndUpdate; + + if FShowPopup and (FPopUpBitmap <> nil) then + begin + TempSrcRect := Rect(0, 0, + min(FPopUpRect.Right - FPopUpRect.Left, FPopUpBitmap.Width), + min(FPopUpRect.Bottom - FPopUpRect.Top, FPopUpBitmap.Height)); + + FPanel.BufferDraw(FPopUpBitmap, TempSrcRect, FPopUpRect); + end; + + FPanel.EndBufferDraw; + + if (kind = PET_VIEW) then + begin + if TempForcedResize or FPendingResize then + PostThreadMessage(ThreadID, CEF_PENDINGRESIZE, 0, 0); + + FResizing := False; + FPendingResize := False; + end; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); +begin + rect.x := 0; + rect.y := 0; + rect.width := DeviceToLogical(FPanel.Width, FScreenScale); + rect.height := DeviceToLogical(FPanel.Height, FScreenScale); +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); +begin + screenX := LogicalToDevice(viewX, FScreenScale); + screenY := LogicalToDevice(viewY, FScreenScale); + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); +var + TempRect : TCEFRect; +begin + TempRect.x := 0; + TempRect.y := 0; + TempRect.width := DeviceToLogical(FPanel.Width, FScreenScale); + TempRect.height := DeviceToLogical(FPanel.Height, FScreenScale); + + screenInfo.device_scale_factor := FScreenScale; + screenInfo.depth := 0; + screenInfo.depth_per_component := 0; + screenInfo.is_monochrome := Ord(False); + screenInfo.rect := TempRect; + screenInfo.available_rect := TempRect; + + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); +begin + if show then + FShowPopUp := True + else + begin + FShowPopUp := False; + FPopUpRect := rect(0, 0, 0, 0); + + if (FBrowser <> nil) then FBrowser.Invalidate(PET_VIEW); + end; +end; + +procedure TCEFBrowserThread.Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); +begin + LogicalToDevice(rect^, FScreenScale); + + FPopUpRect.Left := rect.x; + FPopUpRect.Top := rect.y; + FPopUpRect.Right := rect.x + rect.width - 1; + FPopUpRect.Bottom := rect.y + rect.height - 1; +end; + +procedure TCEFBrowserThread.Browser_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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TCEFBrowserThread.Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + PostThreadMessage(ThreadID, WM_QUIT, 0, 0); +end; + +procedure TCEFBrowserThread.Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); +begin + if not(FClosing) and not(Terminated) and (frame <> nil) and frame.IsValid and frame.IsMain then + try + FBrowserInfoCS.Acquire; + + FErrorCode := errorCode; + FErrorText := errorText; + FFailedUrl := failedUrl; + + PostThreadMessage(ThreadID, CEF_WEBPAGE_ERROR_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); +begin + if not(FClosing) and not(Terminated) and not(isLoading) then + PostThreadMessage(ThreadID, CEF_WEBPAGE_LOADED_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Resize; +begin + if FClosing or Terminated or (FPanel = nil) or (FResizeCS = nil) or (FBrowser = nil) then + exit; + + try + FResizeCS.Acquire; + + if FResizing then + FPendingResize := True + else + if FPanel.BufferIsResized then + FBrowser.Invalidate(PET_VIEW) + else + begin + FResizing := True; + FBrowser.WasResized; + end; + finally + FResizeCS.Release; + end; +end; + +function TCEFBrowserThread.CreateBrowser : boolean; +begin + Result := (FBrowser <> nil) and FBrowser.CreateBrowser; +end; + +procedure TCEFBrowserThread.LoadPendingURL; +begin + if FClosing or Terminated or (FBrowser = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (length(FPendingURL) > 0) then + begin + FBrowser.LoadURL(FPendingURL); + FPendingURL := ''; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.WebpagePostProcessing; +begin + if FClosing or Terminated then + exit; + + if (FDelayMs > 0) then + sleep(FDelayMs); + + TakeSnapshot; + + if assigned(FOnSnapshotAvailable) then FOnSnapshotAvailable(self); +end; + +procedure TCEFBrowserThread.TakeSnapshot; +begin + if (FPanel = nil) or (FPanel.Buffer = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (FSnapshot = nil) then + begin + FSnapshot := TBitmap.Create; + FSnapshot.PixelFormat := pf32bit; + FSnapshot.HandleType := bmDIB; + FSnapshot.Width := FPanel.BufferWidth; + FSnapshot.Height := FPanel.BufferHeight; + end; + + FSnapshot.Assign(FPanel.Buffer); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.CloseBrowser; +begin + if not(FClosing) and assigned(FBrowser) then + begin + FClosing := True; + FBrowser.CloseBrowser(True); + end; +end; + +procedure TCEFBrowserThread.DoOnError; +begin + if assigned(FOnError) then + FOnError(self); +end; + +procedure TCEFBrowserThread.InitError; +begin + FBrowserInfoCS.Acquire; + FErrorText := 'There was an error initializing the CEF browser.'; + FBrowserInfoCS.Release; + DoOnError; +end; + +procedure TCEFBrowserThread.Execute; +var + TempCont : boolean; + TempMsg : TMsg; +begin + if CreateBrowser then + begin + TempCont := True; + PeekMessage(TempMsg, 0, WM_USER, WM_USER, PM_NOREMOVE); + + while TempCont and GetMessage(TempMsg, 0, 0, 0) and not(Terminated) do + begin + case TempMsg.Message of + CEF_PENDINGRESIZE : Resize; + CEF_CLOSE_BROWSER_MSG : CloseBrowser; + CEF_LOAD_PENDING_URL_MSG : LoadPendingURL; + CEF_WEBPAGE_LOADED_MSG : WebpagePostProcessing; + CEF_WEBPAGE_ERROR_MSG : DoOnError; + WM_QUIT : TempCont := False; + end; + + DispatchMessage(TempMsg); + end; + end + else + InitError; +end; + +end. diff --git a/demos/Lazarus_Windows/ConsoleBrowser2/uEncapsulatedBrowser.pas b/demos/Lazarus_Windows/ConsoleBrowser2/uEncapsulatedBrowser.pas new file mode 100644 index 00000000..748571c6 --- /dev/null +++ b/demos/Lazarus_Windows/ConsoleBrowser2/uEncapsulatedBrowser.pas @@ -0,0 +1,231 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uEncapsulatedBrowser; + +{$MODE Delphi} + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + System.SyncObjs, System.SysUtils, + {$ELSE} + SyncObjs, SysUtils, + {$ENDIF} + uCEFTypes, uCEFBrowserThread; + +type + TEncapsulatedBrowser = class + protected + FThread : TCEFBrowserThread; + FWidth : integer; + FHeight : integer; + FDelayMs : integer; + FScale : single; + FSnapshotPath : ustring; + FErrorText : ustring; + + procedure Thread_OnError(Sender: TObject); + procedure Thread_OnSnapshotAvailable(Sender: TObject); + + public + constructor Create; + destructor Destroy; override; + procedure LoadURL(const aURL : string); + + property Width : integer read FWidth write FWidth; + property Height : integer read FHeight write FHeight; + property DelayMs : integer read FDelayMs write FDelayMs; + property Scale : single read FScale write FScale; + property SnapshotPath : ustring read FSnapshotPath write FSnapshotPath; + property ErrorText : ustring read FErrorText; + end; + +procedure CreateGlobalCEFApp; +function WaitForMainAppEvent : boolean; +procedure WriteResult; + +implementation + +uses + uCEFApplication; + +var + MainAppEvent : TSimpleEvent; + EncapsulatedBrowser : TEncapsulatedBrowser = nil; + +procedure GlobalCEFApp_OnContextInitialized; +var + TempParam, TempURL : ustring; +begin + TempURL := ''; + + // This demo reads the "/url" parameter to load it as the default URL in the browser. + // For example : ConsoleBrowser2.exe /url=https://www.briskbard.com + if (ParamCount > 0) then + begin + TempParam := paramstr(1); + + if (Copy(TempParam, 1, 5) = '/url=') then + begin + TempURL := trim(Copy(TempParam, 6, length(TempParam))); + if (length(TempURL) > 0) then WriteLn('Loading ' + TempURL); + end; + end; + + if (length(TempURL) = 0) then + begin + TempURL := 'https://www.google.com'; + WriteLn('No URL has been specified. Using the default...'); + end; + + EncapsulatedBrowser := TEncapsulatedBrowser.Create; + EncapsulatedBrowser.LoadURL(TempURL); +end; + +function WaitForMainAppEvent : boolean; +begin + Result := True; + + // Wait for 1 minute max. + if (MainAppEvent.WaitFor(60000) = wrTimeout) then + begin + WriteLn('Timeout expired!'); + Result := False; + end; +end; + +procedure WriteResult; +begin + if (EncapsulatedBrowser = nil) then + WriteLn('There was a problem in the browser initialization') + else + if (length(EncapsulatedBrowser.ErrorText) > 0) then + WriteLn(EncapsulatedBrowser.ErrorText) + else + WriteLn('Snapshot saved successfully as ' + EncapsulatedBrowser.SnapshotPath); +end; + +procedure CreateGlobalCEFApp; +begin + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; + GlobalCEFApp.ShowMessageDlg := False; // This demo shouldn't show any window, just console messages. + GlobalCEFApp.BrowserSubprocessPath := 'ConsoleBrowser2_sp.exe'; // This is the other EXE for the CEF subprocesses. It's on the same directory as this app. + GlobalCEFApp.BlinkSettings := 'hideScrollbars'; // This setting removes all scrollbars to capture a cleaner snapshot + GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized; + GlobalCEFApp.StartMainProcess; +end; + +constructor TEncapsulatedBrowser.Create; +begin + inherited Create; + + FThread := nil; + FWidth := 1024; + FHeight := 768; + FDelayMs := 500; + FScale := 1; // This is the relative scale to a 96 DPI screen. It's calculated with the formula : scale = custom_DPI / 96 + FSnapshotPath := 'snapshot.bmp'; + FErrorText := ''; +end; + +destructor TEncapsulatedBrowser.Destroy; +begin + if (FThread <> nil) then + begin + if FThread.TerminateBrowserThread then + FThread.WaitFor; + + FreeAndNil(FThread); + end; + + inherited Destroy; +end; + +procedure TEncapsulatedBrowser.LoadURL(const aURL : string); +begin + if (FThread = nil) then + begin + FThread := TCEFBrowserThread.Create(aURL, FWidth, FHeight, FDelayMs, FScale); + FThread.OnError := Thread_OnError; + FThread.OnSnapshotAvailable := Thread_OnSnapshotAvailable; + FThread.Start; + end + else + FThread.LoadUrl(aURL); +end; + +procedure TEncapsulatedBrowser.Thread_OnError(Sender: TObject); +begin + // This code is executed in the TCEFBrowserThread thread context while the main application thread is waiting for MainAppEvent. + + FErrorText := 'Error'; + + if (FThread.ErrorCode <> 0) then + FErrorText := FErrorText + ' ' + inttostr(FThread.ErrorCode); + + FErrorText := FErrorText + ' : ' + FThread.ErrorText; + + if (length(FThread.FailedUrl) > 0) then + FErrorText := FErrorText + ' - ' + FThread.FailedUrl; + + MainAppEvent.SetEvent; +end; + +procedure TEncapsulatedBrowser.Thread_OnSnapshotAvailable(Sender: TObject); +begin + // This code is executed in the TCEFBrowserThread thread context while the main application thread is waiting for MainAppEvent. + + if not(FThread.SaveSnapshotToFile(FSnapshotPath)) then + FErrorText := 'There was an error copying the snapshot'; + + MainAppEvent.SetEvent; +end; + +initialization + MainAppEvent := TSimpleEvent.Create; + +finalization + MainAppEvent.Free; + if (EncapsulatedBrowser <> nil) then FreeAndNil(EncapsulatedBrowser); + +end. diff --git a/demos/Lazarus/FullScreenBrowser/00-Delete.bat b/demos/Lazarus_Windows/CookieVisitor/00-Delete.bat similarity index 100% rename from demos/Lazarus/FullScreenBrowser/00-Delete.bat rename to demos/Lazarus_Windows/CookieVisitor/00-Delete.bat diff --git a/demos/Lazarus/CookieVisitor/CookieVisitor.lpi b/demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lpi similarity index 100% rename from demos/Lazarus/CookieVisitor/CookieVisitor.lpi rename to demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lpi diff --git a/demos/Lazarus/CookieVisitor/CookieVisitor.lpr b/demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lpr similarity index 100% rename from demos/Lazarus/CookieVisitor/CookieVisitor.lpr rename to demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lpr diff --git a/demos/Lazarus/CookieVisitor/CookieVisitor.lps b/demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lps similarity index 100% rename from demos/Lazarus/CookieVisitor/CookieVisitor.lps rename to demos/Lazarus_Windows/CookieVisitor/CookieVisitor.lps diff --git a/demos/Lazarus/JavaScript/JSEval/cef.inc b/demos/Lazarus_Windows/CookieVisitor/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/cef.inc rename to demos/Lazarus_Windows/CookieVisitor/cef.inc diff --git a/demos/Lazarus/CookieVisitor/uCookieVisitor.lfm b/demos/Lazarus_Windows/CookieVisitor/uCookieVisitor.lfm similarity index 100% rename from demos/Lazarus/CookieVisitor/uCookieVisitor.lfm rename to demos/Lazarus_Windows/CookieVisitor/uCookieVisitor.lfm diff --git a/demos/Lazarus/CookieVisitor/uCookieVisitor.pas b/demos/Lazarus_Windows/CookieVisitor/uCookieVisitor.pas similarity index 100% rename from demos/Lazarus/CookieVisitor/uCookieVisitor.pas rename to demos/Lazarus_Windows/CookieVisitor/uCookieVisitor.pas diff --git a/demos/Lazarus/CookieVisitor/uSimpleTextViewer.lfm b/demos/Lazarus_Windows/CookieVisitor/uSimpleTextViewer.lfm similarity index 100% rename from demos/Lazarus/CookieVisitor/uSimpleTextViewer.lfm rename to demos/Lazarus_Windows/CookieVisitor/uSimpleTextViewer.lfm diff --git a/demos/Lazarus/CookieVisitor/uSimpleTextViewer.pas b/demos/Lazarus_Windows/CookieVisitor/uSimpleTextViewer.pas similarity index 100% rename from demos/Lazarus/CookieVisitor/uSimpleTextViewer.pas rename to demos/Lazarus_Windows/CookieVisitor/uSimpleTextViewer.pas diff --git a/demos/Lazarus/JavaScript/JSDialog/00-Delete.bat b/demos/Lazarus_Windows/CustomResourceBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/00-Delete.bat rename to demos/Lazarus_Windows/CustomResourceBrowser/00-Delete.bat diff --git a/demos/Lazarus/CustomResourceBrowser/CRBrowser.lpi b/demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lpi similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/CRBrowser.lpi rename to demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lpi diff --git a/demos/Lazarus/CustomResourceBrowser/CRBrowser.lpr b/demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lpr similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/CRBrowser.lpr rename to demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lpr diff --git a/demos/Lazarus/CustomResourceBrowser/CRBrowser.lps b/demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lps similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/CRBrowser.lps rename to demos/Lazarus_Windows/CustomResourceBrowser/CRBrowser.lps diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/cef.inc b/demos/Lazarus_Windows/CustomResourceBrowser/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/cef.inc rename to demos/Lazarus_Windows/CustomResourceBrowser/cef.inc diff --git a/demos/Lazarus/CustomResourceBrowser/uCustomResourceHandler.pas b/demos/Lazarus_Windows/CustomResourceBrowser/uCustomResourceHandler.pas similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/uCustomResourceHandler.pas rename to demos/Lazarus_Windows/CustomResourceBrowser/uCustomResourceHandler.pas diff --git a/demos/Lazarus/CustomResourceBrowser/uMainForm.lfm b/demos/Lazarus_Windows/CustomResourceBrowser/uMainForm.lfm similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/uMainForm.lfm rename to demos/Lazarus_Windows/CustomResourceBrowser/uMainForm.lfm diff --git a/demos/Lazarus/CustomResourceBrowser/uMainForm.pas b/demos/Lazarus_Windows/CustomResourceBrowser/uMainForm.pas similarity index 100% rename from demos/Lazarus/CustomResourceBrowser/uMainForm.pas rename to demos/Lazarus_Windows/CustomResourceBrowser/uMainForm.pas diff --git a/demos/Lazarus/JavaScript/JSEval/00-Delete.bat b/demos/Lazarus_Windows/DOMVisitor/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/00-Delete.bat rename to demos/Lazarus_Windows/DOMVisitor/00-Delete.bat diff --git a/demos/Lazarus/DOMVisitor/DOMVisitor.lpi b/demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lpi similarity index 100% rename from demos/Lazarus/DOMVisitor/DOMVisitor.lpi rename to demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lpi diff --git a/demos/Lazarus/DOMVisitor/DOMVisitor.lpr b/demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lpr similarity index 100% rename from demos/Lazarus/DOMVisitor/DOMVisitor.lpr rename to demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lpr diff --git a/demos/Lazarus/DOMVisitor/DOMVisitor.lps b/demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lps similarity index 100% rename from demos/Lazarus/DOMVisitor/DOMVisitor.lps rename to demos/Lazarus_Windows/DOMVisitor/DOMVisitor.lps diff --git a/demos/Lazarus/JavaScript/JSExtension/cef.inc b/demos/Lazarus_Windows/DOMVisitor/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/cef.inc rename to demos/Lazarus_Windows/DOMVisitor/cef.inc diff --git a/demos/Lazarus/DOMVisitor/uDOMVisitor.lfm b/demos/Lazarus_Windows/DOMVisitor/uDOMVisitor.lfm similarity index 100% rename from demos/Lazarus/DOMVisitor/uDOMVisitor.lfm rename to demos/Lazarus_Windows/DOMVisitor/uDOMVisitor.lfm diff --git a/demos/Lazarus/DOMVisitor/uDOMVisitor.pas b/demos/Lazarus_Windows/DOMVisitor/uDOMVisitor.pas similarity index 100% rename from demos/Lazarus/DOMVisitor/uDOMVisitor.pas rename to demos/Lazarus_Windows/DOMVisitor/uDOMVisitor.pas diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/00-Delete.bat b/demos/Lazarus_Windows/EditorBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/00-Delete.bat rename to demos/Lazarus_Windows/EditorBrowser/00-Delete.bat diff --git a/demos/Lazarus/EditorBrowser/EditorBrowser.dpr b/demos/Lazarus_Windows/EditorBrowser/EditorBrowser.dpr similarity index 100% rename from demos/Lazarus/EditorBrowser/EditorBrowser.dpr rename to demos/Lazarus_Windows/EditorBrowser/EditorBrowser.dpr diff --git a/demos/Lazarus/EditorBrowser/EditorBrowser.lpi b/demos/Lazarus_Windows/EditorBrowser/EditorBrowser.lpi similarity index 100% rename from demos/Lazarus/EditorBrowser/EditorBrowser.lpi rename to demos/Lazarus_Windows/EditorBrowser/EditorBrowser.lpi diff --git a/demos/Lazarus/EditorBrowser/EditorBrowser.lps b/demos/Lazarus_Windows/EditorBrowser/EditorBrowser.lps similarity index 100% rename from demos/Lazarus/EditorBrowser/EditorBrowser.lps rename to demos/Lazarus_Windows/EditorBrowser/EditorBrowser.lps diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/cef.inc b/demos/Lazarus_Windows/EditorBrowser/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/cef.inc rename to demos/Lazarus_Windows/EditorBrowser/cef.inc diff --git a/demos/Lazarus/EditorBrowser/uEditorBrowser.lfm b/demos/Lazarus_Windows/EditorBrowser/uEditorBrowser.lfm similarity index 100% rename from demos/Lazarus/EditorBrowser/uEditorBrowser.lfm rename to demos/Lazarus_Windows/EditorBrowser/uEditorBrowser.lfm diff --git a/demos/Lazarus/EditorBrowser/uEditorBrowser.pas b/demos/Lazarus_Windows/EditorBrowser/uEditorBrowser.pas similarity index 100% rename from demos/Lazarus/EditorBrowser/uEditorBrowser.pas rename to demos/Lazarus_Windows/EditorBrowser/uEditorBrowser.pas diff --git a/demos/Lazarus/JavaScript/JSExtension/00-Delete.bat b/demos/Lazarus_Windows/ExternalPumpBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/00-Delete.bat rename to demos/Lazarus_Windows/ExternalPumpBrowser/00-Delete.bat diff --git a/demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lpi b/demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lpi similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lpi rename to demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lpi diff --git a/demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lpr b/demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lpr similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lpr rename to demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lpr diff --git a/demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lps b/demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lps similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/ExternalPumpBrowser.lps rename to demos/Lazarus_Windows/ExternalPumpBrowser/ExternalPumpBrowser.lps diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/cef.inc b/demos/Lazarus_Windows/ExternalPumpBrowser/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/cef.inc rename to demos/Lazarus_Windows/ExternalPumpBrowser/cef.inc diff --git a/demos/Lazarus/ExternalPumpBrowser/uExternalPumpBrowser.lfm b/demos/Lazarus_Windows/ExternalPumpBrowser/uExternalPumpBrowser.lfm similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/uExternalPumpBrowser.lfm rename to demos/Lazarus_Windows/ExternalPumpBrowser/uExternalPumpBrowser.lfm diff --git a/demos/Lazarus/ExternalPumpBrowser/uExternalPumpBrowser.pas b/demos/Lazarus_Windows/ExternalPumpBrowser/uExternalPumpBrowser.pas similarity index 100% rename from demos/Lazarus/ExternalPumpBrowser/uExternalPumpBrowser.pas rename to demos/Lazarus_Windows/ExternalPumpBrowser/uExternalPumpBrowser.pas diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/00-Delete.bat b/demos/Lazarus_Windows/FullScreenBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/00-Delete.bat rename to demos/Lazarus_Windows/FullScreenBrowser/00-Delete.bat diff --git a/demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lpi b/demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lpi similarity index 100% rename from demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lpi rename to demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lpi diff --git a/demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lpr b/demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lpr similarity index 100% rename from demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lpr rename to demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lpr diff --git a/demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lps b/demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lps similarity index 100% rename from demos/Lazarus/FullScreenBrowser/FullScreenBrowser.lps rename to demos/Lazarus_Windows/FullScreenBrowser/FullScreenBrowser.lps diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/cef.inc b/demos/Lazarus_Windows/FullScreenBrowser/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/cef.inc rename to demos/Lazarus_Windows/FullScreenBrowser/cef.inc diff --git a/demos/Lazarus/FullScreenBrowser/uMainForm.lfm b/demos/Lazarus_Windows/FullScreenBrowser/uMainForm.lfm similarity index 100% rename from demos/Lazarus/FullScreenBrowser/uMainForm.lfm rename to demos/Lazarus_Windows/FullScreenBrowser/uMainForm.lfm diff --git a/demos/Lazarus/FullScreenBrowser/uMainForm.pas b/demos/Lazarus_Windows/FullScreenBrowser/uMainForm.pas similarity index 100% rename from demos/Lazarus/FullScreenBrowser/uMainForm.pas rename to demos/Lazarus_Windows/FullScreenBrowser/uMainForm.pas diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSDialog/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSDialog/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lpi b/demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lpi rename to demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lpi diff --git a/demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lpr b/demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lpr rename to demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lpr diff --git a/demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lps b/demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/JSDialogBrowser.lps rename to demos/Lazarus_Windows/JavaScript/JSDialog/JSDialogBrowser.lps diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/cef.inc b/demos/Lazarus_Windows/JavaScript/JSDialog/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSDialog/cef.inc diff --git a/demos/Lazarus/JavaScript/JSDialog/uJSDialogBrowser.lfm b/demos/Lazarus_Windows/JavaScript/JSDialog/uJSDialogBrowser.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/uJSDialogBrowser.lfm rename to demos/Lazarus_Windows/JavaScript/JSDialog/uJSDialogBrowser.lfm diff --git a/demos/Lazarus/JavaScript/JSDialog/uJSDialogBrowser.pas b/demos/Lazarus_Windows/JavaScript/JSDialog/uJSDialogBrowser.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSDialog/uJSDialogBrowser.pas rename to demos/Lazarus_Windows/JavaScript/JSDialog/uJSDialogBrowser.pas diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSEval/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSEval/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSEval/JSEval.lpi b/demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/JSEval.lpi rename to demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lpi diff --git a/demos/Lazarus/JavaScript/JSEval/JSEval.lpr b/demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/JSEval.lpr rename to demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lpr diff --git a/demos/Lazarus/JavaScript/JSEval/JSEval.lps b/demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/JSEval.lps rename to demos/Lazarus_Windows/JavaScript/JSEval/JSEval.lps diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/cef.inc b/demos/Lazarus_Windows/JavaScript/JSEval/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSEval/cef.inc diff --git a/demos/Lazarus/JavaScript/JSEval/uJSEval.lfm b/demos/Lazarus_Windows/JavaScript/JSEval/uJSEval.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/uJSEval.lfm rename to demos/Lazarus_Windows/JavaScript/JSEval/uJSEval.lfm diff --git a/demos/Lazarus/JavaScript/JSEval/uJSEval.pas b/demos/Lazarus_Windows/JavaScript/JSEval/uJSEval.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/uJSEval.pas rename to demos/Lazarus_Windows/JavaScript/JSEval/uJSEval.pas diff --git a/demos/Lazarus/JavaScript/JSEval/uSimpleTextViewer.lfm b/demos/Lazarus_Windows/JavaScript/JSEval/uSimpleTextViewer.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/uSimpleTextViewer.lfm rename to demos/Lazarus_Windows/JavaScript/JSEval/uSimpleTextViewer.lfm diff --git a/demos/Lazarus/JavaScript/JSEval/uSimpleTextViewer.pas b/demos/Lazarus_Windows/JavaScript/JSEval/uSimpleTextViewer.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSEval/uSimpleTextViewer.pas rename to demos/Lazarus_Windows/JavaScript/JSEval/uSimpleTextViewer.pas diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpi b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpi rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpi diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpr b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpr rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lpr diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lps b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lps rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/JSExecutingFunctions.lps diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/cef.inc b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/cef.inc diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.lfm b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.lfm rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.lfm diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.pas b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.pas rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uJSExecutingFunctions.pas diff --git a/demos/Lazarus/JavaScript/JSExecutingFunctions/uMyV8Handler.pas b/demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uMyV8Handler.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExecutingFunctions/uMyV8Handler.pas rename to demos/Lazarus_Windows/JavaScript/JSExecutingFunctions/uMyV8Handler.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSExtension/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSExtension/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSExtension/JSExtension.lpi b/demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/JSExtension.lpi rename to demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lpi diff --git a/demos/Lazarus/JavaScript/JSExtension/JSExtension.lpr b/demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/JSExtension.lpr rename to demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lpr diff --git a/demos/Lazarus/JavaScript/JSExtension/JSExtension.lps b/demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/JSExtension.lps rename to demos/Lazarus_Windows/JavaScript/JSExtension/JSExtension.lps diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/cef.inc b/demos/Lazarus_Windows/JavaScript/JSExtension/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSExtension/cef.inc diff --git a/demos/Lazarus/JavaScript/JSExtension/uJSExtension.lfm b/demos/Lazarus_Windows/JavaScript/JSExtension/uJSExtension.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/uJSExtension.lfm rename to demos/Lazarus_Windows/JavaScript/JSExtension/uJSExtension.lfm diff --git a/demos/Lazarus/JavaScript/JSExtension/uJSExtension.pas b/demos/Lazarus_Windows/JavaScript/JSExtension/uJSExtension.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/uJSExtension.pas rename to demos/Lazarus_Windows/JavaScript/JSExtension/uJSExtension.pas diff --git a/demos/Lazarus/JavaScript/JSExtension/uSimpleTextViewer.lfm b/demos/Lazarus_Windows/JavaScript/JSExtension/uSimpleTextViewer.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/uSimpleTextViewer.lfm rename to demos/Lazarus_Windows/JavaScript/JSExtension/uSimpleTextViewer.lfm diff --git a/demos/Lazarus/JavaScript/JSExtension/uSimpleTextViewer.pas b/demos/Lazarus_Windows/JavaScript/JSExtension/uSimpleTextViewer.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/uSimpleTextViewer.pas rename to demos/Lazarus_Windows/JavaScript/JSExtension/uSimpleTextViewer.pas diff --git a/demos/Lazarus/JavaScript/JSExtension/uTestExtensionHandler.pas b/demos/Lazarus_Windows/JavaScript/JSExtension/uTestExtensionHandler.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtension/uTestExtensionHandler.pas rename to demos/Lazarus_Windows/JavaScript/JSExtension/uTestExtensionHandler.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpi b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpi rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpi diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpr b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpr rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lpr diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lps b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lps rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/JSExtensionWithFunction.lps diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/cef.inc b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/cef.inc similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/cef.inc diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.lfm b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.lfm rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.lfm diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.pas b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.pas rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uJSExtensionWithFunction.pas diff --git a/demos/Lazarus/JavaScript/JSExtensionWithFunction/uMyV8Handler.pas b/demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uMyV8Handler.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithFunction/uMyV8Handler.pas rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithFunction/uMyV8Handler.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpi b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpi rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpi diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpr b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpr rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lpr diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lps b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lps rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/JSExtensionWithObjectParameter.lps diff --git a/demos/Lazarus/Linux/SimpleBrowser2/cef.inc b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/cef.inc similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/cef.inc diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.lfm b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.lfm rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.lfm diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.pas b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.pas rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uJSExtensionWithObjectParameter.pas diff --git a/demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uMyV8Handler.pas b/demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uMyV8Handler.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSExtensionWithObjectParameter/uMyV8Handler.pas rename to demos/Lazarus_Windows/JavaScript/JSExtensionWithObjectParameter/uMyV8Handler.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/00-Delete.bat similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lpi b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lpi rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lpi diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lpr b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lpr rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lpr diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lps b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/JSSimpleExtension.lps rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/JSSimpleExtension.lps diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/cef.inc b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/cef.inc similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/cef.inc diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/uJSSimpleExtension.lfm b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/uJSSimpleExtension.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/uJSSimpleExtension.lfm rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/uJSSimpleExtension.lfm diff --git a/demos/Lazarus/JavaScript/JSSimpleExtension/uJSSimpleExtension.pas b/demos/Lazarus_Windows/JavaScript/JSSimpleExtension/uJSSimpleExtension.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleExtension/uJSSimpleExtension.pas rename to demos/Lazarus_Windows/JavaScript/JSSimpleExtension/uJSSimpleExtension.pas diff --git a/demos/Lazarus/Linux/SimpleBrowser2/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/00-Delete.bat similarity index 100% rename from demos/Lazarus/Linux/SimpleBrowser2/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpi b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpi rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpi diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpr b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpr rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lpr diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lps b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lps rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/JSSimpleWindowBinding.lps diff --git a/demos/Lazarus/MediaRouter/cef.inc b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/cef.inc similarity index 100% rename from demos/Lazarus/MediaRouter/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/cef.inc diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.lfm b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.lfm rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.lfm diff --git a/demos/Lazarus/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.pas b/demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.pas rename to demos/Lazarus_Windows/JavaScript/JSSimpleWindowBinding/uJSSimpleWindowBinding.pas diff --git a/demos/Lazarus/Linux/SimpleOSRBrowser/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/00-Delete.bat similarity index 100% rename from demos/Lazarus/Linux/SimpleOSRBrowser/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpi b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpi rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpi diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpr b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpr rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lpr diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/JSSimpleWindowBinding.lps diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpi b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpi rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lpi diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lpr diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/SubProcess.lps rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/SubProcess.lps diff --git a/demos/Lazarus/MiniBrowser/cef.inc b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/cef.inc similarity index 100% rename from demos/Lazarus/MiniBrowser/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/cef.inc diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.lfm b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.lfm rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.lfm diff --git a/demos/Lazarus/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingSubProcess/uJSSimpleWindowBinding.pas diff --git a/demos/Lazarus/MediaRouter/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/00-Delete.bat similarity index 100% rename from demos/Lazarus/MediaRouter/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.dproj b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.dproj similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.dproj rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.dproj diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpi b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpi rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpi diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpr b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpr rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lpr diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lps b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lps rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/JSWindowBindingWithArrayBuffer.lps diff --git a/demos/Lazarus/OAuth2Tester/cef.inc b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/cef.inc similarity index 100% rename from demos/Lazarus/OAuth2Tester/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/cef.inc diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.lfm b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.lfm rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.lfm diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithArrayBuffer/uJSWindowBindingWithArrayBuffer.pas diff --git a/demos/Lazarus/MiniBrowser/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/00-Delete.bat similarity index 100% rename from demos/Lazarus/MiniBrowser/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpi b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpi rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpi diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpr b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpr rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lpr diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lps b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lps rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/JSWindowBindingWithFunction.lps diff --git a/demos/Lazarus/OSRExternalPumpBrowser/cef.inc b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/cef.inc similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/cef.inc diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.lfm b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.lfm rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.lfm diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uJSWindowBindingWithFunction.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uMyV8Handler.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uMyV8Handler.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithFunction/uMyV8Handler.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithFunction/uMyV8Handler.pas diff --git a/demos/Lazarus/OAuth2Tester/00-Delete.bat b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/00-Delete.bat similarity index 100% rename from demos/Lazarus/OAuth2Tester/00-Delete.bat rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/00-Delete.bat diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpi b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpi similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpi rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpi diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpr b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpr similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpr rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lpr diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lps b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lps similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lps rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/JSWindowBindingWithObject.lps diff --git a/demos/Lazarus/PopupBrowser/cef.inc b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/cef.inc similarity index 100% rename from demos/Lazarus/PopupBrowser/cef.inc rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/cef.inc diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.lfm b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.lfm similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.lfm rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.lfm diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uJSWindowBindingWithObject.pas diff --git a/demos/Lazarus/JavaScript/JSWindowBindingWithObject/uMyV8Accessor.pas b/demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uMyV8Accessor.pas similarity index 100% rename from demos/Lazarus/JavaScript/JSWindowBindingWithObject/uMyV8Accessor.pas rename to demos/Lazarus_Windows/JavaScript/JSWindowBindingWithObject/uMyV8Accessor.pas diff --git a/demos/Lazarus/OSRExternalPumpBrowser/00-Delete.bat b/demos/Lazarus_Windows/MediaRouter/00-Delete.bat similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/00-Delete.bat rename to demos/Lazarus_Windows/MediaRouter/00-Delete.bat diff --git a/demos/Lazarus/MediaRouter/MediaRouter.lpi b/demos/Lazarus_Windows/MediaRouter/MediaRouter.lpi similarity index 100% rename from demos/Lazarus/MediaRouter/MediaRouter.lpi rename to demos/Lazarus_Windows/MediaRouter/MediaRouter.lpi diff --git a/demos/Lazarus/MediaRouter/MediaRouter.lpr b/demos/Lazarus_Windows/MediaRouter/MediaRouter.lpr similarity index 100% rename from demos/Lazarus/MediaRouter/MediaRouter.lpr rename to demos/Lazarus_Windows/MediaRouter/MediaRouter.lpr diff --git a/demos/Lazarus/MediaRouter/MediaRouter.lps b/demos/Lazarus_Windows/MediaRouter/MediaRouter.lps similarity index 100% rename from demos/Lazarus/MediaRouter/MediaRouter.lps rename to demos/Lazarus_Windows/MediaRouter/MediaRouter.lps diff --git a/demos/Lazarus/PopupBrowser2/cef.inc b/demos/Lazarus_Windows/MediaRouter/cef.inc similarity index 100% rename from demos/Lazarus/PopupBrowser2/cef.inc rename to demos/Lazarus_Windows/MediaRouter/cef.inc diff --git a/demos/Lazarus/MediaRouter/uMediaRouterFrm.lfm b/demos/Lazarus_Windows/MediaRouter/uMediaRouterFrm.lfm similarity index 100% rename from demos/Lazarus/MediaRouter/uMediaRouterFrm.lfm rename to demos/Lazarus_Windows/MediaRouter/uMediaRouterFrm.lfm diff --git a/demos/Lazarus/MediaRouter/uMediaRouterFrm.pas b/demos/Lazarus_Windows/MediaRouter/uMediaRouterFrm.pas similarity index 100% rename from demos/Lazarus/MediaRouter/uMediaRouterFrm.pas rename to demos/Lazarus_Windows/MediaRouter/uMediaRouterFrm.pas diff --git a/demos/Lazarus/PopupBrowser/00-Delete.bat b/demos/Lazarus_Windows/MiniBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/PopupBrowser/00-Delete.bat rename to demos/Lazarus_Windows/MiniBrowser/00-Delete.bat diff --git a/demos/Lazarus/MiniBrowser/MiniBrowser.lpi b/demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lpi similarity index 100% rename from demos/Lazarus/MiniBrowser/MiniBrowser.lpi rename to demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lpi diff --git a/demos/Lazarus/MiniBrowser/MiniBrowser.lpr b/demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lpr similarity index 100% rename from demos/Lazarus/MiniBrowser/MiniBrowser.lpr rename to demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lpr diff --git a/demos/Lazarus/MiniBrowser/MiniBrowser.lps b/demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lps similarity index 100% rename from demos/Lazarus/MiniBrowser/MiniBrowser.lps rename to demos/Lazarus_Windows/MiniBrowser/MiniBrowser.lps diff --git a/demos/Lazarus/PostInspectorBrowser/cef.inc b/demos/Lazarus_Windows/MiniBrowser/cef.inc similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/cef.inc rename to demos/Lazarus_Windows/MiniBrowser/cef.inc diff --git a/demos/Lazarus/MiniBrowser/uMiniBrowser.lfm b/demos/Lazarus_Windows/MiniBrowser/uMiniBrowser.lfm similarity index 100% rename from demos/Lazarus/MiniBrowser/uMiniBrowser.lfm rename to demos/Lazarus_Windows/MiniBrowser/uMiniBrowser.lfm diff --git a/demos/Lazarus/MiniBrowser/uMiniBrowser.pas b/demos/Lazarus_Windows/MiniBrowser/uMiniBrowser.pas similarity index 100% rename from demos/Lazarus/MiniBrowser/uMiniBrowser.pas rename to demos/Lazarus_Windows/MiniBrowser/uMiniBrowser.pas diff --git a/demos/Lazarus/MiniBrowser/uPreferences.lfm b/demos/Lazarus_Windows/MiniBrowser/uPreferences.lfm similarity index 100% rename from demos/Lazarus/MiniBrowser/uPreferences.lfm rename to demos/Lazarus_Windows/MiniBrowser/uPreferences.lfm diff --git a/demos/Lazarus/MiniBrowser/uPreferences.pas b/demos/Lazarus_Windows/MiniBrowser/uPreferences.pas similarity index 100% rename from demos/Lazarus/MiniBrowser/uPreferences.pas rename to demos/Lazarus_Windows/MiniBrowser/uPreferences.pas diff --git a/demos/Lazarus/MiniBrowser/uSimpleTextViewer.lfm b/demos/Lazarus_Windows/MiniBrowser/uSimpleTextViewer.lfm similarity index 100% rename from demos/Lazarus/MiniBrowser/uSimpleTextViewer.lfm rename to demos/Lazarus_Windows/MiniBrowser/uSimpleTextViewer.lfm diff --git a/demos/Lazarus/MiniBrowser/uSimpleTextViewer.pas b/demos/Lazarus_Windows/MiniBrowser/uSimpleTextViewer.pas similarity index 100% rename from demos/Lazarus/MiniBrowser/uSimpleTextViewer.pas rename to demos/Lazarus_Windows/MiniBrowser/uSimpleTextViewer.pas diff --git a/demos/Lazarus/PopupBrowser2/00-Delete.bat b/demos/Lazarus_Windows/OAuth2Tester/00-Delete.bat similarity index 100% rename from demos/Lazarus/PopupBrowser2/00-Delete.bat rename to demos/Lazarus_Windows/OAuth2Tester/00-Delete.bat diff --git a/demos/Lazarus/OAuth2Tester/OAuth2Tester.dproj b/demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.dproj similarity index 100% rename from demos/Lazarus/OAuth2Tester/OAuth2Tester.dproj rename to demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.dproj diff --git a/demos/Lazarus/OAuth2Tester/OAuth2Tester.lpi b/demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lpi similarity index 100% rename from demos/Lazarus/OAuth2Tester/OAuth2Tester.lpi rename to demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lpi diff --git a/demos/Lazarus/OAuth2Tester/OAuth2Tester.lpr b/demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lpr similarity index 100% rename from demos/Lazarus/OAuth2Tester/OAuth2Tester.lpr rename to demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lpr diff --git a/demos/Lazarus/OAuth2Tester/OAuth2Tester.lps b/demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lps similarity index 100% rename from demos/Lazarus/OAuth2Tester/OAuth2Tester.lps rename to demos/Lazarus_Windows/OAuth2Tester/OAuth2Tester.lps diff --git a/demos/Lazarus/SchemeRegistrationBrowser/cef.inc b/demos/Lazarus_Windows/OAuth2Tester/cef.inc similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/cef.inc rename to demos/Lazarus_Windows/OAuth2Tester/cef.inc diff --git a/demos/Lazarus/OAuth2Tester/uOAuth2TesterFrm.lfm b/demos/Lazarus_Windows/OAuth2Tester/uOAuth2TesterFrm.lfm similarity index 100% rename from demos/Lazarus/OAuth2Tester/uOAuth2TesterFrm.lfm rename to demos/Lazarus_Windows/OAuth2Tester/uOAuth2TesterFrm.lfm diff --git a/demos/Lazarus/OAuth2Tester/uOAuth2TesterFrm.pas b/demos/Lazarus_Windows/OAuth2Tester/uOAuth2TesterFrm.pas similarity index 100% rename from demos/Lazarus/OAuth2Tester/uOAuth2TesterFrm.pas rename to demos/Lazarus_Windows/OAuth2Tester/uOAuth2TesterFrm.pas diff --git a/demos/Lazarus/PostInspectorBrowser/00-Delete.bat b/demos/Lazarus_Windows/OSRExternalPumpBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/00-Delete.bat rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/00-Delete.bat diff --git a/demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi b/demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpi diff --git a/demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr b/demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lpr diff --git a/demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps b/demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/OSRExternalPumpBrowser.lps diff --git a/demos/Lazarus/SimpleBrowser/cef.inc b/demos/Lazarus_Windows/OSRExternalPumpBrowser/cef.inc similarity index 100% rename from demos/Lazarus/SimpleBrowser/cef.inc rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/cef.inc diff --git a/demos/Lazarus/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm b/demos/Lazarus_Windows/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.lfm diff --git a/demos/Lazarus/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas b/demos/Lazarus_Windows/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas similarity index 100% rename from demos/Lazarus/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas rename to demos/Lazarus_Windows/OSRExternalPumpBrowser/uOSRExternalPumpBrowser.pas diff --git a/demos/Lazarus/SchemeRegistrationBrowser/00-Delete.bat b/demos/Lazarus_Windows/PopupBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/00-Delete.bat rename to demos/Lazarus_Windows/PopupBrowser/00-Delete.bat diff --git a/demos/Lazarus/PopupBrowser/PopupBrowser.lpi b/demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lpi similarity index 100% rename from demos/Lazarus/PopupBrowser/PopupBrowser.lpi rename to demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lpi diff --git a/demos/Lazarus/PopupBrowser/PopupBrowser.lpr b/demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lpr similarity index 100% rename from demos/Lazarus/PopupBrowser/PopupBrowser.lpr rename to demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lpr diff --git a/demos/Lazarus/PopupBrowser/PopupBrowser.lps b/demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lps similarity index 100% rename from demos/Lazarus/PopupBrowser/PopupBrowser.lps rename to demos/Lazarus_Windows/PopupBrowser/PopupBrowser.lps diff --git a/demos/Lazarus/SimpleBrowser2/cef.inc b/demos/Lazarus_Windows/PopupBrowser/cef.inc similarity index 100% rename from demos/Lazarus/SimpleBrowser2/cef.inc rename to demos/Lazarus_Windows/PopupBrowser/cef.inc diff --git a/demos/Lazarus/PopupBrowser/uChildForm.lfm b/demos/Lazarus_Windows/PopupBrowser/uChildForm.lfm similarity index 100% rename from demos/Lazarus/PopupBrowser/uChildForm.lfm rename to demos/Lazarus_Windows/PopupBrowser/uChildForm.lfm diff --git a/demos/Lazarus/PopupBrowser/uChildForm.pas b/demos/Lazarus_Windows/PopupBrowser/uChildForm.pas similarity index 100% rename from demos/Lazarus/PopupBrowser/uChildForm.pas rename to demos/Lazarus_Windows/PopupBrowser/uChildForm.pas diff --git a/demos/Lazarus/PopupBrowser/uMainForm.lfm b/demos/Lazarus_Windows/PopupBrowser/uMainForm.lfm similarity index 100% rename from demos/Lazarus/PopupBrowser/uMainForm.lfm rename to demos/Lazarus_Windows/PopupBrowser/uMainForm.lfm diff --git a/demos/Lazarus/PopupBrowser/uMainForm.pas b/demos/Lazarus_Windows/PopupBrowser/uMainForm.pas similarity index 100% rename from demos/Lazarus/PopupBrowser/uMainForm.pas rename to demos/Lazarus_Windows/PopupBrowser/uMainForm.pas diff --git a/demos/Lazarus/SimpleBrowser/00-Delete.bat b/demos/Lazarus_Windows/PopupBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/SimpleBrowser/00-Delete.bat rename to demos/Lazarus_Windows/PopupBrowser2/00-Delete.bat diff --git a/demos/Lazarus/PopupBrowser2/PopupBrowser2.lpi b/demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lpi similarity index 100% rename from demos/Lazarus/PopupBrowser2/PopupBrowser2.lpi rename to demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lpi diff --git a/demos/Lazarus/PopupBrowser2/PopupBrowser2.lpr b/demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lpr similarity index 100% rename from demos/Lazarus/PopupBrowser2/PopupBrowser2.lpr rename to demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lpr diff --git a/demos/Lazarus/PopupBrowser2/PopupBrowser2.lps b/demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lps similarity index 100% rename from demos/Lazarus/PopupBrowser2/PopupBrowser2.lps rename to demos/Lazarus_Windows/PopupBrowser2/PopupBrowser2.lps diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/cef.inc b/demos/Lazarus_Windows/PopupBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/cef.inc rename to demos/Lazarus_Windows/PopupBrowser2/cef.inc diff --git a/demos/Lazarus/PopupBrowser2/uChildForm.dfm b/demos/Lazarus_Windows/PopupBrowser2/uChildForm.dfm similarity index 100% rename from demos/Lazarus/PopupBrowser2/uChildForm.dfm rename to demos/Lazarus_Windows/PopupBrowser2/uChildForm.dfm diff --git a/demos/Lazarus/PopupBrowser2/uChildForm.pas b/demos/Lazarus_Windows/PopupBrowser2/uChildForm.pas similarity index 100% rename from demos/Lazarus/PopupBrowser2/uChildForm.pas rename to demos/Lazarus_Windows/PopupBrowser2/uChildForm.pas diff --git a/demos/Lazarus/PopupBrowser2/uMainForm.lfm b/demos/Lazarus_Windows/PopupBrowser2/uMainForm.lfm similarity index 100% rename from demos/Lazarus/PopupBrowser2/uMainForm.lfm rename to demos/Lazarus_Windows/PopupBrowser2/uMainForm.lfm diff --git a/demos/Lazarus/PopupBrowser2/uMainForm.pas b/demos/Lazarus_Windows/PopupBrowser2/uMainForm.pas similarity index 100% rename from demos/Lazarus/PopupBrowser2/uMainForm.pas rename to demos/Lazarus_Windows/PopupBrowser2/uMainForm.pas diff --git a/demos/Lazarus/SimpleBrowser2/00-Delete.bat b/demos/Lazarus_Windows/PostInspectorBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/SimpleBrowser2/00-Delete.bat rename to demos/Lazarus_Windows/PostInspectorBrowser/00-Delete.bat diff --git a/demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lpi b/demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lpi similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lpi rename to demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lpi diff --git a/demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lpr b/demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lpr similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lpr rename to demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lpr diff --git a/demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lps b/demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lps similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/PostInspectorBrowser.lps rename to demos/Lazarus_Windows/PostInspectorBrowser/PostInspectorBrowser.lps diff --git a/demos/Lazarus/SimpleOSRBrowser/cef.inc b/demos/Lazarus_Windows/PostInspectorBrowser/cef.inc similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/cef.inc rename to demos/Lazarus_Windows/PostInspectorBrowser/cef.inc diff --git a/demos/Lazarus/PostInspectorBrowser/uPostInspectorBrowser.lfm b/demos/Lazarus_Windows/PostInspectorBrowser/uPostInspectorBrowser.lfm similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/uPostInspectorBrowser.lfm rename to demos/Lazarus_Windows/PostInspectorBrowser/uPostInspectorBrowser.lfm diff --git a/demos/Lazarus/PostInspectorBrowser/uPostInspectorBrowser.pas b/demos/Lazarus_Windows/PostInspectorBrowser/uPostInspectorBrowser.pas similarity index 100% rename from demos/Lazarus/PostInspectorBrowser/uPostInspectorBrowser.pas rename to demos/Lazarus_Windows/PostInspectorBrowser/uPostInspectorBrowser.pas diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/00-Delete.bat b/demos/Lazarus_Windows/SchemeRegistrationBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/00-Delete.bat rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/00-Delete.bat diff --git a/demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpi b/demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpi similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpi rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpi diff --git a/demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpr b/demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpr similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpr rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lpr diff --git a/demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lps b/demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lps similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lps rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/SchemeRegistrationBrowser.lps diff --git a/demos/Lazarus/SimpleServer/cef.inc b/demos/Lazarus_Windows/SchemeRegistrationBrowser/cef.inc similarity index 100% rename from demos/Lazarus/SimpleServer/cef.inc rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/cef.inc diff --git a/demos/Lazarus/SchemeRegistrationBrowser/uHelloScheme.pas b/demos/Lazarus_Windows/SchemeRegistrationBrowser/uHelloScheme.pas similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/uHelloScheme.pas rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/uHelloScheme.pas diff --git a/demos/Lazarus/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.lfm b/demos/Lazarus_Windows/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.lfm similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.lfm rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.lfm diff --git a/demos/Lazarus/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas b/demos/Lazarus_Windows/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas similarity index 100% rename from demos/Lazarus/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas rename to demos/Lazarus_Windows/SchemeRegistrationBrowser/uSchemeRegistrationBrowser.pas diff --git a/demos/Lazarus/SimpleOSRBrowser/00-Delete.bat b/demos/Lazarus_Windows/SimpleBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/00-Delete.bat rename to demos/Lazarus_Windows/SimpleBrowser/00-Delete.bat diff --git a/demos/Lazarus/SimpleBrowser/SimpleBrowser.lpi b/demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lpi similarity index 100% rename from demos/Lazarus/SimpleBrowser/SimpleBrowser.lpi rename to demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lpi diff --git a/demos/Lazarus/SimpleBrowser/SimpleBrowser.lpr b/demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lpr similarity index 100% rename from demos/Lazarus/SimpleBrowser/SimpleBrowser.lpr rename to demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lpr diff --git a/demos/Lazarus/SimpleBrowser/SimpleBrowser.lps b/demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lps similarity index 100% rename from demos/Lazarus/SimpleBrowser/SimpleBrowser.lps rename to demos/Lazarus_Windows/SimpleBrowser/SimpleBrowser.lps diff --git a/demos/Lazarus/SubProcess/cef.inc b/demos/Lazarus_Windows/SimpleBrowser/cef.inc similarity index 100% rename from demos/Lazarus/SubProcess/cef.inc rename to demos/Lazarus_Windows/SimpleBrowser/cef.inc diff --git a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm b/demos/Lazarus_Windows/SimpleBrowser/uSimpleBrowser.lfm similarity index 100% rename from demos/Lazarus/SimpleBrowser/uSimpleBrowser.lfm rename to demos/Lazarus_Windows/SimpleBrowser/uSimpleBrowser.lfm diff --git a/demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas b/demos/Lazarus_Windows/SimpleBrowser/uSimpleBrowser.pas similarity index 100% rename from demos/Lazarus/SimpleBrowser/uSimpleBrowser.pas rename to demos/Lazarus_Windows/SimpleBrowser/uSimpleBrowser.pas diff --git a/demos/Lazarus/SimpleServer/00-Delete.bat b/demos/Lazarus_Windows/SimpleBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/SimpleServer/00-Delete.bat rename to demos/Lazarus_Windows/SimpleBrowser2/00-Delete.bat diff --git a/demos/Lazarus/SimpleBrowser2/SimpleBrowser2.ico b/demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.ico similarity index 100% rename from demos/Lazarus/SimpleBrowser2/SimpleBrowser2.ico rename to demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.ico diff --git a/demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lpi b/demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lpi similarity index 100% rename from demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lpi rename to demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lpi diff --git a/demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lpr b/demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lpr similarity index 100% rename from demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lpr rename to demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lpr diff --git a/demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lps b/demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lps similarity index 100% rename from demos/Lazarus/SimpleBrowser2/SimpleBrowser2.lps rename to demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.lps diff --git a/demos/Lazarus/SimpleBrowser2/SimpleBrowser2.res b/demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.res similarity index 100% rename from demos/Lazarus/SimpleBrowser2/SimpleBrowser2.res rename to demos/Lazarus_Windows/SimpleBrowser2/SimpleBrowser2.res diff --git a/demos/Lazarus/TabbedBrowser/cef.inc b/demos/Lazarus_Windows/SimpleBrowser2/cef.inc similarity index 100% rename from demos/Lazarus/TabbedBrowser/cef.inc rename to demos/Lazarus_Windows/SimpleBrowser2/cef.inc diff --git a/demos/Lazarus/SimpleBrowser2/usimplelazarusbrowser.lfm b/demos/Lazarus_Windows/SimpleBrowser2/usimplelazarusbrowser.lfm similarity index 100% rename from demos/Lazarus/SimpleBrowser2/usimplelazarusbrowser.lfm rename to demos/Lazarus_Windows/SimpleBrowser2/usimplelazarusbrowser.lfm diff --git a/demos/Lazarus/SimpleBrowser2/usimplelazarusbrowser.pas b/demos/Lazarus_Windows/SimpleBrowser2/usimplelazarusbrowser.pas similarity index 100% rename from demos/Lazarus/SimpleBrowser2/usimplelazarusbrowser.pas rename to demos/Lazarus_Windows/SimpleBrowser2/usimplelazarusbrowser.pas diff --git a/demos/Lazarus/SubProcess/00-Delete.bat b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/SubProcess/00-Delete.bat rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/00-Delete.bat diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.dproj b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.dproj similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.dproj rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.dproj diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpi b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpi similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpi rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpi diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpr b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpr similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpr rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lpr diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lps b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lps similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lps rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/SimpleExternalPumpBrowser.lps diff --git a/demos/Lazarus/TabbedBrowser2/cef.inc b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/cef.inc similarity index 100% rename from demos/Lazarus/TabbedBrowser2/cef.inc rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/cef.inc diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.lfm b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.lfm similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.lfm rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.lfm diff --git a/demos/Lazarus/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.pas b/demos/Lazarus_Windows/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.pas similarity index 100% rename from demos/Lazarus/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.pas rename to demos/Lazarus_Windows/SimpleExternalPumpBrowser/uSimpleExternalPumpBrowser.pas diff --git a/demos/Lazarus/TabbedBrowser/00-Delete.bat b/demos/Lazarus_Windows/SimpleOSRBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/TabbedBrowser/00-Delete.bat rename to demos/Lazarus_Windows/SimpleOSRBrowser/00-Delete.bat diff --git a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.ico b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.ico similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.ico rename to demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.ico diff --git a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lpi b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lpi similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lpi rename to demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lpi diff --git a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lpr b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lpr similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lpr rename to demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lpr diff --git a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lps b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lps similarity index 65% rename from demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lps rename to demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lps index 04549061..1d9f0433 100644 --- a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.lps +++ b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.lps @@ -8,11 +8,10 @@ <Unit0> <Filename Value="SimpleOSRBrowser.lpr"/> <IsPartOfProject Value="True"/> - <EditorIndex Value="1"/> + <EditorIndex Value="-1"/> <TopLine Value="18"/> <CursorPos X="61" Y="60"/> <UsageCount Value="20"/> - <Loaded Value="True"/> <DefaultSyntaxHighlighter Value="Delphi"/> </Unit0> <Unit1> @@ -38,6 +37,7 @@ <HasResources Value="True"/> <ResourceBaseClass Value="Form"/> <IsVisibleTab Value="True"/> + <EditorIndex Value="-1"/> <TopLine Value="334"/> <CursorPos X="25" Y="343"/> <UsageCount Value="42"/> @@ -45,8 +45,6 @@ <Item0 X="40" Y="302" ID="4"/> <Item1 X="41" Y="262" ID="1"/> </Bookmarks> - <Loaded Value="True"/> - <LoadedDesigner Value="True"/> <DefaultSyntaxHighlighter Value="Delphi"/> </Unit3> <Unit4> @@ -251,128 +249,10 @@ <UsageCount Value="10"/> </Unit29> </Units> - <JumpHistory Count="30" HistoryIndex="29"> - <Position1> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="507" TopLine="469"/> - </Position1> - <Position2> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="510" Column="48" TopLine="469"/> - </Position2> - <Position3> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="780" Column="52" TopLine="739"/> - </Position3> - <Position4> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="801" Column="52" TopLine="760"/> - </Position4> - <Position5> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="818" Column="52" TopLine="777"/> - </Position5> - <Position6> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="832" Column="52" TopLine="791"/> - </Position6> - <Position7> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="982" Column="52" TopLine="941"/> - </Position7> - <Position8> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="224" Column="40" TopLine="201"/> - </Position8> - <Position9> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="318" Column="75" TopLine="238"/> - </Position9> - <Position10> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="225" Column="59" TopLine="201"/> - </Position10> - <Position11> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="320" Column="46" TopLine="292"/> - </Position11> - <Position12> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="343" Column="28" TopLine="310"/> - </Position12> - <Position13> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="365" Column="9" TopLine="344"/> - </Position13> - <Position14> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="512" Column="55" TopLine="486"/> - </Position14> - <Position15> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="775" Column="86" TopLine="735"/> - </Position15> - <Position16> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="793" Column="54" TopLine="765"/> - </Position16> - <Position17> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="807" Column="56" TopLine="782"/> - </Position17> - <Position18> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="818" Column="86" TopLine="797"/> - </Position18> - <Position19> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="965" Column="60" TopLine="936"/> - </Position19> - <Position20> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="224" Column="40" TopLine="201"/> - </Position20> - <Position21> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="314" Column="40" TopLine="310"/> - </Position21> - <Position22> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="337" Column="37" TopLine="309"/> - </Position22> - <Position23> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="352" Column="36" TopLine="338"/> - </Position23> - <Position24> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="507" Column="44" TopLine="496"/> - </Position24> - <Position25> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="774" Column="48" TopLine="745"/> - </Position25> - <Position26> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="93" Column="25" TopLine="87"/> - </Position26> - <Position27> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="143" Column="15" TopLine="128"/> - </Position27> - <Position28> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="680" Column="50" TopLine="669"/> - </Position28> - <Position29> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="144" Column="49" TopLine="131"/> - </Position29> - <Position30> - <Filename Value="usimplelazosrbrowser.pas"/> - <Caret Line="92" Column="168" TopLine="85"/> - </Position30> - </JumpHistory> + <General> + <ActiveWindowIndexAtStart Value="-1"/> + </General> + <JumpHistory HistoryIndex="-1"/> <RunParams> <FormatVersion Value="2"/> <Modes Count="0" ActiveMode="default"/> diff --git a/demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.res b/demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.res similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/SimpleOSRBrowser.res rename to demos/Lazarus_Windows/SimpleOSRBrowser/SimpleOSRBrowser.res diff --git a/demos/Lazarus/TinyBrowser/cef.inc b/demos/Lazarus_Windows/SimpleOSRBrowser/cef.inc similarity index 100% rename from demos/Lazarus/TinyBrowser/cef.inc rename to demos/Lazarus_Windows/SimpleOSRBrowser/cef.inc diff --git a/demos/Lazarus/SimpleOSRBrowser/usimplelazosrbrowser.lfm b/demos/Lazarus_Windows/SimpleOSRBrowser/usimplelazosrbrowser.lfm similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/usimplelazosrbrowser.lfm rename to demos/Lazarus_Windows/SimpleOSRBrowser/usimplelazosrbrowser.lfm diff --git a/demos/Lazarus/SimpleOSRBrowser/usimplelazosrbrowser.pas b/demos/Lazarus_Windows/SimpleOSRBrowser/usimplelazosrbrowser.pas similarity index 100% rename from demos/Lazarus/SimpleOSRBrowser/usimplelazosrbrowser.pas rename to demos/Lazarus_Windows/SimpleOSRBrowser/usimplelazosrbrowser.pas diff --git a/demos/Lazarus/TabbedBrowser2/00-Delete.bat b/demos/Lazarus_Windows/SimpleServer/00-Delete.bat similarity index 100% rename from demos/Lazarus/TabbedBrowser2/00-Delete.bat rename to demos/Lazarus_Windows/SimpleServer/00-Delete.bat diff --git a/demos/Lazarus/SimpleServer/SimpleServer.lpi b/demos/Lazarus_Windows/SimpleServer/SimpleServer.lpi similarity index 100% rename from demos/Lazarus/SimpleServer/SimpleServer.lpi rename to demos/Lazarus_Windows/SimpleServer/SimpleServer.lpi diff --git a/demos/Lazarus/SimpleServer/SimpleServer.lpr b/demos/Lazarus_Windows/SimpleServer/SimpleServer.lpr similarity index 100% rename from demos/Lazarus/SimpleServer/SimpleServer.lpr rename to demos/Lazarus_Windows/SimpleServer/SimpleServer.lpr diff --git a/demos/Lazarus/SimpleServer/SimpleServer.lps b/demos/Lazarus_Windows/SimpleServer/SimpleServer.lps similarity index 100% rename from demos/Lazarus/SimpleServer/SimpleServer.lps rename to demos/Lazarus_Windows/SimpleServer/SimpleServer.lps diff --git a/demos/Lazarus/ToolBoxBrowser/cef.inc b/demos/Lazarus_Windows/SimpleServer/cef.inc similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/cef.inc rename to demos/Lazarus_Windows/SimpleServer/cef.inc diff --git a/demos/Lazarus/SimpleServer/uSimpleServer.lfm b/demos/Lazarus_Windows/SimpleServer/uSimpleServer.lfm similarity index 100% rename from demos/Lazarus/SimpleServer/uSimpleServer.lfm rename to demos/Lazarus_Windows/SimpleServer/uSimpleServer.lfm diff --git a/demos/Lazarus/SimpleServer/uSimpleServer.pas b/demos/Lazarus_Windows/SimpleServer/uSimpleServer.pas similarity index 100% rename from demos/Lazarus/SimpleServer/uSimpleServer.pas rename to demos/Lazarus_Windows/SimpleServer/uSimpleServer.pas diff --git a/demos/Lazarus/TinyBrowser/00-Delete.bat b/demos/Lazarus_Windows/SubProcess/00-Delete.bat similarity index 100% rename from demos/Lazarus/TinyBrowser/00-Delete.bat rename to demos/Lazarus_Windows/SubProcess/00-Delete.bat diff --git a/demos/Lazarus/SubProcess/SimpleBrowser.lpi b/demos/Lazarus_Windows/SubProcess/SimpleBrowser.lpi similarity index 100% rename from demos/Lazarus/SubProcess/SimpleBrowser.lpi rename to demos/Lazarus_Windows/SubProcess/SimpleBrowser.lpi diff --git a/demos/Lazarus/SubProcess/SimpleBrowser.lpr b/demos/Lazarus_Windows/SubProcess/SimpleBrowser.lpr similarity index 100% rename from demos/Lazarus/SubProcess/SimpleBrowser.lpr rename to demos/Lazarus_Windows/SubProcess/SimpleBrowser.lpr diff --git a/demos/Lazarus/SubProcess/SimpleBrowser.lps b/demos/Lazarus_Windows/SubProcess/SimpleBrowser.lps similarity index 100% rename from demos/Lazarus/SubProcess/SimpleBrowser.lps rename to demos/Lazarus_Windows/SubProcess/SimpleBrowser.lps diff --git a/demos/Lazarus/SubProcess/SubProcess.lpi b/demos/Lazarus_Windows/SubProcess/SubProcess.lpi similarity index 100% rename from demos/Lazarus/SubProcess/SubProcess.lpi rename to demos/Lazarus_Windows/SubProcess/SubProcess.lpi diff --git a/demos/Lazarus/SubProcess/SubProcess.lpr b/demos/Lazarus_Windows/SubProcess/SubProcess.lpr similarity index 100% rename from demos/Lazarus/SubProcess/SubProcess.lpr rename to demos/Lazarus_Windows/SubProcess/SubProcess.lpr diff --git a/demos/Lazarus/SubProcess/SubProcess.lps b/demos/Lazarus_Windows/SubProcess/SubProcess.lps similarity index 100% rename from demos/Lazarus/SubProcess/SubProcess.lps rename to demos/Lazarus_Windows/SubProcess/SubProcess.lps diff --git a/demos/Lazarus/ToolBoxBrowser2/cef.inc b/demos/Lazarus_Windows/SubProcess/cef.inc similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/cef.inc rename to demos/Lazarus_Windows/SubProcess/cef.inc diff --git a/demos/Lazarus/SubProcess/uCEFLoader.pas b/demos/Lazarus_Windows/SubProcess/uCEFLoader.pas similarity index 100% rename from demos/Lazarus/SubProcess/uCEFLoader.pas rename to demos/Lazarus_Windows/SubProcess/uCEFLoader.pas diff --git a/demos/Lazarus/SubProcess/uSimpleBrowser.lfm b/demos/Lazarus_Windows/SubProcess/uSimpleBrowser.lfm similarity index 100% rename from demos/Lazarus/SubProcess/uSimpleBrowser.lfm rename to demos/Lazarus_Windows/SubProcess/uSimpleBrowser.lfm diff --git a/demos/Lazarus/SubProcess/uSimpleBrowser.pas b/demos/Lazarus_Windows/SubProcess/uSimpleBrowser.pas similarity index 100% rename from demos/Lazarus/SubProcess/uSimpleBrowser.pas rename to demos/Lazarus_Windows/SubProcess/uSimpleBrowser.pas diff --git a/demos/Lazarus/ToolBoxBrowser/00-Delete.bat b/demos/Lazarus_Windows/TabbedBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/00-Delete.bat rename to demos/Lazarus_Windows/TabbedBrowser/00-Delete.bat diff --git a/demos/Lazarus/TabbedBrowser/TabBrowser.lpi b/demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lpi similarity index 100% rename from demos/Lazarus/TabbedBrowser/TabBrowser.lpi rename to demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lpi diff --git a/demos/Lazarus/TabbedBrowser/TabBrowser.lpr b/demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lpr similarity index 100% rename from demos/Lazarus/TabbedBrowser/TabBrowser.lpr rename to demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lpr diff --git a/demos/Lazarus/TabbedBrowser/TabBrowser.lps b/demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lps similarity index 100% rename from demos/Lazarus/TabbedBrowser/TabBrowser.lps rename to demos/Lazarus_Windows/TabbedBrowser/TabBrowser.lps diff --git a/demos/Lazarus/URLRequest/cef.inc b/demos/Lazarus_Windows/TabbedBrowser/cef.inc similarity index 100% rename from demos/Lazarus/URLRequest/cef.inc rename to demos/Lazarus_Windows/TabbedBrowser/cef.inc diff --git a/demos/Lazarus/TabbedBrowser/uMainForm.lfm b/demos/Lazarus_Windows/TabbedBrowser/uMainForm.lfm similarity index 100% rename from demos/Lazarus/TabbedBrowser/uMainForm.lfm rename to demos/Lazarus_Windows/TabbedBrowser/uMainForm.lfm diff --git a/demos/Lazarus/TabbedBrowser/uMainForm.pas b/demos/Lazarus_Windows/TabbedBrowser/uMainForm.pas similarity index 100% rename from demos/Lazarus/TabbedBrowser/uMainForm.pas rename to demos/Lazarus_Windows/TabbedBrowser/uMainForm.pas diff --git a/demos/Lazarus/ToolBoxBrowser2/00-Delete.bat b/demos/Lazarus_Windows/TabbedBrowser2/00-Delete.bat similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/00-Delete.bat rename to demos/Lazarus_Windows/TabbedBrowser2/00-Delete.bat diff --git a/demos/Lazarus/TabbedBrowser2/TabbedBrowser2.dproj b/demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.dproj similarity index 100% rename from demos/Lazarus/TabbedBrowser2/TabbedBrowser2.dproj rename to demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.dproj diff --git a/demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lpi b/demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lpi similarity index 100% rename from demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lpi rename to demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lpi diff --git a/demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lpr b/demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lpr similarity index 100% rename from demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lpr rename to demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lpr diff --git a/demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lps b/demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lps similarity index 100% rename from demos/Lazarus/TabbedBrowser2/TabbedBrowser2.lps rename to demos/Lazarus_Windows/TabbedBrowser2/TabbedBrowser2.lps diff --git a/demos/Lazarus_Windows/TabbedBrowser2/cef.inc b/demos/Lazarus_Windows/TabbedBrowser2/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/TabbedBrowser2/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus/TabbedBrowser2/uBrowserFrame.lfm b/demos/Lazarus_Windows/TabbedBrowser2/uBrowserFrame.lfm similarity index 100% rename from demos/Lazarus/TabbedBrowser2/uBrowserFrame.lfm rename to demos/Lazarus_Windows/TabbedBrowser2/uBrowserFrame.lfm diff --git a/demos/Lazarus/TabbedBrowser2/uBrowserFrame.pas b/demos/Lazarus_Windows/TabbedBrowser2/uBrowserFrame.pas similarity index 100% rename from demos/Lazarus/TabbedBrowser2/uBrowserFrame.pas rename to demos/Lazarus_Windows/TabbedBrowser2/uBrowserFrame.pas diff --git a/demos/Lazarus/TabbedBrowser2/uBrowserTab.pas b/demos/Lazarus_Windows/TabbedBrowser2/uBrowserTab.pas similarity index 100% rename from demos/Lazarus/TabbedBrowser2/uBrowserTab.pas rename to demos/Lazarus_Windows/TabbedBrowser2/uBrowserTab.pas diff --git a/demos/Lazarus/TabbedBrowser2/uMainForm.lfm b/demos/Lazarus_Windows/TabbedBrowser2/uMainForm.lfm similarity index 100% rename from demos/Lazarus/TabbedBrowser2/uMainForm.lfm rename to demos/Lazarus_Windows/TabbedBrowser2/uMainForm.lfm diff --git a/demos/Lazarus/TabbedBrowser2/uMainForm.pas b/demos/Lazarus_Windows/TabbedBrowser2/uMainForm.pas similarity index 100% rename from demos/Lazarus/TabbedBrowser2/uMainForm.pas rename to demos/Lazarus_Windows/TabbedBrowser2/uMainForm.pas diff --git a/demos/Lazarus/URLRequest/00-Delete.bat b/demos/Lazarus_Windows/TinyBrowser/00-Delete.bat similarity index 100% rename from demos/Lazarus/URLRequest/00-Delete.bat rename to demos/Lazarus_Windows/TinyBrowser/00-Delete.bat diff --git a/demos/Lazarus/TinyBrowser/TinyBrowser.lpi b/demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lpi similarity index 100% rename from demos/Lazarus/TinyBrowser/TinyBrowser.lpi rename to demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lpi diff --git a/demos/Lazarus/TinyBrowser/TinyBrowser.lpr b/demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lpr similarity index 100% rename from demos/Lazarus/TinyBrowser/TinyBrowser.lpr rename to demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lpr diff --git a/demos/Lazarus/TinyBrowser/TinyBrowser.lps b/demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lps similarity index 100% rename from demos/Lazarus/TinyBrowser/TinyBrowser.lps rename to demos/Lazarus_Windows/TinyBrowser/TinyBrowser.lps diff --git a/demos/Lazarus_Windows/TinyBrowser/cef.inc b/demos/Lazarus_Windows/TinyBrowser/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus/TinyBrowser/uTinyBrowser.pas b/demos/Lazarus_Windows/TinyBrowser/uTinyBrowser.pas similarity index 100% rename from demos/Lazarus/TinyBrowser/uTinyBrowser.pas rename to demos/Lazarus_Windows/TinyBrowser/uTinyBrowser.pas diff --git a/demos/Lazarus_Windows/TinyBrowser2/00-Delete.bat b/demos/Lazarus_Windows/TinyBrowser2/00-Delete.bat new file mode 100644 index 00000000..0b5ba5c8 --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser2/00-Delete.bat @@ -0,0 +1,2 @@ +rmdir /S /Q lib +rmdir /S /Q backup diff --git a/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpi b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpi new file mode 100644 index 00000000..379bd147 --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpi @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <General> + <Flags> + <MainUnitHasUsesSectionForAllUnits Value="False"/> + <MainUnitHasCreateFormStatements Value="False"/> + <MainUnitHasTitleStatement Value="False"/> + <MainUnitHasScaledStatement Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> + <Title Value="TinyBrowser2"/> + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="2"> + <Unit0> + <Filename Value="TinyBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="uTinyBrowser2.pas"/> + <IsPartOfProject Value="True"/> + </Unit1> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\TinyBrowser2"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpr b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpr new file mode 100644 index 00000000..8c9d24f4 --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lpr @@ -0,0 +1,64 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program TinyBrowser2; + +{$MODE Delphi} + +uses + Interfaces, + uCEFApplication, + uTinyBrowser2 in 'uTinyBrowser2.pas'; + +{.$R *.res} + +{$IFDEF WIN32} + // CEF needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + CreateGlobalCEFApp; + + if GlobalCEFApp.StartMainProcess then + begin + GlobalCEFApp.RunMessageLoop; + DestroyTinyBrowser; + end; + + DestroyGlobalCEFApp; +end. diff --git a/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lps b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lps new file mode 100644 index 00000000..225847dc --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser2/TinyBrowser2.lps @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="3"> + <Unit0> + <Filename Value="TinyBrowser2.lpr"/> + <IsPartOfProject Value="True"/> + <TopLine Value="36"/> + <CursorPos X="3" Y="43"/> + <UsageCount Value="21"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="uTinyBrowser2.pas"/> + <IsPartOfProject Value="True"/> + <IsVisibleTab Value="True"/> + <EditorIndex Value="1"/> + <TopLine Value="60"/> + <CursorPos X="51" Y="70"/> + <UsageCount Value="21"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="..\..\..\source\uCEFChromiumCore.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="46"/> + <CursorPos X="95" Y="60"/> + <UsageCount Value="10"/> + </Unit2> + </Units> + <JumpHistory Count="2" HistoryIndex="1"> + <Position1> + <Filename Value="uTinyBrowser2.pas"/> + <Caret Line="111" Column="45" TopLine="130"/> + </Position1> + <Position2> + <Filename Value="TinyBrowser2.lpr"/> + <Caret Line="43" Column="5" TopLine="36"/> + </Position2> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus_Windows/TinyBrowser2/uTinyBrowser2.pas b/demos/Lazarus_Windows/TinyBrowser2/uTinyBrowser2.pas new file mode 100644 index 00000000..11e6ae45 --- /dev/null +++ b/demos/Lazarus_Windows/TinyBrowser2/uTinyBrowser2.pas @@ -0,0 +1,175 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2018 Salvador Díaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uTinyBrowser2; + +{$MODE Delphi} + +interface + +uses + uCEFInterfaces, uCEFTypes, uCEFChromiumCore; + +type + TTinyBrowser2 = class + private + FChromium : TChromiumCore; + + procedure Chromium_OnClose(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction); + procedure Chromium_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + 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); + procedure Chromium_OnOpenUrlFromTab(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const targetUrl: ustring; targetDisposition: TCefWindowOpenDisposition; userGesture: Boolean; out Result: Boolean); + + public + constructor Create; + destructor Destroy; override; + procedure AfterConstruction; override; + end; + +procedure CreateGlobalCEFApp; +procedure DestroyTinyBrowser; + +implementation + +// This demo is similar to the cefsimple demo in the official CEF project. + +// It doesn't use LCL to create forms from Lazarus code. +// It just uses CEF to create a browser window as if it was a popup browser window. + +// This browser doesn't use multiple threads to handle the browser and it doesn't use an external message pump. +// For this reason we have to call GlobalCEFApp.RunMessageLoop to let CEF handle the message loop and +// GlobalCEFApp.QuitMessageLoop when the browser has been destroyed. + +// The destruction steps are much simpler for that reason. +// In this demo it's only necessary to implement the TChromium.OnClose and TChromium.OnBeforeClose events. +// The TChromium.OnClose event only sets aAction to cbaClose to continue closing the browser. +// The TChromium.OnBeforeClose event calls GlobalCEFApp.QuitMessageLoop because the browser has been destroyed +// and it's necessary to close the message loop. + +uses + uCEFApplication; + +var + TinyBrowser : TTinyBrowser2 = nil; + +procedure GlobalCEFApp_OnContextInitialized; +begin + TinyBrowser := TTinyBrowser2.Create; +end; + +procedure CreateGlobalCEFApp; +begin + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.MultiThreadedMessageLoop := False; + GlobalCEFApp.ExternalMessagePump := False; + GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized; + + // This is a workaround for the CEF4Delphi issue #324 : + // https://github.com/salvadordf/CEF4Delphi/issues/324 + GlobalCEFApp.DisableFeatures := 'WinUseBrowserSpellChecker'; +end; + +procedure DestroyTinyBrowser; +begin + if (TinyBrowser <> nil) then + begin + TinyBrowser.Free; + TinyBrowser := nil; + end; +end; + +constructor TTinyBrowser2.Create; +begin + inherited Create; + + FChromium := nil; +end; + +destructor TTinyBrowser2.Destroy; +begin + if (FChromium <> nil) then + begin + FChromium.Free; + FChromium := nil; + end; + + inherited Destroy; +end; + +procedure TTinyBrowser2.AfterConstruction; +begin + inherited AfterConstruction; + + FChromium := TChromiumCore.Create(nil); + FChromium.DefaultURL := 'https://www.google.com'; + FChromium.OnClose := Chromium_OnClose; + FChromium.OnBeforeClose := Chromium_OnBeforeClose; + FChromium.OnBeforePopup := Chromium_OnBeforePopup; + FChromium.OnOpenUrlFromTab := Chromium_OnOpenUrlFromTab; + FChromium.CreateBrowser('Tiny Browser 2'); +end; + +procedure TTinyBrowser2.Chromium_OnClose(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction); +begin + aAction := cbaClose; +end; + +procedure TTinyBrowser2.Chromium_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + GlobalCEFApp.QuitMessageLoop; +end; + +procedure TTinyBrowser2.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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TTinyBrowser2.Chromium_OnOpenUrlFromTab(Sender: TObject; + const browser: ICefBrowser; const frame: ICefFrame; + const targetUrl: ustring; targetDisposition: TCefWindowOpenDisposition; + userGesture: Boolean; out Result: Boolean); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +end. diff --git a/demos/Lazarus_Windows/ToolBoxBrowser/00-Delete.bat b/demos/Lazarus_Windows/ToolBoxBrowser/00-Delete.bat new file mode 100644 index 00000000..0b5ba5c8 --- /dev/null +++ b/demos/Lazarus_Windows/ToolBoxBrowser/00-Delete.bat @@ -0,0 +1,2 @@ +rmdir /S /Q lib +rmdir /S /Q backup diff --git a/demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lpi b/demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lpi similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lpi rename to demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lpi diff --git a/demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lpr b/demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lpr similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lpr rename to demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lpr diff --git a/demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lps b/demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lps similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/ToolBoxBrowser.lps rename to demos/Lazarus_Windows/ToolBoxBrowser/ToolBoxBrowser.lps diff --git a/demos/Lazarus_Windows/ToolBoxBrowser/cef.inc b/demos/Lazarus_Windows/ToolBoxBrowser/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/ToolBoxBrowser/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus/ToolBoxBrowser/uChildForm.lfm b/demos/Lazarus_Windows/ToolBoxBrowser/uChildForm.lfm similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/uChildForm.lfm rename to demos/Lazarus_Windows/ToolBoxBrowser/uChildForm.lfm diff --git a/demos/Lazarus/ToolBoxBrowser/uChildForm.pas b/demos/Lazarus_Windows/ToolBoxBrowser/uChildForm.pas similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/uChildForm.pas rename to demos/Lazarus_Windows/ToolBoxBrowser/uChildForm.pas diff --git a/demos/Lazarus/ToolBoxBrowser/uMainForm.lfm b/demos/Lazarus_Windows/ToolBoxBrowser/uMainForm.lfm similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/uMainForm.lfm rename to demos/Lazarus_Windows/ToolBoxBrowser/uMainForm.lfm diff --git a/demos/Lazarus/ToolBoxBrowser/uMainForm.pas b/demos/Lazarus_Windows/ToolBoxBrowser/uMainForm.pas similarity index 100% rename from demos/Lazarus/ToolBoxBrowser/uMainForm.pas rename to demos/Lazarus_Windows/ToolBoxBrowser/uMainForm.pas diff --git a/demos/Lazarus_Windows/ToolBoxBrowser2/00-Delete.bat b/demos/Lazarus_Windows/ToolBoxBrowser2/00-Delete.bat new file mode 100644 index 00000000..0b5ba5c8 --- /dev/null +++ b/demos/Lazarus_Windows/ToolBoxBrowser2/00-Delete.bat @@ -0,0 +1,2 @@ +rmdir /S /Q lib +rmdir /S /Q backup diff --git a/demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lpi b/demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lpi similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lpi rename to demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lpi diff --git a/demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lpr b/demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lpr similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lpr rename to demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lpr diff --git a/demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lps b/demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lps similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/ToolBoxBrowser2.lps rename to demos/Lazarus_Windows/ToolBoxBrowser2/ToolBoxBrowser2.lps diff --git a/demos/Lazarus_Windows/ToolBoxBrowser2/cef.inc b/demos/Lazarus_Windows/ToolBoxBrowser2/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/ToolBoxBrowser2/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus/ToolBoxBrowser2/uMainForm.lfm b/demos/Lazarus_Windows/ToolBoxBrowser2/uMainForm.lfm similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/uMainForm.lfm rename to demos/Lazarus_Windows/ToolBoxBrowser2/uMainForm.lfm diff --git a/demos/Lazarus/ToolBoxBrowser2/uMainForm.pas b/demos/Lazarus_Windows/ToolBoxBrowser2/uMainForm.pas similarity index 100% rename from demos/Lazarus/ToolBoxBrowser2/uMainForm.pas rename to demos/Lazarus_Windows/ToolBoxBrowser2/uMainForm.pas diff --git a/demos/Lazarus_Windows/URLRequest/00-Delete.bat b/demos/Lazarus_Windows/URLRequest/00-Delete.bat new file mode 100644 index 00000000..0b5ba5c8 --- /dev/null +++ b/demos/Lazarus_Windows/URLRequest/00-Delete.bat @@ -0,0 +1,2 @@ +rmdir /S /Q lib +rmdir /S /Q backup diff --git a/demos/Lazarus/URLRequest/URLRequest.lpi b/demos/Lazarus_Windows/URLRequest/URLRequest.lpi similarity index 100% rename from demos/Lazarus/URLRequest/URLRequest.lpi rename to demos/Lazarus_Windows/URLRequest/URLRequest.lpi diff --git a/demos/Lazarus/URLRequest/URLRequest.lpr b/demos/Lazarus_Windows/URLRequest/URLRequest.lpr similarity index 100% rename from demos/Lazarus/URLRequest/URLRequest.lpr rename to demos/Lazarus_Windows/URLRequest/URLRequest.lpr diff --git a/demos/Lazarus/URLRequest/URLRequest.lps b/demos/Lazarus_Windows/URLRequest/URLRequest.lps similarity index 100% rename from demos/Lazarus/URLRequest/URLRequest.lps rename to demos/Lazarus_Windows/URLRequest/URLRequest.lps diff --git a/demos/Lazarus_Windows/URLRequest/cef.inc b/demos/Lazarus_Windows/URLRequest/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/URLRequest/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus/URLRequest/uURLRequest.lfm b/demos/Lazarus_Windows/URLRequest/uURLRequest.lfm similarity index 100% rename from demos/Lazarus/URLRequest/uURLRequest.lfm rename to demos/Lazarus_Windows/URLRequest/uURLRequest.lfm diff --git a/demos/Lazarus/URLRequest/uURLRequest.pas b/demos/Lazarus_Windows/URLRequest/uURLRequest.pas similarity index 100% rename from demos/Lazarus/URLRequest/uURLRequest.pas rename to demos/Lazarus_Windows/URLRequest/uURLRequest.pas diff --git a/demos/Lazarus_Windows/WebpageSnapshot/00-Delete.bat b/demos/Lazarus_Windows/WebpageSnapshot/00-Delete.bat new file mode 100644 index 00000000..0b5ba5c8 --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/00-Delete.bat @@ -0,0 +1,2 @@ +rmdir /S /Q lib +rmdir /S /Q backup diff --git a/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpi b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpi new file mode 100644 index 00000000..d9d1e7fb --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpi @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <General> + <Flags> + <MainUnitHasUsesSectionForAllUnits Value="False"/> + <MainUnitHasCreateFormStatements Value="False"/> + <MainUnitHasTitleStatement Value="False"/> + <MainUnitHasScaledStatement Value="False"/> + </Flags> + <SessionStorage Value="InProjectDir"/> + <MainUnit Value="0"/> + <Title Value="WebpageSnapshot"/> + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="CEF4Delphi_Lazarus"/> + </Item1> + <Item2> + <PackageName Value="LCL"/> + </Item2> + </RequiredPackages> + <Units Count="3"> + <Unit0> + <Filename Value="WebpageSnapshot.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="uCEFBrowserThread.pas"/> + <IsPartOfProject Value="True"/> + </Unit1> + <Unit2> + <Filename Value="uWebpageSnapshot.pas"/> + <IsPartOfProject Value="True"/> + <HasResources Value="True"/> + </Unit2> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <PathDelim Value="\"/> + <Target> + <Filename Value="..\..\..\bin\WebpageSnapshot"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + </SyntaxOptions> + </Parsing> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + <Other> + <CustomOptions Value="-dBorland -dVer150 -dDelphi7 -dCompiler6_Up -dPUREPASCAL"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpr b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpr new file mode 100644 index 00000000..06c457b0 --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lpr @@ -0,0 +1,73 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +program WebpageSnapshot; + +{$MODE Delphi} + +{$I cef.inc} + +uses + {$IFDEF DELPHI16_UP} + Vcl.Forms, + {$ELSE} + Forms, Interfaces, + {$ENDIF} + uCEFApplication, + uCEFBrowserThread in 'uCEFBrowserThread.pas', + uWebpageSnapshot in 'uWebpageSnapshot.pas' {WebpageSnapshotFrm}; + +{.$R *.res} + +{$IFDEF WIN32} + // CEF3 needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM. + {$SetPEFlags $20} +{$ENDIF} + +begin + CreateGlobalCEFApp; + + if GlobalCEFApp.StartMainProcess then + begin + Application.Initialize; + Application.MainFormOnTaskbar := True; + Application.CreateForm(TWebpageSnapshotFrm, WebpageSnapshotFrm); + Application.Run; + end; + + DestroyGlobalCEFApp; +end. diff --git a/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lps b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lps new file mode 100644 index 00000000..8299477a --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/WebpageSnapshot.lps @@ -0,0 +1,167 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <PathDelim Value="\"/> + <Version Value="11"/> + <BuildModes Active="Default"/> + <Units Count="6"> + <Unit0> + <Filename Value="WebpageSnapshot.lpr"/> + <IsPartOfProject Value="True"/> + <TopLine Value="45"/> + <CursorPos X="37" Y="58"/> + <UsageCount Value="23"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="uCEFBrowserThread.pas"/> + <IsPartOfProject Value="True"/> + <IsVisibleTab Value="True"/> + <EditorIndex Value="1"/> + <TopLine Value="637"/> + <CursorPos X="70" Y="657"/> + <UsageCount Value="23"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="uWebpageSnapshot.pas"/> + <IsPartOfProject Value="True"/> + <HasResources Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="139"/> + <CursorPos X="74" Y="162"/> + <UsageCount Value="23"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit2> + <Unit3> + <Filename Value="C:\lazarus\fpc\3.2.0\source\packages\fuse\src\fuse.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="234"/> + <CursorPos X="77" Y="256"/> + <UsageCount Value="10"/> + </Unit3> + <Unit4> + <Filename Value="C:\lazarus\lcl\include\statuspanels.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="5"/> + <CursorPos Y="29"/> + <UsageCount Value="10"/> + </Unit4> + <Unit5> + <Filename Value="..\..\..\source\uCEFBufferPanel.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="628"/> + <CursorPos Y="644"/> + <UsageCount Value="10"/> + </Unit5> + </Units> + <JumpHistory Count="25" HistoryIndex="24"> + <Position1> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="381" TopLine="361"/> + </Position1> + <Position2> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="383" TopLine="361"/> + </Position2> + <Position3> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="384" TopLine="361"/> + </Position3> + <Position4> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="386" TopLine="363"/> + </Position4> + <Position5> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="388" TopLine="365"/> + </Position5> + <Position6> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="390" TopLine="367"/> + </Position6> + <Position7> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="392" TopLine="369"/> + </Position7> + <Position8> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="394" TopLine="371"/> + </Position8> + <Position9> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="396" TopLine="373"/> + </Position9> + <Position10> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="397" TopLine="374"/> + </Position10> + <Position11> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="398" TopLine="375"/> + </Position11> + <Position12> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="397" TopLine="375"/> + </Position12> + <Position13> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="400" TopLine="377"/> + </Position13> + <Position14> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="401" TopLine="378"/> + </Position14> + <Position15> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="403" TopLine="380"/> + </Position15> + <Position16> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="404" TopLine="381"/> + </Position16> + <Position17> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="406" TopLine="383"/> + </Position17> + <Position18> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="595" TopLine="570"/> + </Position18> + <Position19> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="336" Column="203" TopLine="334"/> + </Position19> + <Position20> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="98" Column="191" TopLine="98"/> + </Position20> + <Position21> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="351" Column="65" TopLine="418"/> + </Position21> + <Position22> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="644" TopLine="630"/> + </Position22> + <Position23> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="337" TopLine="333"/> + </Position23> + <Position24> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="651" TopLine="637"/> + </Position24> + <Position25> + <Filename Value="uCEFBrowserThread.pas"/> + <Caret Line="653" TopLine="637"/> + </Position25> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes Count="0" ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/demos/Lazarus_Windows/WebpageSnapshot/cef.inc b/demos/Lazarus_Windows/WebpageSnapshot/cef.inc new file mode 100644 index 00000000..a4c8d038 --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/cef.inc @@ -0,0 +1,456 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2017 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + + // The complete list of compiler versions is here : + // http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Compiler_Versions + +{$DEFINE DELPHI_VERSION_UNKNOW} + +// Delphi 5 +{$IFDEF VER130} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} +{$ENDIF} + +// Delphi 6 +{$IFDEF VER140} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} +{$ENDIF} + +// Delphi 7 +{$IFDEF VER150} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} +{$ENDIF} + +// Delphi 8 +{$IFDEF VER160} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} +{$ENDIF} + +// Delphi 2005 +{$IFDEF VER170} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} +{$ENDIF} + +{$IFDEF VER180} + {$UNDEF DELPHI_VERSION_UNKNOW} + // Delphi 2007 + {$IFDEF VER185} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + // Delphi 2006 + {$ELSE} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$ENDIF} +{$ENDIF} + +// Delphi 2009 +{$IFDEF VER200} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} +{$ENDIF} + +//Delphi 2010 +{$IFDEF VER210} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} +{$ENDIF} + +// Delphi XE +{$IFDEF VER220} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} +{$ENDIF} + +// Delphi XE2 (First FireMonkey and 64bit compiler) +{$IFDEF VER230} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} +{$ENDIF} + +// Delphi XE3 +{$IFDEF VER240} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} +{$ENDIF} + +// Delphi XE4 +{$IFDEF VER250} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} +{$ENDIF} + +// Delphi XE5 +{$IFDEF VER260} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} +{$ENDIF} + +// Delphi XE6 +{$IFDEF VER270} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} +{$ENDIF} + +// Delphi XE7 +{$IFDEF VER280} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} +{$ENDIF} + +// Delphi XE8 +{$IFDEF VER290} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} +{$ENDIF VER290} + +// Rad Studio 10 - Delphi Seattle +{$IFDEF VER300} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} +{$ENDIF} + +// Rad Studio 10.1 - Delphi Berlin +{$IFDEF VER310} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} +{$ENDIF} + +// Rad Studio 10.2 - Delphi Tokyo +{$IFDEF VER320} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} +{$ENDIF} + +// Rad Studio 10.3 - Delphi Rio +{$IFDEF VER330} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} +{$ENDIF} + +// Rad Studio 10.4 - Delphi Sydney +{$IFDEF VER340} + {$UNDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} +{$ENDIF} + +{$IFDEF FPC} + {$DEFINE SUPPORTS_INLINE} + {$IF DEFINED(FPC_FULLVERSION) AND (FPC_FULLVERSION >= 30200)} + {$DEFINE FPC_VER_320} + {$IFEND} +{$ELSE} + {$IFDEF DELPHI_VERSION_UNKNOW} + {$DEFINE DELPHI5_UP} + {$DEFINE DELPHI6_UP} + {$DEFINE DELPHI7_UP} + {$DEFINE DELPHI8_UP} + {$DEFINE DELPHI9_UP} + {$DEFINE DELPHI10_UP} + {$DEFINE DELPHI11_UP} + {$DEFINE DELPHI12_UP} + {$DEFINE DELPHI14_UP} + {$DEFINE DELPHI15_UP} + {$DEFINE DELPHI16_UP} + {$DEFINE DELPHI17_UP} + {$DEFINE DELPHI18_UP} + {$DEFINE DELPHI19_UP} + {$DEFINE DELPHI20_UP} + {$DEFINE DELPHI21_UP} + {$DEFINE DELPHI22_UP} + {$DEFINE DELPHI23_UP} + {$DEFINE DELPHI24_UP} + {$DEFINE DELPHI25_UP} + {$DEFINE DELPHI26_UP} + {$DEFINE DELPHI27_UP} + {$ENDIF} +{$ENDIF} + +{$IFDEF DELPHI9_UP} + {$DEFINE SUPPORTS_INLINE} +{$ENDIF} + +{$IF DEFINED(CPUX32) OR + DEFINED(CPU386) OR + DEFINED(CPUi386) OR + DEFINED(CPUPOWERPC32) OR + DEFINED(CPUSPARC32) OR + DEFINED(CPU32BITS) OR + DEFINED(CPUARM32) OR + DEFINED(WIN32) OR + DEFINED(IOS32) OR + DEFINED(MACOS32) OR + DEFINED(LINUX32) OR + DEFINED(POSIX32) OR + DEFINED(ANDROID32)} + {$DEFINE TARGET_32BITS} +{$IFEND} + diff --git a/demos/Lazarus_Windows/WebpageSnapshot/uCEFBrowserThread.pas b/demos/Lazarus_Windows/WebpageSnapshot/uCEFBrowserThread.pas new file mode 100644 index 00000000..ddfc9a8b --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/uCEFBrowserThread.pas @@ -0,0 +1,665 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uCEFBrowserThread; + +{$MODE Delphi} + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes, Vcl.Graphics, System.SyncObjs, System.Math, + {$ELSE} + LCLIntf, LCLType, LMessages, Windows, Messages, SysUtils, Classes, Graphics, SyncObjs, Math, + {$ENDIF} + uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFBufferPanel, uCEFChromiumCore, uCEFMiscFunctions; + +type + TVirtualBufferPanel = class(TBufferPanel) + protected + FCustomScale : single; + + function GetScreenScale : single; override; + + public + property CustomScale : single read FCustomScale write FCustomScale; + end; + + TCEFBrowserThread = class(TThread) + protected + FBrowser : TChromium; + FPanel : TVirtualBufferPanel; + FPanelSize : TSize; + FScreenScale : single; + FPopUpBitmap : TBitmap; + FPopUpRect : TRect; + FResizeCS : TCriticalSection; + FBrowserInfoCS : TCriticalSection; + FShowPopUp : boolean; + FClosing : boolean; + FResizing : boolean; + FPendingResize : boolean; + FInitialized : boolean; + FDefaultURL : ustring; + FSnapshot : TBitmap; + FDelayMs : integer; + FOnSnapshotAvailable : TNotifyEvent; + FOnError : TNotifyEvent; + FErrorCode : integer; + FErrorText : ustring; + FFailedUrl : ustring; + FPendingUrl : ustring; + + function GetErrorCode : integer; + function GetErrorText : ustring; + function GetFailedUrl : ustring; + function GetInitialized : boolean; + + procedure Panel_OnResize(Sender: TObject); + + procedure Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, aHeight: Integer); + procedure Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); + procedure Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); + procedure Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); + procedure Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); + procedure Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); + procedure Browser_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); + procedure Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); + procedure Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); + procedure Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); + + procedure DoOnError; + procedure DoOnSnapshotAvailable; + procedure Resize; + function CreateBrowser : boolean; + procedure TakeSnapshot; + procedure CloseBrowser; + procedure WebpagePostProcessing; + procedure LoadPendingURL; + procedure Execute; override; + + public + constructor Create(const aDefaultURL : ustring; aWidth, aHeight : integer; aDelayMs : integer = 500; const aScreenScale : single = 1); + destructor Destroy; override; + procedure AfterConstruction; override; + function TerminateBrowserThread : boolean; + function CopySnapshot(var aSnapshot : TBitmap) : boolean; + procedure LoadUrl(const aURL : ustring); + + property ErrorCode : integer read GetErrorCode; + property ErrorText : ustring read GetErrorText; + property FailedUrl : ustring read GetFailedUrl; + property Initialized : boolean read GetInitialized; + + property OnSnapshotAvailable : TNotifyEvent read FOnSnapshotAvailable write FOnSnapshotAvailable; + property OnError : TNotifyEvent read FOnError write FOnError; + end; + +implementation + +const + CEF_WEBPAGE_LOADED_MSG = WM_APP + 1; + CEF_WEBPAGE_ERROR_MSG = WM_APP + 2; + CEF_CLOSE_BROWSER_MSG = WM_APP + 3; + CEF_LOAD_PENDING_URL_MSG = WM_APP + 4; + +// ************************************* +// ******** TVirtualBufferPanel ******** +// ************************************* + +function TVirtualBufferPanel.GetScreenScale : single; +begin + Result := FCustomScale; +end; + + +// ************************************* +// ********* TCEFBrowserThread ********* +// ************************************* + +constructor TCEFBrowserThread.Create(const aDefaultURL : ustring; aWidth, aHeight, aDelayMs : integer; const aScreenScale : single); +begin + inherited Create(True); + + FreeOnTerminate := False; + FInitialized := False; + FBrowser := nil; + FPanel := nil; + FPanelSize.cx := aWidth; + FPanelSize.cy := aHeight; + FScreenScale := aScreenScale; + FDefaultURL := aDefaultURL; + FPopUpBitmap := nil; + FPopUpRect := rect(0, 0, 0, 0); + FShowPopUp := False; + FResizing := False; + FPendingResize := False; + FResizeCS := nil; + FBrowserInfoCS := nil; + FSnapshot := nil; + FDelayMs := aDelayMs; + FOnSnapshotAvailable := nil; + FOnError := nil; + FClosing := False; +end; + +destructor TCEFBrowserThread.Destroy; +begin + if (FBrowser <> nil) then + FreeAndNil(FBrowser); + + if (FPanel <> nil) then + FreeAndNil(FPanel); + + if (FPopUpBitmap <> nil) then + FreeAndNil(FPopUpBitmap); + + if (FSnapshot <> nil) then + FreeAndNil(FSnapshot); + + if (FResizeCS <> nil) then + FreeAndNil(FResizeCS); + + if (FBrowserInfoCS <> nil) then + FreeAndNil(FBrowserInfoCS); + + inherited Destroy; +end; + +procedure TCEFBrowserThread.AfterConstruction; +begin + inherited AfterConstruction; + + FResizeCS := TCriticalSection.Create; + FBrowserInfoCS := TCriticalSection.Create; + + FPanel := TVirtualBufferPanel.Create(nil); + FPanel.CustomScale := FScreenScale; + FPanel.Width := FPanelSize.cx; + FPanel.Height := FPanelSize.cy; + FPanel.OnResize := Panel_OnResize; + + FBrowser := TChromium.Create(nil); + FBrowser.DefaultURL := FDefaultURL; + FBrowser.Options.BackgroundColor := CefColorSetARGB($FF, $FF, $FF, $FF); + FBrowser.OnAfterCreated := Browser_OnAfterCreated; + FBrowser.OnPaint := Browser_OnPaint; + FBrowser.OnGetViewRect := Browser_OnGetViewRect; + FBrowser.OnGetScreenPoint := Browser_OnGetScreenPoint; + FBrowser.OnGetScreenInfo := Browser_OnGetScreenInfo; + FBrowser.OnPopupShow := Browser_OnPopupShow; + FBrowser.OnPopupSize := Browser_OnPopupSize; + FBrowser.OnBeforePopup := Browser_OnBeforePopup; + FBrowser.OnBeforeClose := Browser_OnBeforeClose; + FBrowser.OnLoadError := Browser_OnLoadError; + FBrowser.OnLoadingStateChange := Browser_OnLoadingStateChange; +end; + +function TCEFBrowserThread.GetErrorCode : integer; +begin + FBrowserInfoCS.Acquire; + Result := FErrorCode; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetErrorText : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FErrorText; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetFailedUrl : ustring; +begin + FBrowserInfoCS.Acquire; + Result := FFailedUrl; + FBrowserInfoCS.Release; +end; + +function TCEFBrowserThread.GetInitialized : boolean; +begin + Result := False; + + if assigned(FBrowserInfoCS) and assigned(FBrowser) then + try + FBrowserInfoCS.Acquire; + Result := FInitialized and FBrowser.Initialized; + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.CopySnapshot(var aSnapshot : TBitmap) : boolean; +begin + Result := False; + + if FClosing or Terminated or (FBrowserInfoCS = nil) then exit; + + try + try + FBrowserInfoCS.Acquire; + + if assigned(FSnapshot) and not(FSnapshot.Empty) then + begin + if (aSnapshot = nil) then + begin + aSnapshot := TBitmap.Create; + aSnapshot.PixelFormat := pf32bit; + aSnapshot.HandleType := bmDIB; + aSnapshot.Width := FSnapshot.Width; + aSnapshot.Height := FSnapshot.Height; + end; + + aSnapshot.Assign(FSnapshot); + Result := True; + end; + except + on e : exception do + if CustomExceptionHandler('TCEFBrowserThread.CopySnapshot', e) then raise; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.LoadUrl(const aURL : ustring); +begin + if FClosing or Terminated or (FBrowserInfoCS = nil) then + exit; + + if Initialized then + try + FBrowserInfoCS.Acquire; + FPendingUrl := aURL; + PostThreadMessage(ThreadID, CEF_LOAD_PENDING_URL_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +function TCEFBrowserThread.TerminateBrowserThread : boolean; +begin + Result := Initialized and + PostThreadMessage(ThreadID, CEF_CLOSE_BROWSER_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.Panel_OnResize(Sender: TObject); +begin + Resize; +end; + +procedure TCEFBrowserThread.Browser_OnAfterCreated(Sender: TObject; const browser: ICefBrowser); +begin + FBrowserInfoCS.Acquire; + FInitialized := True; + FBrowserInfoCS.Release; +end; + +procedure TCEFBrowserThread.Browser_OnPaint(Sender: TObject; const browser: ICefBrowser; kind: TCefPaintElementType; dirtyRectsCount: NativeUInt; const dirtyRects: PCefRectArray; const buffer: Pointer; aWidth, aHeight: Integer); +var + src, dst: PByte; + i, j, TempLineSize, TempSrcOffset, TempDstOffset, SrcStride : Integer; + n : NativeUInt; + TempWidth, TempHeight : integer; + TempBufferBits : Pointer; + TempForcedResize : boolean; + TempBitmap : TBitmap; + TempSrcRect : TRect; +begin + try + FResizeCS.Acquire; + TempForcedResize := False; + + if FPanel.BeginBufferDraw then + begin + if (kind = PET_POPUP) then + begin + if (FPopUpBitmap = nil) or + (aWidth <> FPopUpBitmap.Width) or + (aHeight <> FPopUpBitmap.Height) then + begin + if (FPopUpBitmap <> nil) then FPopUpBitmap.Free; + + FPopUpBitmap := TBitmap.Create; + FPopUpBitmap.PixelFormat := pf32bit; + FPopUpBitmap.HandleType := bmDIB; + FPopUpBitmap.Width := aWidth; + FPopUpBitmap.Height := aHeight; + end; + + TempBitmap := FPopUpBitmap; + TempBitmap.BeginUpdate; + + TempWidth := FPopUpBitmap.Width; + TempHeight := FPopUpBitmap.Height; + end + else + begin + TempForcedResize := FPanel.UpdateBufferDimensions(aWidth, aHeight) or not(FPanel.BufferIsResized(False)); + + TempBitmap := FPanel.Buffer; + TempBitmap.BeginUpdate; + + TempWidth := FPanel.BufferWidth; + TempHeight := FPanel.BufferHeight; + end; + + SrcStride := aWidth * SizeOf(TRGBQuad); + n := 0; + + while (n < dirtyRectsCount) do + begin + if (dirtyRects^[n].x >= 0) and (dirtyRects^[n].y >= 0) then + begin + TempLineSize := min(dirtyRects^[n].width, TempWidth - dirtyRects^[n].x) * SizeOf(TRGBQuad); + + if (TempLineSize > 0) then + begin + TempSrcOffset := ((dirtyRects^[n].y * aWidth) + dirtyRects^[n].x) * SizeOf(TRGBQuad); + TempDstOffset := (dirtyRects^[n].x * SizeOf(TRGBQuad)); + + src := @PByte(buffer)[TempSrcOffset]; + + i := 0; + j := min(dirtyRects^[n].height, TempHeight - dirtyRects^[n].y); + + while (i < j) do + begin + TempBufferBits := TempBitmap.Scanline[dirtyRects^[n].y + i]; + dst := @PByte(TempBufferBits)[TempDstOffset]; + + Move(src^, dst^, TempLineSize); + + Inc(src, SrcStride); + inc(i); + end; + end; + end; + + inc(n); + end; + + TempBitmap.EndUpdate; + + if FShowPopup and (FPopUpBitmap <> nil) then + begin + TempSrcRect := Rect(0, 0, + min(FPopUpRect.Right - FPopUpRect.Left, FPopUpBitmap.Width), + min(FPopUpRect.Bottom - FPopUpRect.Top, FPopUpBitmap.Height)); + + FPanel.BufferDraw(FPopUpBitmap, TempSrcRect, FPopUpRect); + end; + + FPanel.EndBufferDraw; + + if (kind = PET_VIEW) then + begin + if TempForcedResize or FPendingResize then + PostThreadMessage(ThreadID, CEF_PENDINGRESIZE, 0, 0); + + FResizing := False; + FPendingResize := False; + end; + end; + finally + FResizeCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnGetViewRect(Sender: TObject; const browser: ICefBrowser; var rect: TCefRect); +begin + rect.x := 0; + rect.y := 0; + rect.width := DeviceToLogical(FPanel.Width, FScreenScale); + rect.height := DeviceToLogical(FPanel.Height, FScreenScale); +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenPoint(Sender: TObject; const browser: ICefBrowser; viewX, viewY: Integer; var screenX, screenY: Integer; out Result: Boolean); +begin + screenX := LogicalToDevice(viewX, FScreenScale); + screenY := LogicalToDevice(viewY, FScreenScale); + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnGetScreenInfo(Sender: TObject; const browser: ICefBrowser; var screenInfo: TCefScreenInfo; out Result: Boolean); +var + TempRect : TCEFRect; +begin + TempRect.x := 0; + TempRect.y := 0; + TempRect.width := DeviceToLogical(FPanel.Width, FScreenScale); + TempRect.height := DeviceToLogical(FPanel.Height, FScreenScale); + + screenInfo.device_scale_factor := FScreenScale; + screenInfo.depth := 0; + screenInfo.depth_per_component := 0; + screenInfo.is_monochrome := Ord(False); + screenInfo.rect := TempRect; + screenInfo.available_rect := TempRect; + + Result := True; +end; + +procedure TCEFBrowserThread.Browser_OnPopupShow(Sender: TObject; const browser: ICefBrowser; show: Boolean); +begin + if show then + FShowPopUp := True + else + begin + FShowPopUp := False; + FPopUpRect := rect(0, 0, 0, 0); + + if (FBrowser <> nil) then FBrowser.Invalidate(PET_VIEW); + end; +end; + +procedure TCEFBrowserThread.Browser_OnPopupSize(Sender: TObject; const browser: ICefBrowser; const rect: PCefRect); +begin + LogicalToDevice(rect^, FScreenScale); + + FPopUpRect.Left := rect.x; + FPopUpRect.Top := rect.y; + FPopUpRect.Right := rect.x + rect.width - 1; + FPopUpRect.Bottom := rect.y + rect.height - 1; +end; + +procedure TCEFBrowserThread.Browser_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); +begin + // For simplicity, this demo blocks all popup windows and new tabs + Result := (targetDisposition in [WOD_NEW_FOREGROUND_TAB, WOD_NEW_BACKGROUND_TAB, WOD_NEW_POPUP, WOD_NEW_WINDOW]); +end; + +procedure TCEFBrowserThread.Browser_OnBeforeClose(Sender: TObject; const browser: ICefBrowser); +begin + PostThreadMessage(ThreadID, WM_QUIT, 0, 0); +end; + +procedure TCEFBrowserThread.Browser_OnLoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); +begin + if not(FClosing) and not(Terminated) and (frame <> nil) and frame.IsValid and frame.IsMain then + try + FBrowserInfoCS.Acquire; + + FErrorCode := errorCode; + FErrorText := errorText; + FFailedUrl := failedUrl; + + PostThreadMessage(ThreadID, CEF_WEBPAGE_ERROR_MSG, 0, 0); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.Browser_OnLoadingStateChange(Sender: TObject; const browser: ICefBrowser; isLoading, canGoBack, canGoForward: Boolean); +begin + if not(FClosing) and not(Terminated) and not(isLoading) then + PostThreadMessage(ThreadID, CEF_WEBPAGE_LOADED_MSG, 0, 0); +end; + +procedure TCEFBrowserThread.DoOnError; +begin + FOnError(self); +end; + +procedure TCEFBrowserThread.DoOnSnapshotAvailable; +begin + FOnSnapshotAvailable(self); +end; + +procedure TCEFBrowserThread.Resize; +begin + if FClosing or Terminated or (FPanel = nil) or (FResizeCS = nil) or (FBrowser = nil) then + exit; + + try + FResizeCS.Acquire; + + if FResizing then + FPendingResize := True + else + if FPanel.BufferIsResized then + FBrowser.Invalidate(PET_VIEW) + else + begin + FResizing := True; + FBrowser.WasResized; + end; + finally + FResizeCS.Release; + end; +end; + +function TCEFBrowserThread.CreateBrowser : boolean; +begin + Result := (FBrowser <> nil) and FBrowser.CreateBrowser; +end; + +procedure TCEFBrowserThread.LoadPendingURL; +begin + if FClosing or Terminated or (FBrowser = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (length(FPendingURL) > 0) then + begin + FBrowser.LoadURL(FPendingURL); + FPendingURL := ''; + end; + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.WebpagePostProcessing; +begin + if FClosing or Terminated then + exit; + + if (FDelayMs > 0) then + sleep(FDelayMs); + + TakeSnapshot; + + if assigned(FOnSnapshotAvailable) then + Synchronize(DoOnSnapshotAvailable); +end; + +procedure TCEFBrowserThread.TakeSnapshot; +begin + if (FPanel = nil) or (FPanel.Buffer = nil) or (FBrowserInfoCS = nil) then + exit; + + try + FBrowserInfoCS.Acquire; + + if (FSnapshot = nil) then + begin + FSnapshot := TBitmap.Create; + FSnapshot.PixelFormat := pf32bit; + FSnapshot.HandleType := bmDIB; + FSnapshot.Width := FPanel.BufferWidth; + FSnapshot.Height := FPanel.BufferHeight; + end; + + FSnapshot.Assign(FPanel.Buffer); + finally + FBrowserInfoCS.Release; + end; +end; + +procedure TCEFBrowserThread.CloseBrowser; +begin + if not(FClosing) and assigned(FBrowser) then + begin + FClosing := True; + FBrowser.CloseBrowser(True); + end; +end; + +procedure TCEFBrowserThread.Execute; +var + TempCont : boolean; + TempMsg : TMsg; +begin + if CreateBrowser then + begin + TempCont := True; + PeekMessage(TempMsg, 0, WM_USER, WM_USER, PM_NOREMOVE); + + while TempCont and GetMessage(TempMsg, 0, 0, 0) and not(Terminated) do + begin + case TempMsg.Message of + WM_QUIT : TempCont := False; + CEF_PENDINGRESIZE : Resize; + CEF_CLOSE_BROWSER_MSG : CloseBrowser; + CEF_LOAD_PENDING_URL_MSG : LoadPendingURL; + CEF_WEBPAGE_LOADED_MSG : WebpagePostProcessing; + CEF_WEBPAGE_ERROR_MSG : if assigned(FOnError) then Synchronize(DoOnError); + end; + + DispatchMessage(TempMsg); + end; + end; +end; + +end. diff --git a/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.lfm b/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.lfm new file mode 100644 index 00000000..43f1f7eb --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.lfm @@ -0,0 +1,66 @@ +object WebpageSnapshotFrm: TWebpageSnapshotFrm + Left = 0 + Top = 0 + Caption = 'Web page snapshot' + ClientHeight = 486 + ClientWidth = 711 + Color = clBtnFace + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -11 + Font.Name = 'Tahoma' + Font.Style = [] + Position = poScreenCenter + OnCloseQuery = FormCloseQuery + OnCreate = FormCreate + PixelsPerInch = 96 + object Image1: TImage + Left = 0 + Top = 25 + Width = 711 + Height = 442 + Align = alClient + AutoSize = True + Center = True + Proportional = True + end + object StatusBar1: TStatusBar + Left = 0 + Top = 467 + Width = 711 + Height = 19 + Panels = < + item + Width = 1000 + end> + SimplePanel = False + end + object NavigationPnl: TPanel + Left = 0 + Top = 0 + Width = 711 + Height = 25 + Align = alTop + BevelOuter = bvNone + TabOrder = 1 + object GoBtn: TButton + Left = 632 + Top = 0 + Width = 75 + Height = 21 + Align = alRight + Caption = 'Go' + TabOrder = 0 + OnClick = GoBtnClick + end + object AddressEdt: TEdit + Left = 0 + Top = 0 + Width = 632 + Height = 21 + Align = alClient + TabOrder = 1 + Text = 'https://www.google.com' + end + end +end diff --git a/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.pas b/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.pas new file mode 100644 index 00000000..a653a6a0 --- /dev/null +++ b/demos/Lazarus_Windows/WebpageSnapshot/uWebpageSnapshot.pas @@ -0,0 +1,167 @@ +// ************************************************************************ +// ***************************** CEF4Delphi ******************************* +// ************************************************************************ +// +// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based +// browser in Delphi applications. +// +// The original license of DCEF3 still applies to CEF4Delphi. +// +// For more information about CEF4Delphi visit : +// https://www.briskbard.com/index.php?lang=en&pageid=cef +// +// Copyright © 2020 Salvador Diaz Fau. All rights reserved. +// +// ************************************************************************ +// ************ vvvv Original license and comments below vvvv ************* +// ************************************************************************ +(* + * Delphi Chromium Embedded 3 + * + * Usage allowed under the restrictions of the Lesser GNU General Public License + * or alternatively the restrictions of the Mozilla Public License 1.1 + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + * the specific language governing rights and limitations under the License. + * + * Unit owner : Henri Gourvest <hgourvest@gmail.com> + * Web site : http://www.progdigy.com + * Repository : http://code.google.com/p/delphichromiumembedded/ + * Group : http://groups.google.com/group/delphichromiumembedded + * + * Embarcadero Technologies, Inc is not permitted to use or redistribute + * this source code without explicit permission. + * + *) + +unit uWebpageSnapshot; + +{$MODE Delphi} + +{$I cef.inc} + +interface + +uses + {$IFDEF DELPHI16_UP} + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, + Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls, + {$ELSE} + LCLIntf, LCLType, LMessages, Messages, SysUtils, Variants, Classes, + Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ExtCtrls, + {$ENDIF} + uCEFBrowserThread; + +type + TWebpageSnapshotFrm = class(TForm) + StatusBar1: TStatusBar; + Image1: TImage; + NavigationPnl: TPanel; + GoBtn: TButton; + AddressEdt: TEdit; + procedure GoBtnClick(Sender: TObject); + procedure FormCreate(Sender: TObject); + procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); + + private + FThread : TCEFBrowserThread; + + procedure Thread_OnError(Sender: TObject); + procedure Thread_OnSnapshotAvailable(Sender: TObject); + end; + +var + WebpageSnapshotFrm: TWebpageSnapshotFrm; + +// This demo shows how to encapsulate a browser without user interface in a thread. + +// The thread in the uCEFBrowserThread unit has a browser in "off-screen" mode +// and it takes a snapshot when the browser has loaded a web page. + +// The thread triggers the TCEFBrowserThread.OnSnapshotAvailable when the main thread +// can copy the snapshot in a bitmap. + +// If there's an error loading the page then TCEFBrowserThread.OnError will be +// triggered and the error information will be available in the +// TCEFBrowserThread.ErrorCode, TCEFBrowserThread.ErrorText and +// TCEFBrowserThread.FailedUrl properties. + +// The TCEFBrowserThread.Create constructor has the default URL, virtual screen size, +// virtual screen scale and a delay as parameters. The delay is applied after the browser +// has finished loading the main frame and before taking the snapshot. + +procedure CreateGlobalCEFApp; + +implementation + +{$R *.lfm} + +uses + uCEFApplication; + +procedure CreateGlobalCEFApp; +begin + GlobalCEFApp := TCefApplication.Create; + GlobalCEFApp.WindowlessRenderingEnabled := True; + GlobalCEFApp.EnableHighDPISupport := True; +end; + +procedure TWebpageSnapshotFrm.GoBtnClick(Sender: TObject); +begin + StatusBar1.Panels[0].Text := 'Loading...'; + screen.cursor := crAppStart; + + if (FThread = nil) then + begin + FThread := TCEFBrowserThread.Create(AddressEdt.Text, 1024, 768); + FThread.OnError := Thread_OnError; + FThread.OnSnapshotAvailable := Thread_OnSnapshotAvailable; + FThread.Start; + end + else + FThread.LoadUrl(AddressEdt.Text); +end; + +procedure TWebpageSnapshotFrm.FormCloseQuery(Sender: TObject; var CanClose: Boolean); +begin + if (FThread <> nil) then + begin + if FThread.TerminateBrowserThread then + FThread.WaitFor; + + FreeAndNil(FThread); + end; + + CanClose := True; +end; + +procedure TWebpageSnapshotFrm.FormCreate(Sender: TObject); +begin + FThread := nil; +end; + +procedure TWebpageSnapshotFrm.Thread_OnError(Sender: TObject); +begin + StatusBar1.Panels[0].Text := 'Error ' + inttostr(FThread.ErrorCode) + ' : ' + FThread.ErrorText + ' - ' + FThread.FailedUrl; + screen.cursor := crDefault; +end; + +procedure TWebpageSnapshotFrm.Thread_OnSnapshotAvailable(Sender: TObject); +var + TempBitmap : TBitmap; +begin + TempBitmap := nil; + screen.cursor := crDefault; + + if (FThread <> nil) and FThread.CopySnapshot(TempBitmap) then + begin + Image1.Picture.Assign(TempBitmap); + StatusBar1.Panels[0].Text := 'Snapshot copied successfully'; + TempBitmap.Free; + end + else + StatusBar1.Panels[0].Text := 'There was an error copying the snapshot'; +end; + +end. diff --git a/source/uCEFBufferPanel.pas b/source/uCEFBufferPanel.pas index 14c2ff88..c62a8b04 100644 --- a/source/uCEFBufferPanel.pas +++ b/source/uCEFBufferPanel.pas @@ -94,7 +94,7 @@ type function GetBufferBits : pointer; function GetBufferWidth : integer; function GetBufferHeight : integer; - function GetScreenScale : single; + function GetScreenScale : single; virtual; {$IFDEF MSWINDOWS} function GetParentFormHandle : TCefWindowHandle; function GetParentForm : TCustomForm; diff --git a/update_CEF4Delphi.json b/update_CEF4Delphi.json index 78d6005c..083dae88 100644 --- a/update_CEF4Delphi.json +++ b/update_CEF4Delphi.json @@ -2,7 +2,7 @@ "UpdateLazPackages" : [ { "ForceNotify" : true, - "InternalVersion" : 206, + "InternalVersion" : 207, "Name" : "cef4delphi_lazarus.lpk", "Version" : "87.1.12.0" }