2017-01-27 16:37:51 +01:00
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ***************************** 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
|
|
|
|
|
//
|
2018-01-06 15:25:32 +01:00
|
|
|
|
// Copyright <20> 2018 Salvador D<>az Fau. All rights reserved.
|
2017-01-27 16:37:51 +01:00
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ 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 uCEFMiscFunctions;
|
|
|
|
|
|
|
|
|
|
{$IFNDEF CPUX64}
|
|
|
|
|
{$ALIGN ON}
|
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-07-28 12:47:57 +02:00
|
|
|
|
WinApi.Windows, System.Classes, System.SysUtils, System.UITypes, WinApi.ActiveX, System.Math,
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$ELSE}
|
2017-07-28 12:47:57 +02:00
|
|
|
|
Windows, Classes, SysUtils, Controls, ActiveX, Math,
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$ENDIF}
|
2017-09-07 22:56:51 +02:00
|
|
|
|
uCEFTypes, uCEFInterfaces, uCEFLibFunctions, uCEFResourceHandler, uCEFGetGeolocationCallback,
|
|
|
|
|
uCEFRegisterCDMCallback;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
const
|
|
|
|
|
Kernel32DLL = 'kernel32.dll';
|
2017-04-26 15:38:50 +02:00
|
|
|
|
SHLWAPIDLL = 'shlwapi.dll';
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
procedure CefStringListToStringList(var aSrcSL : TCefStringList; var aDstSL : TStringList); overload;
|
|
|
|
|
procedure CefStringListToStringList(var aSrcSL : TCefStringList; var aDstSL : TStrings); overload;
|
|
|
|
|
|
|
|
|
|
function CefColorGetA(color: TCefColor): Byte;
|
|
|
|
|
function CefColorGetR(color: TCefColor): byte;
|
|
|
|
|
function CefColorGetG(color: TCefColor): Byte;
|
|
|
|
|
function CefColorGetB(color: TCefColor): Byte;
|
|
|
|
|
|
|
|
|
|
function CefColorSetARGB(a, r, g, b: Byte): TCefColor;
|
|
|
|
|
|
|
|
|
|
function CefInt64Set(int32_low, int32_high: Integer): Int64;
|
|
|
|
|
|
|
|
|
|
function CefInt64GetLow(const int64_val: Int64): Integer;
|
|
|
|
|
function CefInt64GetHigh(const int64_val: Int64): Integer;
|
|
|
|
|
|
2017-05-07 18:04:05 +02:00
|
|
|
|
function CefGetObject(ptr: Pointer): TObject; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
|
|
|
|
|
function CefGetData(const i: ICefBaseRefCounted): Pointer; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
function CefStringAlloc(const str: ustring): TCefString;
|
|
|
|
|
function CefStringClearAndGet(var str: TCefString): ustring;
|
|
|
|
|
|
|
|
|
|
function CefString(const str: ustring): TCefString; overload;
|
|
|
|
|
function CefString(const str: PCefString): ustring; overload;
|
|
|
|
|
function CefUserFreeString(const str: ustring): PCefStringUserFree;
|
|
|
|
|
procedure CefStringFree(const str: PCefString);
|
|
|
|
|
function CefStringFreeAndGet(const str: PCefStringUserFree): ustring;
|
|
|
|
|
procedure CefStringSet(const str: PCefString; const value: ustring);
|
|
|
|
|
|
|
|
|
|
function CefExecuteProcess(var app : ICefApp; aWindowsSandboxInfo : Pointer = nil) : integer;
|
|
|
|
|
function CefRegisterExtension(const name, code: ustring; const Handler: ICefv8Handler): Boolean;
|
|
|
|
|
procedure CefPostTask(ThreadId: TCefThreadId; const task: ICefTask);
|
|
|
|
|
procedure CefPostDelayedTask(ThreadId: TCefThreadId; const task: ICefTask; delayMs: Int64);
|
|
|
|
|
|
|
|
|
|
function CefTimeToSystemTime(const dt: TCefTime): TSystemTime;
|
|
|
|
|
function SystemTimeToCefTime(const dt: TSystemTime): TCefTime;
|
|
|
|
|
function CefTimeToDateTime(const dt: TCefTime): TDateTime;
|
|
|
|
|
function DateTimeToCefTime(dt: TDateTime): TCefTime;
|
|
|
|
|
|
|
|
|
|
function cef_string_wide_copy(const src: PWideChar; src_len: NativeUInt; output: PCefStringWide): Integer;
|
|
|
|
|
function cef_string_utf8_copy(const src: PAnsiChar; src_len: NativeUInt; output: PCefStringUtf8): Integer;
|
|
|
|
|
function cef_string_utf16_copy(const src: PChar16; src_len: NativeUInt; output: PCefStringUtf16): Integer;
|
|
|
|
|
function cef_string_copy(const src: PCefChar; src_len: NativeUInt; output: PCefString): Integer;
|
|
|
|
|
|
|
|
|
|
procedure WindowInfoAsChild(var aWindowInfo : TCefWindowInfo; aParent : THandle; aRect : TRect; const aWindowName : string = '');
|
|
|
|
|
procedure WindowInfoAsPopUp(var aWindowInfo : TCefWindowInfo; aParent : THandle; const aWindowName : string = '');
|
2017-06-06 12:49:27 +02:00
|
|
|
|
procedure WindowInfoAsWindowless(var aWindowInfo : TCefWindowInfo; aParent : THandle; const aWindowName : string = '');
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
function TzSpecificLocalTimeToSystemTime(lpTimeZoneInformation: PTimeZoneInformation; lpLocalTime, lpUniversalTime: PSystemTime): BOOL; stdcall; external Kernel32DLL;
|
|
|
|
|
function SystemTimeToTzSpecificLocalTime(lpTimeZoneInformation: PTimeZoneInformation; lpUniversalTime, lpLocalTime: PSystemTime): BOOL; stdcall; external Kernel32DLL;
|
|
|
|
|
|
2017-04-26 15:38:50 +02:00
|
|
|
|
function PathIsRelativeAnsi(pszPath: LPCSTR): BOOL; stdcall; external SHLWAPIDLL name 'PathIsRelativeA';
|
|
|
|
|
function PathIsRelativeUnicode(pszPath: LPCWSTR): BOOL; stdcall; external SHLWAPIDLL name 'PathIsRelativeW';
|
|
|
|
|
function CustomPathIsRelative(const aPath : string) : boolean;
|
2017-10-09 13:06:45 +02:00
|
|
|
|
function GetModulePath : string;
|
2017-04-26 15:38:50 +02:00
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
function CefIsCertStatusError(Status : TCefCertStatus) : boolean;
|
|
|
|
|
function CefIsCertStatusMinorError(Status : TCefCertStatus) : boolean;
|
|
|
|
|
|
|
|
|
|
function CefCrashReportingEnabled : boolean;
|
|
|
|
|
procedure CefSetCrashKeyValue(const aKey, aValue : ustring);
|
|
|
|
|
|
2017-02-12 19:53:06 +01:00
|
|
|
|
procedure CefLog(const aFile : string; aLine, aSeverity : integer; const aMessage : string);
|
2017-02-13 10:24:44 +01:00
|
|
|
|
procedure OutputDebugMessage(const aMessage : string);
|
2017-05-07 18:04:05 +02:00
|
|
|
|
function CustomExceptionHandler(const aFunctionName : string; const aException : exception) : boolean;
|
2017-02-13 10:24:44 +01:00
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefRegisterSchemeHandlerFactory(const SchemeName, HostName: ustring; const handler: TCefResourceHandlerClass): Boolean;
|
|
|
|
|
function CefClearSchemeHandlerFactories : boolean;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
|
|
|
|
|
function CefAddCrossOriginWhitelistEntry(const SourceOrigin, TargetProtocol, TargetDomain: ustring; AllowTargetSubdomains: Boolean): Boolean;
|
|
|
|
|
function CefRemoveCrossOriginWhitelistEntry(const SourceOrigin, TargetProtocol, TargetDomain: ustring; AllowTargetSubdomains: Boolean): Boolean;
|
|
|
|
|
function CefClearCrossOriginWhitelist: Boolean;
|
2017-02-12 19:53:06 +01:00
|
|
|
|
|
2017-03-26 17:39:09 +02:00
|
|
|
|
procedure UInt64ToFileVersionInfo(const aVersion : uint64; var aVersionInfo : TFileVersionInfo);
|
|
|
|
|
function GetExtendedFileVersion(const aFileName : string) : uint64;
|
2017-10-24 20:44:51 +02:00
|
|
|
|
function GetStringFileInfo(const aFileName, aField : string; var aValue : string) : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
function GetDLLVersion(const aDLLFile : string; var aVersionInfo : TFileVersionInfo) : boolean;
|
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
|
function SplitLongString(aSrcString : string) : string;
|
|
|
|
|
function GetAbsoluteDirPath(const aSrcPath : string; var aRsltPath : string) : boolean;
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckLocales(const aLocalesDirPath : string; var aMissingFiles : string; const aLocalesRequired : string = '') : boolean;
|
|
|
|
|
function CheckResources(const aResourcesDirPath : string; var aMissingFiles : string; aCheckDevResources: boolean = True) : boolean;
|
|
|
|
|
function CheckDLLs(const aFrameworkDirPath : string; var aMissingFiles : string) : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
function CheckDLLVersion(const aDLLFile : string; aMajor, aMinor, aRelease, aBuild : uint16) : boolean;
|
2017-10-24 20:44:51 +02:00
|
|
|
|
function FileVersionInfoToString(const aVersionInfo : TFileVersionInfo) : string;
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckFilesExist(var aList : TStringList; var aMissingFiles : string) : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
2017-05-07 18:04:05 +02:00
|
|
|
|
function CefParseUrl(const url: ustring; var parts: TUrlParts): Boolean;
|
|
|
|
|
function CefCreateUrl(var parts: TUrlParts): ustring;
|
|
|
|
|
function CefFormatUrlForSecurityDisplay(const originUrl: string): string;
|
|
|
|
|
function CefGetMimeType(const extension: ustring): ustring;
|
|
|
|
|
procedure CefGetExtensionsForMimeType(const mimeType: ustring; extensions: TStringList);
|
|
|
|
|
|
|
|
|
|
function CefBase64Encode(const data: Pointer; dataSize: NativeUInt): ustring;
|
|
|
|
|
function CefBase64Decode(const data: ustring): ICefBinaryValue;
|
|
|
|
|
function CefUriEncode(const text: ustring; usePlus: Boolean): ustring;
|
|
|
|
|
function CefUriDecode(const text: ustring; convertToUtf8: Boolean; unescapeRule: TCefUriUnescapeRule): ustring;
|
|
|
|
|
|
|
|
|
|
function CefParseJson(const jsonString: ustring; options: TCefJsonParserOptions): ICefValue;
|
|
|
|
|
function CefParseJsonAndReturnError(const jsonString : ustring;
|
|
|
|
|
options : TCefJsonParserOptions;
|
|
|
|
|
out errorCodeOut : TCefJsonParserError;
|
|
|
|
|
out errorMsgOut : ustring): ICefValue;
|
|
|
|
|
function CefWriteJson(const node: ICefValue; options: TCefJsonWriterOptions): ustring;
|
|
|
|
|
|
|
|
|
|
function CefCreateDirectory(const fullPath: ustring): Boolean;
|
|
|
|
|
function CefGetTempDirectory(out tempDir: ustring): Boolean;
|
|
|
|
|
function CefCreateNewTempDirectory(const prefix: ustring; out newTempPath: ustring): Boolean;
|
|
|
|
|
function CefCreateTempDirectoryInDirectory(const baseDir, prefix: ustring; out newDir: ustring): Boolean;
|
|
|
|
|
function CefDirectoryExists(const path: ustring): Boolean;
|
|
|
|
|
function CefDeleteFile(const path: ustring; recursive: Boolean): Boolean;
|
|
|
|
|
function CefZipDirectory(const srcDir, destFile: ustring; includeHiddenFiles: Boolean): Boolean;
|
2017-07-12 17:00:34 +02:00
|
|
|
|
procedure CefLoadCRLSetsFile(const path : ustring);
|
2017-05-01 14:45:54 +02:00
|
|
|
|
|
2017-07-18 17:50:28 +02:00
|
|
|
|
function CefIsKeyDown(aWparam : WPARAM) : boolean;
|
|
|
|
|
function CefIsKeyToggled(aWparam : WPARAM) : boolean;
|
2017-07-28 12:47:57 +02:00
|
|
|
|
function GetCefMouseModifiers(awparam : WPARAM) : TCefEventFlags; overload;
|
|
|
|
|
function GetCefMouseModifiers : TCefEventFlags; overload;
|
2017-07-18 17:50:28 +02:00
|
|
|
|
function GetCefKeyboardModifiers(aWparam : WPARAM; aLparam : LPARAM) : TCefEventFlags;
|
|
|
|
|
function GefCursorToWindowsCursor(aCefCursor : TCefCursorType) : TCursor;
|
|
|
|
|
|
|
|
|
|
procedure DropEffectToDragOperation(aEffect : Longint; var aAllowedOps : TCefDragOperations);
|
|
|
|
|
procedure DragOperationToDropEffect(const aDragOperations : TCefDragOperations; var aEffect: Longint);
|
|
|
|
|
|
2017-07-28 12:47:57 +02:00
|
|
|
|
function DeviceToLogical(aValue : integer; const aDeviceScaleFactor : double) : integer; overload;
|
|
|
|
|
procedure DeviceToLogical(var aEvent : TCEFMouseEvent; const aDeviceScaleFactor : double); overload;
|
|
|
|
|
procedure DeviceToLogical(var aPoint : TPoint; const aDeviceScaleFactor : double); overload;
|
|
|
|
|
function LogicalToDevice(aValue : integer; const aDeviceScaleFactor : double) : integer; overload;
|
|
|
|
|
procedure LogicalToDevice(var aRect : TCEFRect; const aDeviceScaleFactor : double); overload;
|
|
|
|
|
|
|
|
|
|
function GetScreenDPI : integer;
|
|
|
|
|
function GetDeviceScaleFactor : single;
|
|
|
|
|
|
2017-08-12 20:29:52 +02:00
|
|
|
|
function CefGetGeolocation(const aCallbackFunction : TOnLocationUpdate) : boolean;
|
|
|
|
|
|
2017-09-07 22:56:51 +02:00
|
|
|
|
procedure CefRegisterWidevineCdm(const path: ustring; const callback: ICefRegisterCdmCallback);
|
|
|
|
|
procedure CefFastRegisterWidevineCdm(const path: ustring; const callback: TCefRegisterCDMProc);
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
implementation
|
|
|
|
|
|
2017-02-13 10:24:44 +01:00
|
|
|
|
uses
|
2017-08-12 20:29:52 +02:00
|
|
|
|
uCEFConstants, uCEFApplication, uCEFSchemeHandlerFactory, uCEFValue,
|
|
|
|
|
uCEFBinaryValue;
|
2017-02-13 10:24:44 +01:00
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
function CefColorGetA(color: TCefColor): Byte;
|
|
|
|
|
begin
|
|
|
|
|
Result := (color shr 24) and $FF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefColorGetR(color: TCefColor): byte;
|
|
|
|
|
begin
|
|
|
|
|
Result := (color shr 16) and $FF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefColorGetG(color: TCefColor): Byte;
|
|
|
|
|
begin
|
|
|
|
|
Result := (color shr 8) and $FF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefColorGetB(color: TCefColor): Byte;
|
|
|
|
|
begin
|
|
|
|
|
Result := color and $FF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefColorSetARGB(a, r, g, b: Byte): TCefColor;
|
|
|
|
|
begin
|
|
|
|
|
Result := (a shl 24) or (r shl 16) or (g shl 8) or b;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefInt64Set(int32_low, int32_high: Integer): Int64;
|
|
|
|
|
begin
|
|
|
|
|
Result := int32_low or (int32_high shl 32);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefInt64GetLow(const int64_val: Int64): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := Integer(int64_val);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefInt64GetHigh(const int64_val: Int64): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := (int64_val shr 32) and $FFFFFFFF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefStringListToStringList(var aSrcSL : TCefStringList; var aDstSL : TStringList);
|
|
|
|
|
begin
|
|
|
|
|
CefStringListToStringList(aSrcSL, TStrings(aDstSL));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefStringListToStringList(var aSrcSL : TCefStringList; var aDstSL : TStrings);
|
|
|
|
|
var
|
|
|
|
|
i, j : NativeUInt;
|
|
|
|
|
TempString : TCefString;
|
|
|
|
|
begin
|
|
|
|
|
if (aSrcSL <> nil) and (aDstSL <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
i := 0;
|
|
|
|
|
j := pred(cef_string_list_size(aSrcSL));
|
|
|
|
|
|
|
|
|
|
while (i < j) do
|
|
|
|
|
begin
|
|
|
|
|
FillChar(TempString, SizeOf(TempString), 0);
|
|
|
|
|
cef_string_list_value(aSrcSL, i, @TempString);
|
|
|
|
|
aDstSL.Add(CefStringClearAndGet(TempString));
|
|
|
|
|
inc(i);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefStringClearAndGet(var str: TCefString): ustring;
|
|
|
|
|
begin
|
|
|
|
|
Result := CefString(@str);
|
|
|
|
|
cef_string_utf16_clear(@str);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-02-14 11:01:16 +01:00
|
|
|
|
function CefGetObject(ptr: Pointer): TObject; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-10-02 17:56:56 +02:00
|
|
|
|
if (ptr <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
Dec(PByte(ptr), SizeOf(Pointer));
|
|
|
|
|
Result := TObject(PPointer(ptr)^);
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
Result := nil;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefGetData(const i: ICefBaseRefCounted): Pointer; {$IFDEF SUPPORTS_INLINE} inline; {$ENDIF}
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
|
|
|
|
if (i <> nil) then
|
|
|
|
|
Result := i.Wrap
|
|
|
|
|
else
|
|
|
|
|
Result := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefString(const str: PCefString): ustring;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> nil) then
|
2017-01-27 16:37:51 +01:00
|
|
|
|
SetString(Result, str.str, str.length)
|
|
|
|
|
else
|
|
|
|
|
Result := '';
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefString(const str: ustring): TCefString;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.str := PChar16(PWideChar(str));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
Result.length := Length(str);
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.dtor := nil;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefStringFree(const str: PCefString);
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> nil) then cef_string_utf16_clear(str);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefStringSet(const str: PCefString; const value: ustring);
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> nil) then cef_string_utf16_set(PWideChar(value), Length(value), str, 1);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefStringFreeAndGet(const str: PCefStringUserFree): ustring;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
Result := CefString(PCefString(str));
|
|
|
|
|
cef_string_userfree_utf16_free(str);
|
|
|
|
|
end
|
|
|
|
|
else
|
2017-01-27 16:37:51 +01:00
|
|
|
|
Result := '';
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefStringAlloc(const str: ustring): TCefString;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(Result, SizeOf(Result), 0);
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> '') then cef_string_wide_to_utf16(PWideChar(str), Length(str), @Result);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure _free_string(str: PChar16); stdcall;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
if (str <> nil) then FreeMem(str);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefUserFreeString(const str: ustring): PCefStringUserFree;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result := cef_string_userfree_utf16_alloc;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
Result.length := Length(str);
|
|
|
|
|
GetMem(Result.str, Result.length * SizeOf(TCefChar));
|
|
|
|
|
Move(PCefChar(str)^, Result.str^, Result.length * SizeOf(TCefChar));
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.dtor := @_free_string;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefExecuteProcess(var app : ICefApp; aWindowsSandboxInfo : Pointer) : integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_execute_process(@HInstance, CefGetData(app), aWindowsSandboxInfo);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefRegisterExtension(const name, code: ustring; const Handler: ICefv8Handler): Boolean;
|
|
|
|
|
var
|
2017-02-26 16:23:01 +01:00
|
|
|
|
n, c : TCefString;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
n := CefString(name);
|
|
|
|
|
c := CefString(code);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
Result := cef_register_extension(@n, @c, CefGetData(handler)) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefPostTask(ThreadId: TCefThreadId; const task: ICefTask);
|
|
|
|
|
begin
|
|
|
|
|
cef_post_task(ThreadId, CefGetData(task));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefPostDelayedTask(ThreadId: TCefThreadId; const task: ICefTask; delayMs: Int64);
|
|
|
|
|
begin
|
|
|
|
|
cef_post_delayed_task(ThreadId, CefGetData(task), delayMs);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefTimeToSystemTime(const dt: TCefTime): TSystemTime;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.wYear := dt.year;
|
|
|
|
|
Result.wMonth := dt.month;
|
|
|
|
|
Result.wDayOfWeek := dt.day_of_week;
|
|
|
|
|
Result.wDay := dt.day_of_month;
|
|
|
|
|
Result.wHour := dt.hour;
|
|
|
|
|
Result.wMinute := dt.minute;
|
|
|
|
|
Result.wSecond := dt.second;
|
|
|
|
|
Result.wMilliseconds := dt.millisecond;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function SystemTimeToCefTime(const dt: TSystemTime): TCefTime;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.year := dt.wYear;
|
|
|
|
|
Result.month := dt.wMonth;
|
|
|
|
|
Result.day_of_week := dt.wDayOfWeek;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
Result.day_of_month := dt.wDay;
|
2017-02-26 16:23:01 +01:00
|
|
|
|
Result.hour := dt.wHour;
|
|
|
|
|
Result.minute := dt.wMinute;
|
|
|
|
|
Result.second := dt.wSecond;
|
|
|
|
|
Result.millisecond := dt.wMilliseconds;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefTimeToDateTime(const dt: TCefTime): TDateTime;
|
|
|
|
|
var
|
|
|
|
|
st: TSystemTime;
|
|
|
|
|
begin
|
2017-02-26 16:23:01 +01:00
|
|
|
|
st := CefTimeToSystemTime(dt);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
SystemTimeToTzSpecificLocalTime(nil, @st, @st);
|
|
|
|
|
Result := SystemTimeToDateTime(st);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function DateTimeToCefTime(dt: TDateTime): TCefTime;
|
|
|
|
|
var
|
|
|
|
|
st: TSystemTime;
|
|
|
|
|
begin
|
|
|
|
|
DateTimeToSystemTime(dt, st);
|
|
|
|
|
TzSpecificLocalTimeToSystemTime(nil, @st, @st);
|
|
|
|
|
Result := SystemTimeToCefTime(st);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_string_wide_copy(const src: PWideChar; src_len: NativeUInt; output: PCefStringWide): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_string_wide_set(src, src_len, output, ord(True));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_string_utf8_copy(const src: PAnsiChar; src_len: NativeUInt; output: PCefStringUtf8): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_string_utf8_set(src, src_len, output, ord(True));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_string_utf16_copy(const src: PChar16; src_len: NativeUInt; output: PCefStringUtf16): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_string_utf16_set(src, src_len, output, ord(True));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_string_copy(const src: PCefChar; src_len: NativeUInt; output: PCefString): Integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_string_utf16_set(src, src_len, output, ord(True));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure WindowInfoAsChild(var aWindowInfo : TCefWindowInfo; aParent : THandle; aRect : TRect; const aWindowName : string);
|
|
|
|
|
begin
|
|
|
|
|
aWindowInfo.ex_style := 0;
|
|
|
|
|
aWindowInfo.window_name := CefString(aWindowName);
|
|
|
|
|
aWindowInfo.style := WS_CHILD or WS_VISIBLE or WS_CLIPCHILDREN or WS_CLIPSIBLINGS or WS_TABSTOP;
|
|
|
|
|
aWindowInfo.x := aRect.left;
|
|
|
|
|
aWindowInfo.y := aRect.top;
|
|
|
|
|
aWindowInfo.width := aRect.right - aRect.left;
|
|
|
|
|
aWindowInfo.height := aRect.bottom - aRect.top;
|
|
|
|
|
aWindowInfo.parent_window := aParent;
|
|
|
|
|
aWindowInfo.menu := 0;
|
|
|
|
|
aWindowInfo.windowless_rendering_enabled := ord(False);
|
|
|
|
|
aWindowInfo.window := 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure WindowInfoAsPopUp(var aWindowInfo : TCefWindowInfo; aParent : THandle; const aWindowName : string);
|
|
|
|
|
begin
|
|
|
|
|
aWindowInfo.ex_style := 0;
|
|
|
|
|
aWindowInfo.window_name := CefString(aWindowName);
|
|
|
|
|
aWindowInfo.style := WS_OVERLAPPEDWINDOW or WS_CLIPCHILDREN or WS_CLIPSIBLINGS or WS_VISIBLE;
|
|
|
|
|
aWindowInfo.x := integer(CW_USEDEFAULT);
|
|
|
|
|
aWindowInfo.y := integer(CW_USEDEFAULT);
|
|
|
|
|
aWindowInfo.width := integer(CW_USEDEFAULT);
|
|
|
|
|
aWindowInfo.height := integer(CW_USEDEFAULT);
|
|
|
|
|
aWindowInfo.parent_window := aParent;
|
|
|
|
|
aWindowInfo.menu := 0;
|
|
|
|
|
aWindowInfo.windowless_rendering_enabled := ord(False);
|
|
|
|
|
aWindowInfo.window := 0;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-06-06 12:49:27 +02:00
|
|
|
|
procedure WindowInfoAsWindowless(var aWindowInfo : TCefWindowInfo; aParent : THandle; const aWindowName : string);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
|
|
|
|
aWindowInfo.ex_style := 0;
|
|
|
|
|
aWindowInfo.window_name := CefString(aWindowName);
|
|
|
|
|
aWindowInfo.style := 0;
|
|
|
|
|
aWindowInfo.x := 0;
|
|
|
|
|
aWindowInfo.y := 0;
|
|
|
|
|
aWindowInfo.width := 0;
|
|
|
|
|
aWindowInfo.height := 0;
|
|
|
|
|
aWindowInfo.parent_window := aParent;
|
|
|
|
|
aWindowInfo.menu := 0;
|
|
|
|
|
aWindowInfo.windowless_rendering_enabled := ord(True);
|
|
|
|
|
aWindowInfo.window := 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefIsCertStatusError(Status : TCefCertStatus) : boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := (cef_is_cert_status_error(Status) <> 0);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefIsCertStatusMinorError(Status : TCefCertStatus) : boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := (cef_is_cert_status_minor_error(Status) <> 0);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefCrashReportingEnabled : boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := (cef_crash_reporting_enabled <> 0);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefSetCrashKeyValue(const aKey, aValue : ustring);
|
|
|
|
|
var
|
|
|
|
|
TempKey, TempValue : TCefString;
|
|
|
|
|
begin
|
|
|
|
|
TempKey := CefString(aKey);
|
|
|
|
|
TempValue := CefString(aValue);
|
|
|
|
|
cef_set_crash_key_value(@TempKey, @TempValue);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-02-12 19:53:06 +01:00
|
|
|
|
procedure CefLog(const aFile : string; aLine, aSeverity : integer; const aMessage : string);
|
|
|
|
|
var
|
|
|
|
|
TempFile, TempMessage : AnsiString;
|
|
|
|
|
begin
|
|
|
|
|
if (length(aFile) > 0) and (length(aMessage) > 0) then
|
|
|
|
|
begin
|
|
|
|
|
TempFile := AnsiString(aFile);
|
|
|
|
|
TempMessage := AnsiString(aMessage);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-02-12 19:53:06 +01:00
|
|
|
|
cef_log(@TempFile[1], aLine, aSeverity, @TempMessage[1]);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-02-13 10:24:44 +01:00
|
|
|
|
procedure OutputDebugMessage(const aMessage : string);
|
|
|
|
|
const
|
|
|
|
|
DEFAULT_LINE = 1;
|
|
|
|
|
begin
|
|
|
|
|
{$IFDEF DEBUG}
|
2017-02-14 11:01:16 +01:00
|
|
|
|
OutputDebugString({$IFDEF DELPHI12_UP}PWideChar{$ELSE}PAnsiChar{$ENDIF}(aMessage + chr(0)));
|
2017-02-13 10:24:44 +01:00
|
|
|
|
|
|
|
|
|
if (GlobalCEFApp <> nil) and GlobalCEFApp.LibLoaded then
|
|
|
|
|
CefLog('CEF4Delphi', DEFAULT_LINE, CEF_LOG_SEVERITY_ERROR, aMessage);
|
|
|
|
|
{$ENDIF}
|
2017-05-01 14:45:54 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2017-05-07 18:04:05 +02:00
|
|
|
|
function CustomExceptionHandler(const aFunctionName : string; const aException : exception) : boolean;
|
2017-05-01 14:45:54 +02:00
|
|
|
|
begin
|
2017-05-07 18:04:05 +02:00
|
|
|
|
OutputDebugMessage(aFunctionName + ' error : ' + aException.message);
|
2017-04-26 15:38:50 +02:00
|
|
|
|
|
2017-05-07 18:04:05 +02:00
|
|
|
|
Result := (GlobalCEFApp <> nil) and GlobalCEFApp.ReRaiseExceptions;
|
2017-02-13 10:24:44 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefRegisterSchemeHandlerFactory(const SchemeName : ustring;
|
|
|
|
|
const HostName : ustring;
|
|
|
|
|
const handler : TCefResourceHandlerClass) : boolean;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
var
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TempScheme, TempHostName : TCefString;
|
|
|
|
|
TempFactory : ICefSchemeHandlerFactory;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TempScheme := CefString(SchemeName);
|
|
|
|
|
TempHostName := CefString(HostName);
|
|
|
|
|
TempFactory := TCefSchemeHandlerFactoryOwn.Create(handler);
|
|
|
|
|
Result := cef_register_scheme_handler_factory(@TempScheme, @TempHostName, TempFactory.Wrap) <> 0;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefClearSchemeHandlerFactories : boolean;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := cef_clear_scheme_handler_factories <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefAddCrossOriginWhitelistEntry(const SourceOrigin : ustring;
|
|
|
|
|
const TargetProtocol : ustring;
|
|
|
|
|
const TargetDomain : ustring;
|
|
|
|
|
AllowTargetSubdomains : Boolean): Boolean;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
var
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TempSourceOrigin, TempTargetProtocol, TempTargetDomain : TCefString;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
begin
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TempSourceOrigin := CefString(SourceOrigin);
|
|
|
|
|
TempTargetProtocol := CefString(TargetProtocol);
|
|
|
|
|
TempTargetDomain := CefString(TargetDomain);
|
|
|
|
|
Result := cef_add_cross_origin_whitelist_entry(@TempSourceOrigin,
|
|
|
|
|
@TempTargetProtocol,
|
|
|
|
|
@TempTargetDomain,
|
|
|
|
|
Ord(AllowTargetSubdomains)) <> 0;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
|
function CefRemoveCrossOriginWhitelistEntry(const SourceOrigin : ustring;
|
|
|
|
|
const TargetProtocol : ustring;
|
|
|
|
|
const TargetDomain : ustring;
|
|
|
|
|
AllowTargetSubdomains : Boolean): Boolean;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
var
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TempSourceOrigin, TempTargetProtocol, TempTargetDomain : TCefString;
|
|
|
|
|
begin
|
|
|
|
|
TempSourceOrigin := CefString(SourceOrigin);
|
|
|
|
|
TempTargetProtocol := CefString(TargetProtocol);
|
|
|
|
|
TempTargetDomain := CefString(TargetDomain);
|
|
|
|
|
Result := cef_remove_cross_origin_whitelist_entry(@TempSourceOrigin,
|
|
|
|
|
@TempTargetProtocol,
|
|
|
|
|
@TempTargetDomain,
|
|
|
|
|
Ord(AllowTargetSubdomains)) <> 0;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefClearCrossOriginWhitelist: Boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := cef_clear_cross_origin_whitelist <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
|
function SplitLongString(aSrcString : string) : string;
|
|
|
|
|
const
|
|
|
|
|
MAXLINELENGTH = 50;
|
|
|
|
|
begin
|
|
|
|
|
while (length(aSrcString) > 0) do
|
|
|
|
|
begin
|
|
|
|
|
if (length(Result) > 0) then
|
|
|
|
|
Result := Result + CRLF + copy(aSrcString, 1, MAXLINELENGTH)
|
|
|
|
|
else
|
|
|
|
|
Result := Result + copy(aSrcString, 1, MAXLINELENGTH);
|
|
|
|
|
|
|
|
|
|
aSrcString := copy(aSrcString, succ(MAXLINELENGTH), length(aSrcString));
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function GetAbsoluteDirPath(const aSrcPath : string; var aRsltPath : string) : boolean;
|
2017-10-24 17:36:12 +02:00
|
|
|
|
begin
|
2017-12-18 19:38:56 +01:00
|
|
|
|
Result := True;
|
2017-10-24 17:36:12 +02:00
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
if (length(aSrcPath) > 0) then
|
|
|
|
|
begin
|
|
|
|
|
aRsltPath := IncludeTrailingPathDelimiter(aSrcPath);
|
2017-11-04 09:40:31 +01:00
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
if DirectoryExists(aSrcPath) then
|
|
|
|
|
begin
|
|
|
|
|
if CustomPathIsRelative(aRsltPath) then aRsltPath := GetModulePath + aRsltPath;
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
Result := False;
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
aRsltPath := '';
|
2017-10-24 17:36:12 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckLocales(const aLocalesDirPath : string; var aMissingFiles : string; const aLocalesRequired : string) : boolean;
|
2017-10-24 17:36:12 +02:00
|
|
|
|
const
|
|
|
|
|
LOCALES_REQUIRED_DEFAULT =
|
|
|
|
|
'am,' +
|
|
|
|
|
'ar,' +
|
|
|
|
|
'bg,' +
|
|
|
|
|
'bn,' +
|
|
|
|
|
'ca,' +
|
|
|
|
|
'cs,' +
|
|
|
|
|
'da,' +
|
|
|
|
|
'de,' +
|
|
|
|
|
'el,' +
|
|
|
|
|
'en-GB,' +
|
|
|
|
|
'en-US,' +
|
|
|
|
|
'es,' +
|
|
|
|
|
'es-419,' +
|
|
|
|
|
'et,' +
|
|
|
|
|
'fa,' +
|
|
|
|
|
'fi,' +
|
|
|
|
|
'fil,' +
|
|
|
|
|
'fr,' +
|
|
|
|
|
'gu,' +
|
|
|
|
|
'he,' +
|
|
|
|
|
'hi,' +
|
|
|
|
|
'hr,' +
|
|
|
|
|
'hu,' +
|
|
|
|
|
'id,' +
|
|
|
|
|
'it,' +
|
|
|
|
|
'ja,' +
|
|
|
|
|
'kn,' +
|
|
|
|
|
'ko,' +
|
|
|
|
|
'lt,' +
|
|
|
|
|
'lv,' +
|
|
|
|
|
'ml,' +
|
|
|
|
|
'mr,' +
|
|
|
|
|
'ms,' +
|
|
|
|
|
'nb,' +
|
|
|
|
|
'nl,' +
|
|
|
|
|
'pl,' +
|
|
|
|
|
'pt-BR,' +
|
|
|
|
|
'pt-PT,' +
|
|
|
|
|
'ro,' +
|
|
|
|
|
'ru,' +
|
|
|
|
|
'sk,' +
|
|
|
|
|
'sl,' +
|
|
|
|
|
'sr,' +
|
|
|
|
|
'sv,' +
|
|
|
|
|
'sw,' +
|
|
|
|
|
'ta,' +
|
|
|
|
|
'te,' +
|
|
|
|
|
'th,' +
|
|
|
|
|
'tr,' +
|
|
|
|
|
'uk,' +
|
|
|
|
|
'vi,' +
|
|
|
|
|
'zh-CN,' +
|
|
|
|
|
'zh-TW';
|
2017-03-26 17:39:09 +02:00
|
|
|
|
var
|
2017-12-18 19:38:56 +01:00
|
|
|
|
i : integer;
|
|
|
|
|
TempDir : string;
|
|
|
|
|
TempList : TStringList;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
begin
|
2017-12-18 19:38:56 +01:00
|
|
|
|
Result := False;
|
|
|
|
|
TempList := nil;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
|
|
|
|
try
|
2017-12-18 19:38:56 +01:00
|
|
|
|
try
|
|
|
|
|
if (length(aLocalesDirPath) > 0) then
|
|
|
|
|
TempDir := IncludeTrailingPathDelimiter(aLocalesDirPath)
|
|
|
|
|
else
|
|
|
|
|
TempDir := 'locales\';
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
TempList := TStringList.Create;
|
2017-09-07 10:58:09 +02:00
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
if (length(aLocalesRequired) > 0) then
|
|
|
|
|
TempList.CommaText := aLocalesRequired
|
2017-09-07 10:58:09 +02:00
|
|
|
|
else
|
2017-12-18 19:38:56 +01:00
|
|
|
|
TempList.CommaText := LOCALES_REQUIRED_DEFAULT;
|
|
|
|
|
|
|
|
|
|
i := 0;
|
|
|
|
|
while (i < TempList.Count) do
|
|
|
|
|
begin
|
|
|
|
|
TempList[i] := TempDir + TempList[i] + '.pak';
|
|
|
|
|
inc(i);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
if DirectoryExists(TempDir) then
|
|
|
|
|
Result := CheckFilesExist(TempList, aMissingFiles)
|
|
|
|
|
else
|
|
|
|
|
aMissingFiles := trim(aMissingFiles) + CRLF + TempList.Text;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('CheckLocales', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempList <> nil) then FreeAndNil(TempList);
|
|
|
|
|
end;
|
2017-09-07 10:58:09 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckResources(const aResourcesDirPath : string; var aMissingFiles : string; aCheckDevResources: boolean) : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
var
|
2017-12-18 19:38:56 +01:00
|
|
|
|
TempDir : string;
|
|
|
|
|
TempList : TStringList;
|
|
|
|
|
TempExists : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
begin
|
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
|
|
try
|
2017-12-18 19:38:56 +01:00
|
|
|
|
try
|
|
|
|
|
TempExists := GetAbsoluteDirPath(aResourcesDirPath, TempDir);
|
|
|
|
|
|
|
|
|
|
TempList := TStringList.Create;
|
|
|
|
|
TempList.Add(TempDir + 'natives_blob.bin');
|
|
|
|
|
TempList.Add(TempDir + 'snapshot_blob.bin');
|
|
|
|
|
TempList.Add(TempDir + 'v8_context_snapshot.bin');
|
|
|
|
|
TempList.Add(TempDir + 'cef.pak');
|
|
|
|
|
TempList.Add(TempDir + 'cef_100_percent.pak');
|
|
|
|
|
TempList.Add(TempDir + 'cef_200_percent.pak');
|
|
|
|
|
TempList.Add(TempDir + 'cef_extensions.pak');
|
|
|
|
|
|
|
|
|
|
if aCheckDevResources then TempList.Add(TempDir + 'devtools_resources.pak');
|
|
|
|
|
|
|
|
|
|
if TempExists then
|
|
|
|
|
Result := CheckFilesExist(TempList, aMissingFiles)
|
|
|
|
|
else
|
|
|
|
|
aMissingFiles := trim(aMissingFiles) + CRLF + TempList.Text;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('CheckResources', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempList <> nil) then FreeAndNil(TempList);
|
2017-03-26 17:39:09 +02:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckDLLs(const aFrameworkDirPath : string; var aMissingFiles : string) : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
var
|
2017-12-18 19:38:56 +01:00
|
|
|
|
TempDir : string;
|
|
|
|
|
TempList : TStringList;
|
|
|
|
|
TempExists : boolean;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
begin
|
2017-12-18 19:38:56 +01:00
|
|
|
|
Result := False;
|
|
|
|
|
TempList := nil;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
|
|
|
|
try
|
2017-12-18 19:38:56 +01:00
|
|
|
|
try
|
|
|
|
|
TempExists := GetAbsoluteDirPath(aFrameworkDirPath, TempDir);
|
|
|
|
|
|
|
|
|
|
// The icudtl.dat file must be placed next to libcef.dll
|
|
|
|
|
// http://www.magpcss.org/ceforum/viewtopic.php?f=6&t=14503#p32263
|
|
|
|
|
|
|
|
|
|
TempList := TStringList.Create;
|
|
|
|
|
TempList.Add(TempDir + CHROMEELF_DLL);
|
|
|
|
|
TempList.Add(TempDir + LIBCEF_DLL);
|
|
|
|
|
TempList.Add(TempDir + 'd3dcompiler_43.dll');
|
|
|
|
|
TempList.Add(TempDir + 'd3dcompiler_47.dll');
|
|
|
|
|
TempList.Add(TempDir + 'libEGL.dll');
|
|
|
|
|
TempList.Add(TempDir + 'libGLESv2.dll');
|
|
|
|
|
TempList.Add(TempDir + 'swiftshader\libEGL.dll');
|
|
|
|
|
TempList.Add(TempDir + 'swiftshader\libGLESv2.dll');
|
|
|
|
|
TempList.Add(TempDir + 'icudtl.dat');
|
|
|
|
|
TempList.Add(TempDir + 'widevinecdmadapter.dll');
|
|
|
|
|
|
|
|
|
|
if TempExists then
|
|
|
|
|
Result := CheckFilesExist(TempList, aMissingFiles)
|
|
|
|
|
else
|
|
|
|
|
aMissingFiles := trim(aMissingFiles) + CRLF + TempList.Text;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('CheckDLLs', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempList <> nil) then FreeAndNil(TempList);
|
2017-03-26 17:39:09 +02:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
|
function CheckFilesExist(var aList : TStringList; var aMissingFiles : string) : boolean;
|
|
|
|
|
var
|
|
|
|
|
i : integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := True;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
if (aList <> nil) then
|
|
|
|
|
begin
|
|
|
|
|
i := 0;
|
|
|
|
|
|
|
|
|
|
while (i < aList.Count) do
|
|
|
|
|
begin
|
|
|
|
|
if (length(aList[i]) > 0) and not(FileExists(aList[i])) then
|
|
|
|
|
begin
|
|
|
|
|
Result := False;
|
|
|
|
|
aMissingFiles := aMissingFiles + aList[i] + CRLF;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
inc(i);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('CheckFilesExist', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-03-26 17:39:09 +02:00
|
|
|
|
procedure UInt64ToFileVersionInfo(const aVersion : uint64; var aVersionInfo : TFileVersionInfo);
|
|
|
|
|
begin
|
|
|
|
|
aVersionInfo.MajorVer := uint16(aVersion shr 48);
|
|
|
|
|
aVersionInfo.MinorVer := uint16((aVersion shr 32) and $FFFF);
|
|
|
|
|
aVersionInfo.Release := uint16((aVersion shr 16) and $FFFF);
|
|
|
|
|
aVersionInfo.Build := uint16(aVersion and $FFFF);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function GetExtendedFileVersion(const aFileName : string) : uint64;
|
|
|
|
|
var
|
|
|
|
|
TempSize : DWORD;
|
|
|
|
|
TempBuffer : pointer;
|
|
|
|
|
TempLen : UINT;
|
|
|
|
|
TempHandle : cardinal;
|
|
|
|
|
TempInfo : PVSFixedFileInfo;
|
|
|
|
|
begin
|
|
|
|
|
Result := 0;
|
|
|
|
|
TempBuffer := nil;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
try
|
|
|
|
|
TempSize := GetFileVersioninfoSize(PChar(aFileName), TempHandle);
|
|
|
|
|
|
|
|
|
|
if (TempSize > 0) then
|
|
|
|
|
begin
|
|
|
|
|
GetMem(TempBuffer, TempSize);
|
|
|
|
|
|
|
|
|
|
if GetFileVersionInfo(PChar(aFileName), TempHandle, TempSize, TempBuffer) and
|
|
|
|
|
VerQueryValue(TempBuffer, '\', Pointer(TempInfo), TempLen) then
|
|
|
|
|
begin
|
|
|
|
|
Result := TempInfo.dwFileVersionMS;
|
|
|
|
|
Result := Result shl 32;
|
|
|
|
|
Result := Result or TempInfo.dwFileVersionLS;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
2017-05-07 18:04:05 +02:00
|
|
|
|
if CustomExceptionHandler('GetExtendedFileVersion', e) then raise;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempBuffer <> nil) then FreeMem(TempBuffer);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
2017-10-24 20:44:51 +02:00
|
|
|
|
|
|
|
|
|
function GetStringFileInfo(const aFileName, aField : string; var aValue : string) : boolean;
|
|
|
|
|
type
|
|
|
|
|
PLangAndCodepage = ^TLangAndCodepage;
|
|
|
|
|
TLangAndCodepage = record
|
|
|
|
|
wLanguage : word;
|
|
|
|
|
wCodePage : word;
|
|
|
|
|
end;
|
|
|
|
|
var
|
|
|
|
|
TempSize : DWORD;
|
|
|
|
|
TempBuffer : pointer;
|
|
|
|
|
TempHandle : cardinal;
|
|
|
|
|
TempPointer : pointer;
|
|
|
|
|
TempSubBlock : string;
|
|
|
|
|
TempLang : PLangAndCodepage;
|
|
|
|
|
TempArray : array of TLangAndCodepage;
|
|
|
|
|
i, j : DWORD;
|
|
|
|
|
begin
|
|
|
|
|
Result := False;
|
|
|
|
|
TempBuffer := nil;
|
|
|
|
|
TempArray := nil;
|
|
|
|
|
aValue := '';
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
try
|
|
|
|
|
TempSize := GetFileVersionInfoSize(PChar(aFileName), TempHandle);
|
|
|
|
|
|
|
|
|
|
if (TempSize > 0) then
|
|
|
|
|
begin
|
|
|
|
|
GetMem(TempBuffer, TempSize);
|
|
|
|
|
|
|
|
|
|
if GetFileVersionInfo(PChar(aFileName), 0, TempSize, TempBuffer) then
|
|
|
|
|
begin
|
|
|
|
|
if VerQueryValue(TempBuffer, '\VarFileInfo\Translation\', Pointer(TempLang), TempSize) then
|
|
|
|
|
begin
|
|
|
|
|
i := 0;
|
|
|
|
|
j := TempSize div SizeOf(TLangAndCodepage);
|
|
|
|
|
|
|
|
|
|
SetLength(TempArray, j);
|
|
|
|
|
|
|
|
|
|
while (i < j) do
|
|
|
|
|
begin
|
|
|
|
|
TempArray[i].wLanguage := TempLang.wLanguage;
|
|
|
|
|
TempArray[i].wCodePage := TempLang.wCodePage;
|
|
|
|
|
inc(TempLang);
|
|
|
|
|
inc(i);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
i := 0;
|
|
|
|
|
j := Length(TempArray);
|
|
|
|
|
|
|
|
|
|
while (i < j) and not(Result) do
|
|
|
|
|
begin
|
|
|
|
|
TempSubBlock := '\StringFileInfo\' +
|
|
|
|
|
IntToHex(TempArray[i].wLanguage, 4) + IntToHex(TempArray[i].wCodePage, 4) +
|
|
|
|
|
'\' + aField;
|
|
|
|
|
|
|
|
|
|
if VerQueryValue(TempBuffer, PChar(TempSubBlock), TempPointer, TempSize) then
|
|
|
|
|
begin
|
|
|
|
|
aValue := trim(PChar(TempPointer));
|
|
|
|
|
Result := (length(aValue) > 0);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
inc(i);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
// Adobe's flash player DLL uses a different codepage to store the StringFileInfo fields
|
|
|
|
|
if not(Result) and (j > 0) and (TempArray[0].wCodePage <> 1252) then
|
|
|
|
|
begin
|
|
|
|
|
TempSubBlock := '\StringFileInfo\' +
|
|
|
|
|
IntToHex(TempArray[0].wLanguage, 4) + IntToHex(1252, 4) +
|
|
|
|
|
'\' + aField;
|
|
|
|
|
|
|
|
|
|
if VerQueryValue(TempBuffer, PChar(TempSubBlock), TempPointer, TempSize) then
|
|
|
|
|
begin
|
|
|
|
|
aValue := trim(PChar(TempPointer));
|
|
|
|
|
Result := (length(aValue) > 0);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('GetStringFileInfo', e) then raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
if (TempBuffer <> nil) then FreeMem(TempBuffer);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
|
|
|
|
function GetDLLVersion(const aDLLFile : string; var aVersionInfo : TFileVersionInfo) : boolean;
|
|
|
|
|
var
|
|
|
|
|
TempVersion : uint64;
|
|
|
|
|
begin
|
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
if FileExists(aDLLFile) then
|
|
|
|
|
begin
|
|
|
|
|
TempVersion := GetExtendedFileVersion(aDLLFile);
|
|
|
|
|
UInt64ToFileVersionInfo(TempVersion, aVersionInfo);
|
|
|
|
|
Result := True;
|
|
|
|
|
end;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
2017-05-07 18:04:05 +02:00
|
|
|
|
if CustomExceptionHandler('GetDLLVersion', e) then raise;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
end;
|
|
|
|
|
end;
|
2017-10-24 20:44:51 +02:00
|
|
|
|
|
|
|
|
|
function FileVersionInfoToString(const aVersionInfo : TFileVersionInfo) : string;
|
|
|
|
|
begin
|
|
|
|
|
Result := IntToStr(aVersionInfo.MajorVer) + '.' +
|
|
|
|
|
IntToStr(aVersionInfo.MinorVer) + '.' +
|
|
|
|
|
IntToStr(aVersionInfo.Release) + '.' +
|
|
|
|
|
IntToStr(aVersionInfo.Build);
|
|
|
|
|
end;
|
2017-03-26 17:39:09 +02:00
|
|
|
|
|
|
|
|
|
function CheckDLLVersion(const aDLLFile : string; aMajor, aMinor, aRelease, aBuild : uint16) : boolean;
|
|
|
|
|
var
|
|
|
|
|
TempVersionInfo : TFileVersionInfo;
|
|
|
|
|
begin
|
|
|
|
|
Result := GetDLLVersion(aDLLFile, TempVersionInfo) and
|
|
|
|
|
(TempVersionInfo.MajorVer = aMajor) and
|
|
|
|
|
(TempVersionInfo.MinorVer = aMinor) and
|
|
|
|
|
(TempVersionInfo.Release = aRelease) and
|
|
|
|
|
(TempVersionInfo.Build = aBuild);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-04-26 15:38:50 +02:00
|
|
|
|
function CustomPathIsRelative(const aPath : string) : boolean;
|
|
|
|
|
begin
|
|
|
|
|
{$IFDEF DELPHI12_UP}
|
|
|
|
|
Result := PathIsRelativeUnicode(PChar(aPath));
|
|
|
|
|
{$ELSE}
|
|
|
|
|
Result := PathIsRelativeAnsi(PChar(aPath));
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
end;
|
|
|
|
|
|
2017-10-09 13:06:45 +02:00
|
|
|
|
function GetModulePath : string;
|
|
|
|
|
begin
|
|
|
|
|
Result := IncludeTrailingPathDelimiter(ExtractFileDir(GetModuleName(HInstance)));
|
|
|
|
|
end;
|
|
|
|
|
|
2017-05-01 14:45:54 +02:00
|
|
|
|
function CefParseUrl(const url: ustring; var parts: TUrlParts): Boolean;
|
|
|
|
|
var
|
|
|
|
|
u: TCefString;
|
|
|
|
|
p: TCefUrlParts;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(p, sizeof(p), 0);
|
|
|
|
|
u := CefString(url);
|
|
|
|
|
Result := cef_parse_url(@u, p) <> 0;
|
|
|
|
|
if Result then
|
|
|
|
|
begin
|
|
|
|
|
//parts.spec := CefString(@p.spec);
|
|
|
|
|
parts.scheme := CefString(@p.scheme);
|
|
|
|
|
parts.username := CefString(@p.username);
|
|
|
|
|
parts.password := CefString(@p.password);
|
|
|
|
|
parts.host := CefString(@p.host);
|
|
|
|
|
parts.port := CefString(@p.port);
|
|
|
|
|
parts.origin := CefString(@p.origin);
|
|
|
|
|
parts.path := CefString(@p.path);
|
|
|
|
|
parts.query := CefString(@p.query);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-05-07 18:04:05 +02:00
|
|
|
|
function CefCreateUrl(var parts: TUrlParts): ustring;
|
|
|
|
|
var
|
|
|
|
|
p: TCefUrlParts;
|
|
|
|
|
u: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(p, sizeof(p), 0);
|
|
|
|
|
p.spec := CefString(parts.spec);
|
|
|
|
|
p.scheme := CefString(parts.scheme);
|
|
|
|
|
p.username := CefString(parts.username);
|
|
|
|
|
p.password := CefString(parts.password);
|
|
|
|
|
p.host := CefString(parts.host);
|
|
|
|
|
p.port := CefString(parts.port);
|
|
|
|
|
p.origin := CefString(parts.origin);
|
|
|
|
|
p.path := CefString(parts.path);
|
|
|
|
|
p.query := CefString(parts.query);
|
|
|
|
|
FillChar(u, SizeOf(u), 0);
|
|
|
|
|
if cef_create_url(@p, @u) <> 0 then
|
|
|
|
|
Result := CefString(@u) else
|
|
|
|
|
Result := '';
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefFormatUrlForSecurityDisplay(const originUrl: string): string;
|
|
|
|
|
var
|
|
|
|
|
o: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
o := CefString(originUrl);
|
|
|
|
|
Result := CefStringFreeAndGet(cef_format_url_for_security_display(@o));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefGetMimeType(const extension: ustring): ustring;
|
|
|
|
|
var
|
|
|
|
|
s: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(extension);
|
|
|
|
|
Result := CefStringFreeAndGet(cef_get_mime_type(@s));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefGetExtensionsForMimeType(const mimeType: ustring; extensions: TStringList);
|
|
|
|
|
var
|
|
|
|
|
list: TCefStringList;
|
|
|
|
|
s, str: TCefString;
|
|
|
|
|
i: Integer;
|
|
|
|
|
begin
|
|
|
|
|
list := cef_string_list_alloc();
|
|
|
|
|
try
|
|
|
|
|
s := CefString(mimeType);
|
|
|
|
|
cef_get_extensions_for_mime_type(@s, list);
|
|
|
|
|
for i := 0 to cef_string_list_size(list) - 1 do
|
|
|
|
|
begin
|
|
|
|
|
FillChar(str, SizeOf(str), 0);
|
|
|
|
|
cef_string_list_value(list, i, @str);
|
|
|
|
|
extensions.Add(CefStringClearAndGet(str));
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
cef_string_list_free(list);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefBase64Encode(const data: Pointer; dataSize: NativeUInt): ustring;
|
|
|
|
|
begin
|
|
|
|
|
Result:= CefStringFreeAndGet(cef_base64encode(data, dataSize));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefBase64Decode(const data: ustring): ICefBinaryValue;
|
|
|
|
|
var
|
|
|
|
|
s: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(data);
|
|
|
|
|
Result := TCefBinaryValueRef.UnWrap(cef_base64decode(@s));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefUriEncode(const text: ustring; usePlus: Boolean): ustring;
|
|
|
|
|
var
|
|
|
|
|
s: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(text);
|
|
|
|
|
Result := CefStringFreeAndGet(cef_uriencode(@s, Ord(usePlus)));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefUriDecode(const text: ustring; convertToUtf8: Boolean;
|
|
|
|
|
unescapeRule: TCefUriUnescapeRule): ustring;
|
|
|
|
|
var
|
|
|
|
|
s: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(text);
|
|
|
|
|
Result := CefStringFreeAndGet(cef_uridecode(@s, Ord(convertToUtf8), unescapeRule));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefParseJson(const jsonString: ustring; options: TCefJsonParserOptions): ICefValue;
|
|
|
|
|
var
|
|
|
|
|
s: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(jsonString);
|
|
|
|
|
Result := TCefValueRef.UnWrap(cef_parse_json(@s, options));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefParseJsonAndReturnError(const jsonString : ustring;
|
|
|
|
|
options : TCefJsonParserOptions;
|
|
|
|
|
out errorCodeOut : TCefJsonParserError;
|
|
|
|
|
out errorMsgOut : ustring): ICefValue;
|
|
|
|
|
var
|
|
|
|
|
s, e: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
s := CefString(jsonString);
|
|
|
|
|
FillChar(e, SizeOf(e), 0);
|
|
|
|
|
Result := TCefValueRef.UnWrap(cef_parse_jsonand_return_error(@s, options, @errorCodeOut, @e));
|
|
|
|
|
errorMsgOut := CefString(@e);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefWriteJson(const node: ICefValue; options: TCefJsonWriterOptions): ustring;
|
|
|
|
|
begin
|
|
|
|
|
Result := CefStringFreeAndGet(cef_write_json(CefGetData(node), options));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefCreateDirectory(const fullPath: ustring): Boolean;
|
|
|
|
|
var
|
|
|
|
|
path: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
path := CefString(fullPath);
|
|
|
|
|
Result := cef_create_directory(@path) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefGetTempDirectory(out tempDir: ustring): Boolean;
|
|
|
|
|
var
|
|
|
|
|
path: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(path, SizeOf(path), 0);
|
|
|
|
|
Result := cef_get_temp_directory(@path) <> 0;
|
|
|
|
|
tempDir := CefString(@path);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefCreateNewTempDirectory(const prefix: ustring; out newTempPath: ustring): Boolean;
|
|
|
|
|
var
|
|
|
|
|
path, pref: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(path, SizeOf(path), 0);
|
|
|
|
|
pref := CefString(prefix);
|
|
|
|
|
Result := cef_create_new_temp_directory(@pref, @path) <> 0;
|
|
|
|
|
newTempPath := CefString(@path);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefCreateTempDirectoryInDirectory(const baseDir, prefix: ustring;
|
|
|
|
|
out newDir: ustring): Boolean;
|
|
|
|
|
var
|
|
|
|
|
base, path, pref: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
FillChar(path, SizeOf(path), 0);
|
|
|
|
|
pref := CefString(prefix);
|
|
|
|
|
base := CefString(baseDir);
|
|
|
|
|
Result := cef_create_temp_directory_in_directory(@base, @pref, @path) <> 0;
|
|
|
|
|
newDir := CefString(@path);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefDirectoryExists(const path: ustring): Boolean;
|
|
|
|
|
var
|
|
|
|
|
str: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
str := CefString(path);
|
|
|
|
|
Result := cef_directory_exists(@str) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefDeleteFile(const path: ustring; recursive: Boolean): Boolean;
|
|
|
|
|
var
|
|
|
|
|
str: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
str := CefString(path);
|
|
|
|
|
Result := cef_delete_file(@str, Ord(recursive)) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefZipDirectory(const srcDir, destFile: ustring; includeHiddenFiles: Boolean): Boolean;
|
|
|
|
|
var
|
|
|
|
|
src, dst: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
src := CefString(srcDir);
|
|
|
|
|
dst := CefString(destFile);
|
|
|
|
|
Result := cef_zip_directory(@src, @dst, Ord(includeHiddenFiles)) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-12 17:00:34 +02:00
|
|
|
|
procedure CefLoadCRLSetsFile(const path : ustring);
|
|
|
|
|
var
|
|
|
|
|
TempPath : TCefString;
|
|
|
|
|
begin
|
|
|
|
|
TempPath := CefString(path);
|
|
|
|
|
cef_load_crlsets_file(@TempPath);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-08-12 20:29:52 +02:00
|
|
|
|
function CefGetGeolocation(const aCallbackFunction : TOnLocationUpdate) : boolean;
|
|
|
|
|
var
|
|
|
|
|
TempGeoCallBack : ICefGetGeolocationCallback;
|
|
|
|
|
begin
|
|
|
|
|
TempGeoCallBack := TCefFastGetGeolocationCallback.Create(aCallbackFunction);
|
|
|
|
|
Result := (cef_get_geolocation(TempGeoCallBack.Wrap) <> 0);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-18 17:50:28 +02:00
|
|
|
|
function CefIsKeyDown(aWparam : WPARAM) : boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := (GetKeyState(aWparam) < 0);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function CefIsKeyToggled(aWparam : WPARAM) : boolean;
|
|
|
|
|
begin
|
|
|
|
|
Result := (GetKeyState(aWparam) and $1) <> 0;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function GetCefMouseModifiers(aWparam : WPARAM) : TCefEventFlags;
|
|
|
|
|
begin
|
|
|
|
|
Result := EVENTFLAG_NONE;
|
|
|
|
|
|
|
|
|
|
if ((aWparam and MK_CONTROL) <> 0) then Result := Result or EVENTFLAG_CONTROL_DOWN;
|
|
|
|
|
if ((aWparam and MK_SHIFT) <> 0) then Result := Result or EVENTFLAG_SHIFT_DOWN;
|
|
|
|
|
if ((aWparam and MK_LBUTTON) <> 0) then Result := Result or EVENTFLAG_LEFT_MOUSE_BUTTON;
|
|
|
|
|
if ((aWparam and MK_MBUTTON) <> 0) then Result := Result or EVENTFLAG_MIDDLE_MOUSE_BUTTON;
|
|
|
|
|
if ((aWparam and MK_RBUTTON) <> 0) then Result := Result or EVENTFLAG_RIGHT_MOUSE_BUTTON;
|
|
|
|
|
if CefIsKeyDown(VK_MENU) then Result := Result or EVENTFLAG_ALT_DOWN;
|
|
|
|
|
if CefIsKeyToggled(VK_NUMLOCK) then Result := Result or EVENTFLAG_NUM_LOCK_ON;
|
|
|
|
|
if CefIsKeyToggled(VK_CAPITAL) then Result := Result or EVENTFLAG_CAPS_LOCK_ON;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-28 12:47:57 +02:00
|
|
|
|
function GetCefMouseModifiers : TCefEventFlags;
|
|
|
|
|
begin
|
|
|
|
|
Result := EVENTFLAG_NONE;
|
|
|
|
|
|
|
|
|
|
if CefIsKeyDown(MK_CONTROL) then Result := Result or EVENTFLAG_CONTROL_DOWN;
|
|
|
|
|
if CefIsKeyDown(MK_SHIFT) then Result := Result or EVENTFLAG_SHIFT_DOWN;
|
|
|
|
|
if CefIsKeyDown(MK_LBUTTON) then Result := Result or EVENTFLAG_LEFT_MOUSE_BUTTON;
|
|
|
|
|
if CefIsKeyDown(MK_MBUTTON) then Result := Result or EVENTFLAG_MIDDLE_MOUSE_BUTTON;
|
|
|
|
|
if CefIsKeyDown(MK_RBUTTON) then Result := Result or EVENTFLAG_RIGHT_MOUSE_BUTTON;
|
|
|
|
|
if CefIsKeyDown(VK_MENU) then Result := Result or EVENTFLAG_ALT_DOWN;
|
|
|
|
|
if CefIsKeyToggled(VK_NUMLOCK) then Result := Result or EVENTFLAG_NUM_LOCK_ON;
|
|
|
|
|
if CefIsKeyToggled(VK_CAPITAL) then Result := Result or EVENTFLAG_CAPS_LOCK_ON;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-18 17:50:28 +02:00
|
|
|
|
function GetCefKeyboardModifiers(aWparam : WPARAM; aLparam : LPARAM) : TCefEventFlags;
|
|
|
|
|
begin
|
|
|
|
|
Result := EVENTFLAG_NONE;
|
|
|
|
|
|
|
|
|
|
if CefIsKeyDown(VK_SHIFT) then Result := Result or EVENTFLAG_SHIFT_DOWN;
|
|
|
|
|
if CefIsKeyDown(VK_CONTROL) then Result := Result or EVENTFLAG_CONTROL_DOWN;
|
|
|
|
|
if CefIsKeyDown(VK_MENU) then Result := Result or EVENTFLAG_ALT_DOWN;
|
|
|
|
|
if CefIsKeyToggled(VK_NUMLOCK) then Result := Result or EVENTFLAG_NUM_LOCK_ON;
|
|
|
|
|
if CefIsKeyToggled(VK_CAPITAL) then Result := Result or EVENTFLAG_CAPS_LOCK_ON;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case aWparam of
|
|
|
|
|
VK_RETURN:
|
|
|
|
|
if (((aLparam shr 16) and KF_EXTENDED) <> 0) then Result := Result or EVENTFLAG_IS_KEY_PAD;
|
|
|
|
|
|
|
|
|
|
VK_INSERT,
|
|
|
|
|
VK_DELETE,
|
|
|
|
|
VK_HOME,
|
|
|
|
|
VK_END,
|
|
|
|
|
VK_PRIOR,
|
|
|
|
|
VK_NEXT,
|
|
|
|
|
VK_UP,
|
|
|
|
|
VK_DOWN,
|
|
|
|
|
VK_LEFT,
|
|
|
|
|
VK_RIGHT :
|
|
|
|
|
if (((aLparam shr 16) and KF_EXTENDED) = 0) then Result := Result or EVENTFLAG_IS_KEY_PAD;
|
|
|
|
|
|
|
|
|
|
VK_NUMLOCK,
|
|
|
|
|
VK_NUMPAD0,
|
|
|
|
|
VK_NUMPAD1,
|
|
|
|
|
VK_NUMPAD2,
|
|
|
|
|
VK_NUMPAD3,
|
|
|
|
|
VK_NUMPAD4,
|
|
|
|
|
VK_NUMPAD5,
|
|
|
|
|
VK_NUMPAD6,
|
|
|
|
|
VK_NUMPAD7,
|
|
|
|
|
VK_NUMPAD8,
|
|
|
|
|
VK_NUMPAD9,
|
|
|
|
|
VK_DIVIDE,
|
|
|
|
|
VK_MULTIPLY,
|
|
|
|
|
VK_SUBTRACT,
|
|
|
|
|
VK_ADD,
|
|
|
|
|
VK_DECIMAL,
|
|
|
|
|
VK_CLEAR :
|
|
|
|
|
Result := Result or EVENTFLAG_IS_KEY_PAD;
|
|
|
|
|
|
|
|
|
|
VK_SHIFT :
|
|
|
|
|
if CefIsKeyDown(VK_LSHIFT) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_LEFT
|
|
|
|
|
else
|
|
|
|
|
if CefIsKeyDown(VK_RSHIFT) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_RIGHT;
|
|
|
|
|
|
|
|
|
|
VK_CONTROL :
|
|
|
|
|
if CefIsKeyDown(VK_LCONTROL) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_LEFT
|
|
|
|
|
else
|
|
|
|
|
if CefIsKeyDown(VK_RCONTROL) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_RIGHT;
|
|
|
|
|
|
|
|
|
|
VK_MENU :
|
|
|
|
|
if CefIsKeyDown(VK_LMENU) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_LEFT
|
|
|
|
|
else
|
|
|
|
|
if CefIsKeyDown(VK_RMENU) then
|
|
|
|
|
Result := Result or EVENTFLAG_IS_RIGHT;
|
|
|
|
|
|
|
|
|
|
VK_LWIN :
|
|
|
|
|
Result := Result or EVENTFLAG_IS_LEFT;
|
|
|
|
|
|
|
|
|
|
VK_RWIN :
|
|
|
|
|
Result := Result or EVENTFLAG_IS_RIGHT;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function GefCursorToWindowsCursor(aCefCursor : TCefCursorType) : TCursor;
|
|
|
|
|
begin
|
|
|
|
|
case aCefCursor of
|
|
|
|
|
CT_POINTER : Result := crArrow;
|
|
|
|
|
CT_CROSS : Result := crCross;
|
|
|
|
|
CT_HAND : Result := crHandPoint;
|
|
|
|
|
CT_IBEAM : Result := crIBeam;
|
|
|
|
|
CT_WAIT : Result := crHourGlass;
|
|
|
|
|
CT_HELP : Result := crHelp;
|
|
|
|
|
CT_EASTRESIZE : Result := crSizeWE;
|
|
|
|
|
CT_NORTHRESIZE : Result := crSizeNS;
|
|
|
|
|
CT_NORTHEASTRESIZE : Result := crSizeNESW;
|
|
|
|
|
CT_NORTHWESTRESIZE : Result := crSizeNWSE;
|
|
|
|
|
CT_SOUTHRESIZE : Result := crSizeNS;
|
|
|
|
|
CT_SOUTHEASTRESIZE : Result := crSizeNWSE;
|
|
|
|
|
CT_SOUTHWESTRESIZE : Result := crSizeNESW;
|
|
|
|
|
CT_WESTRESIZE : Result := crSizeWE;
|
|
|
|
|
CT_NORTHSOUTHRESIZE : Result := crSizeNS;
|
|
|
|
|
CT_EASTWESTRESIZE : Result := crSizeWE;
|
|
|
|
|
CT_NORTHEASTSOUTHWESTRESIZE : Result := crSizeNESW;
|
|
|
|
|
CT_NORTHWESTSOUTHEASTRESIZE : Result := crSizeNWSE;
|
|
|
|
|
CT_COLUMNRESIZE : Result := crHSplit;
|
|
|
|
|
CT_ROWRESIZE : Result := crVSplit;
|
|
|
|
|
CT_MOVE : Result := crSizeAll;
|
|
|
|
|
CT_PROGRESS : Result := crAppStart;
|
|
|
|
|
CT_NONE : Result := crNone;
|
|
|
|
|
CT_NODROP,
|
|
|
|
|
CT_NOTALLOWED : Result := crNo;
|
|
|
|
|
CT_GRAB,
|
|
|
|
|
CT_GRABBING : Result := crDrag;
|
|
|
|
|
|
|
|
|
|
else Result := crDefault;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure DropEffectToDragOperation(aEffect: Longint; var aAllowedOps : TCefDragOperations);
|
|
|
|
|
begin
|
|
|
|
|
aAllowedOps := DRAG_OPERATION_NONE;
|
|
|
|
|
|
|
|
|
|
if ((aEffect and DROPEFFECT_COPY) <> 0) then aAllowedOps := aAllowedOps or DRAG_OPERATION_COPY;
|
|
|
|
|
if ((aEffect and DROPEFFECT_LINK) <> 0) then aAllowedOps := aAllowedOps or DRAG_OPERATION_LINK;
|
|
|
|
|
if ((aEffect and DROPEFFECT_MOVE) <> 0) then aAllowedOps := aAllowedOps or DRAG_OPERATION_MOVE;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure DragOperationToDropEffect(const aDragOperations : TCefDragOperations; var aEffect: Longint);
|
|
|
|
|
begin
|
|
|
|
|
aEffect := DROPEFFECT_NONE;
|
|
|
|
|
|
|
|
|
|
if ((aDragOperations and DRAG_OPERATION_COPY) <> 0) then aEffect := aEffect or DROPEFFECT_COPY;
|
|
|
|
|
if ((aDragOperations and DRAG_OPERATION_LINK) <> 0) then aEffect := aEffect or DROPEFFECT_LINK;
|
|
|
|
|
if ((aDragOperations and DRAG_OPERATION_MOVE) <> 0) then aEffect := aEffect or DROPEFFECT_MOVE;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-28 12:47:57 +02:00
|
|
|
|
function DeviceToLogical(aValue : integer; const aDeviceScaleFactor : double) : integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := floor(aValue / aDeviceScaleFactor);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure DeviceToLogical(var aEvent : TCEFMouseEvent; const aDeviceScaleFactor : double);
|
|
|
|
|
begin
|
|
|
|
|
aEvent.x := DeviceToLogical(aEvent.x, aDeviceScaleFactor);
|
|
|
|
|
aEvent.y := DeviceToLogical(aEvent.y, aDeviceScaleFactor);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure DeviceToLogical(var aPoint : TPoint; const aDeviceScaleFactor : double);
|
|
|
|
|
begin
|
|
|
|
|
aPoint.x := DeviceToLogical(aPoint.x, aDeviceScaleFactor);
|
|
|
|
|
aPoint.y := DeviceToLogical(aPoint.y, aDeviceScaleFactor);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function LogicalToDevice(aValue : integer; const aDeviceScaleFactor : double) : integer;
|
|
|
|
|
begin
|
|
|
|
|
Result := floor(aValue * aDeviceScaleFactor);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure LogicalToDevice(var aRect : TCEFRect; const aDeviceScaleFactor : double);
|
|
|
|
|
begin
|
|
|
|
|
aRect.x := LogicalToDevice(aRect.x, aDeviceScaleFactor);
|
|
|
|
|
aRect.y := LogicalToDevice(aRect.y, aDeviceScaleFactor);
|
|
|
|
|
aRect.width := LogicalToDevice(aRect.width, aDeviceScaleFactor);
|
|
|
|
|
aRect.height := LogicalToDevice(aRect.height, aDeviceScaleFactor);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function GetScreenDPI : integer;
|
|
|
|
|
var
|
|
|
|
|
TempDC : HDC;
|
|
|
|
|
begin
|
|
|
|
|
TempDC := GetDC(0);
|
|
|
|
|
Result := GetDeviceCaps(TempDC, LOGPIXELSX);
|
|
|
|
|
ReleaseDC(0, TempDC);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function GetDeviceScaleFactor : single;
|
|
|
|
|
begin
|
|
|
|
|
Result := GetScreenDPI / 96;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-09-07 22:56:51 +02:00
|
|
|
|
procedure CefRegisterWidevineCdm(const path: ustring; const callback: ICefRegisterCdmCallback);
|
|
|
|
|
var
|
|
|
|
|
str: TCefString;
|
|
|
|
|
begin
|
|
|
|
|
str := CefString(path);
|
|
|
|
|
cef_register_widevine_cdm(@str, CefGetData(callback));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure CefFastRegisterWidevineCdm(const path: ustring; const callback: TCefRegisterCDMProc);
|
|
|
|
|
begin
|
|
|
|
|
CefRegisterWidevineCdm(path, TCefFastRegisterCdmCallback.Create(callback) as ICefRegisterCdmCallback);
|
|
|
|
|
end;
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end.
|