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-05-12 14:50:54 +02:00
|
|
|
|
// Copyright <20> 2018 Salvador Diaz 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 uCEFResourceBundleHandler;
|
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
|
{$IFDEF FPC}
|
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
{$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-11-25 19:04:15 +01:00
|
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes, uCEFApplication;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TCefResourceBundleHandlerOwn = class(TCefBaseRefCountedOwn, ICefResourceBundleHandler)
|
2017-01-27 16:37:51 +01:00
|
|
|
|
protected
|
2017-11-22 17:43:48 +01:00
|
|
|
|
function GetLocalizedString(stringid: Integer; var stringVal: ustring): Boolean; virtual; abstract;
|
|
|
|
|
function GetDataResource(resourceId: Integer; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract;
|
|
|
|
|
function GetDataResourceForScale(resourceId: Integer; scaleFactor: TCefScaleFactor; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create; virtual;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TCefCustomResourceBundleHandler = class(TCefResourceBundleHandlerOwn)
|
|
|
|
|
protected
|
|
|
|
|
FCefApp : TCefApplication;
|
|
|
|
|
|
|
|
|
|
function GetLocalizedString(stringid: Integer; var stringVal: ustring): Boolean; override;
|
|
|
|
|
function GetDataResource(resourceId: Integer; var data: Pointer; var dataSize: NativeUInt): Boolean; override;
|
|
|
|
|
function GetDataResourceForScale(resourceId: Integer; scaleFactor: TCefScaleFactor; var data: Pointer; var dataSize: NativeUInt): Boolean; override;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create(const aCefApp : TCefApplication); reintroduce;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2018-03-29 20:02:04 +02:00
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
|
System.SysUtils,
|
|
|
|
|
{$ELSE}
|
|
|
|
|
SysUtils,
|
|
|
|
|
{$ENDIF}
|
2017-11-25 19:04:15 +01:00
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFConstants;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-22 17:43:48 +01:00
|
|
|
|
function cef_resource_bundle_handler_get_localized_string(self : PCefResourceBundleHandler;
|
|
|
|
|
string_id : Integer;
|
|
|
|
|
string_val : PCefString): Integer; stdcall;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
var
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempString : ustring;
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(False);
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefResourceBundleHandlerOwn) then
|
|
|
|
|
begin
|
|
|
|
|
TempString := '';
|
|
|
|
|
Result := Ord(TCefResourceBundleHandlerOwn(TempObject).GetLocalizedString(string_id, TempString));
|
2017-11-22 17:43:48 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
if (Result <> 0) then string_val^ := CefString(TempString);
|
2018-03-29 20:02:04 +02:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
function cef_resource_bundle_handler_get_data_resource( self : PCefResourceBundleHandler;
|
2017-11-22 17:43:48 +01:00
|
|
|
|
resource_id : Integer;
|
|
|
|
|
var data : Pointer;
|
|
|
|
|
var data_size : NativeUInt): Integer; stdcall;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(False);
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefResourceBundleHandlerOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(TCefResourceBundleHandlerOwn(TempObject).GetDataResource(resource_id, data, data_size));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
function cef_resource_bundle_handler_get_data_resource_for_scale( self : PCefResourceBundleHandler;
|
2017-11-22 17:43:48 +01:00
|
|
|
|
resource_id : Integer;
|
|
|
|
|
scale_factor : TCefScaleFactor;
|
|
|
|
|
var data : Pointer;
|
|
|
|
|
var data_size : NativeUInt): Integer; stdcall;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(False);
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefResourceBundleHandlerOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(TCefResourceBundleHandlerOwn(TempObject).GetDataResourceForScale(resource_id, scale_factor, data, data_size));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
constructor TCefResourceBundleHandlerOwn.Create;
|
|
|
|
|
begin
|
|
|
|
|
inherited CreateData(SizeOf(TCefResourceBundleHandler));
|
|
|
|
|
|
2017-11-22 17:43:48 +01:00
|
|
|
|
with PCefResourceBundleHandler(FData)^ do
|
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
|
get_localized_string := {$IFDEF FPC}@{$ENDIF}cef_resource_bundle_handler_get_localized_string;
|
|
|
|
|
get_data_resource := {$IFDEF FPC}@{$ENDIF}cef_resource_bundle_handler_get_data_resource;
|
|
|
|
|
get_data_resource_for_scale := {$IFDEF FPC}@{$ENDIF}cef_resource_bundle_handler_get_data_resource_for_scale;
|
2017-11-22 17:43:48 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
// TCefCustomResourceBundleHandler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor TCefCustomResourceBundleHandler.Create(const aCefApp : TCefApplication);
|
|
|
|
|
begin
|
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
|
|
FCefApp := aCefApp;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
destructor TCefCustomResourceBundleHandler.Destroy;
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
FCefApp := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
function TCefCustomResourceBundleHandler.GetLocalizedString( stringid : Integer;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
var stringVal : ustring): Boolean;
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
Result := (FCefApp <> nil) and FCefApp.Internal_GetLocalizedString(stringid, stringVal);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomResourceBundleHandler.GetLocalizedString', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
function TCefCustomResourceBundleHandler.GetDataResource( resourceId : Integer;
|
|
|
|
|
var data : Pointer;
|
|
|
|
|
var dataSize : NativeUInt): Boolean;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
Result := (FCefApp <> nil) and FCefApp.Internal_GetDataResource(resourceId, data, dataSize);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomResourceBundleHandler.GetDataResource', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
function TCefCustomResourceBundleHandler.GetDataResourceForScale( resourceId : Integer;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
scaleFactor : TCefScaleFactor;
|
|
|
|
|
var data : Pointer;
|
|
|
|
|
var dataSize : NativeUInt): Boolean;
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := False;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
Result := (FCefApp <> nil) and FCefApp.Internal_GetDataResourceForScale(resourceId, scaleFactor, data, dataSize);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomResourceBundleHandler.GetDataResourceForScale', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end.
|