2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFTask;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 18:56:41 +01:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-03-16 19:09:42 +01:00
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefTaskOwn = class(TCefBaseRefCountedOwn, ICefTask)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
|
|
|
procedure Execute; virtual;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
|
|
|
end;
|
|
|
|
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefTaskRef = class(TCefBaseRefCountedRef, ICefTask)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
|
|
|
procedure Execute; virtual;
|
|
|
|
|
|
|
|
public
|
|
|
|
class function UnWrap(data: Pointer): ICefTask;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefFastTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FMethod: TCefFastTaskProc;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
class procedure New(threadId: TCefThreadId; const method: TCefFastTaskProc);
|
|
|
|
class procedure NewDelayed(threadId: TCefThreadId; Delay: Int64; const method: TCefFastTaskProc);
|
|
|
|
constructor Create(const method: TCefFastTaskProc); reintroduce;
|
|
|
|
end;
|
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
TCefUpdatePrefsTask = class(TCefTaskOwn)
|
|
|
|
protected
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents : Pointer;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
2018-01-25 21:34:04 +01:00
|
|
|
destructor Destroy; override;
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
TCefSavePrefsTask = class(TCefTaskOwn)
|
|
|
|
protected
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents : Pointer;
|
2017-03-15 14:53:45 +01:00
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
2018-01-25 21:34:04 +01:00
|
|
|
destructor Destroy; override;
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
2018-11-17 11:50:34 +01:00
|
|
|
TCefURLRequestTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : ICEFUrlRequestClientEvents); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2019-10-18 17:15:55 +02:00
|
|
|
TCefGenericTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FTaskID : cardinal;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aTaskID : cardinal); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2019-12-10 16:49:07 +01:00
|
|
|
TCefUpdateZoomStepTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FInc : boolean;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aInc : boolean); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefUpdateZoomPctTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FInc : boolean;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aInc : boolean); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefReadZoomTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefSetZoomLevelTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FValue : double;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; const aValue : double); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefSetZoomPctTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FValue : double;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; const aValue : double); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefSetZoomStepTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FValue : byte;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aValue : byte); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
TCefCreateCustomViewTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : ICefViewDelegateEvents); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2020-11-22 16:42:52 +01:00
|
|
|
TCefBrowserNavigationTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FTask : TCefBrowserNavigation;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aTask : TCefBrowserNavigation); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2022-08-29 22:45:28 +02:00
|
|
|
TCefSetAudioMutedTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
FValue : boolean;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents; aValue : boolean); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefToggleAudioMutedTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2023-03-11 17:29:30 +01:00
|
|
|
TCefEnableFocusTask = class(TCefTaskOwn)
|
|
|
|
protected
|
|
|
|
FEvents : Pointer;
|
|
|
|
|
|
|
|
procedure Execute; override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
2018-02-03 17:52:48 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
System.SysUtils,
|
|
|
|
{$ELSE}
|
|
|
|
SysUtils,
|
|
|
|
{$ENDIF}
|
2018-11-17 11:50:34 +01:00
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFCookieManager, uCEFUrlRequest;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
procedure cef_task_execute(self: PCefTask); stdcall;
|
2018-03-29 20:02:04 +02:00
|
|
|
var
|
2018-05-12 14:50:54 +02:00
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
TempObject := CefGetObject(self);
|
2018-03-29 20:02:04 +02:00
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefTaskOwn) then
|
|
|
|
TCefTaskOwn(TempObject).Execute;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefTaskOwn.Create;
|
|
|
|
begin
|
|
|
|
inherited CreateData(SizeOf(TCefTask));
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
PCefTask(FData)^.execute := {$IFDEF FPC}@{$ENDIF}cef_task_execute;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCefTaskOwn.Execute;
|
|
|
|
begin
|
|
|
|
//
|
|
|
|
end;
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
// TCefTaskRef
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
procedure TCefTaskRef.Execute;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
PCefTask(FData)^.execute(PCefTask(FData));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
class function TCefTaskRef.UnWrap(data: Pointer): ICefTask;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
if (data <> nil) then
|
2017-01-27 16:37:51 +01:00
|
|
|
Result := Create(data) as ICefTask
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
// TCefFastTask
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
constructor TCefFastTask.Create(const method: TCefFastTaskProc);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FMethod := method;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCefFastTask.Execute;
|
|
|
|
begin
|
|
|
|
FMethod();
|
|
|
|
end;
|
|
|
|
|
|
|
|
class procedure TCefFastTask.New(threadId: TCefThreadId; const method: TCefFastTaskProc);
|
|
|
|
begin
|
|
|
|
CefPostTask(threadId, Create(method));
|
|
|
|
end;
|
|
|
|
|
|
|
|
class procedure TCefFastTask.NewDelayed(threadId: TCefThreadId; Delay: Int64; const method: TCefFastTaskProc);
|
|
|
|
begin
|
|
|
|
CefPostDelayedTask(threadId, Create(method), Delay);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
// TCefUpdatePrefsTask
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor TCefUpdatePrefsTask.Create(const aEvents : IChromiumEvents);
|
2017-03-15 14:53:45 +01:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := Pointer(aEvents);
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
2018-01-25 21:34:04 +01:00
|
|
|
destructor TCefUpdatePrefsTask.Destroy;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := nil;
|
2018-01-25 21:34:04 +01:00
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
procedure TCefUpdatePrefsTask.Execute;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
try
|
|
|
|
try
|
2018-02-16 18:41:13 +01:00
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doUpdateOwnPreferences;
|
2018-02-03 17:52:48 +01:00
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefUpdatePrefsTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
// TCefSavePrefsTask
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor TCefSavePrefsTask.Create(const aEvents : IChromiumEvents);
|
2017-03-15 14:53:45 +01:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := Pointer(aEvents);
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
2018-01-25 21:34:04 +01:00
|
|
|
destructor TCefSavePrefsTask.Destroy;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := nil;
|
2018-01-25 21:34:04 +01:00
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2017-03-15 14:53:45 +01:00
|
|
|
procedure TCefSavePrefsTask.Execute;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doSavePreferences;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefSavePrefsTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
2017-03-15 14:53:45 +01:00
|
|
|
end;
|
|
|
|
|
2018-11-17 11:50:34 +01:00
|
|
|
|
|
|
|
// TCefURLRequestTask
|
|
|
|
|
|
|
|
procedure TCefURLRequestTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then ICEFUrlRequestClientEvents(FEvents).doOnCreateURLRequest;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefURLRequestTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefURLRequestTask.Create(const aEvents : ICEFUrlRequestClientEvents);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefURLRequestTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2019-10-18 17:15:55 +02:00
|
|
|
|
|
|
|
// TCefGenericTask
|
|
|
|
|
|
|
|
procedure TCefGenericTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doOnExecuteTaskOnCefThread(FTaskID);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefGenericTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefGenericTask.Create(const aEvents : IChromiumEvents; aTaskID : cardinal);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FTaskID := aTaskID;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefGenericTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2019-12-10 16:49:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
// TCefUpdateZoomStepTask
|
|
|
|
|
|
|
|
procedure TCefUpdateZoomStepTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doUpdateZoomStep(FInc);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefUpdateZoomStepTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefUpdateZoomStepTask.Create(const aEvents : IChromiumEvents; aInc : boolean);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FInc := aInc;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefUpdateZoomStepTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefUpdateZoomPctTask
|
|
|
|
|
|
|
|
procedure TCefUpdateZoomPctTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doUpdateZoomPct(FInc);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefUpdateZoomPctTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefUpdateZoomPctTask.Create(const aEvents : IChromiumEvents; aInc : boolean);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FInc := aInc;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefUpdateZoomPctTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefReadZoomTask
|
|
|
|
|
|
|
|
procedure TCefReadZoomTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doReadZoom;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefReadZoomTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefReadZoomTask.Create(const aEvents : IChromiumEvents);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefReadZoomTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefSetZoomLevelTask
|
|
|
|
|
|
|
|
procedure TCefSetZoomLevelTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doSetZoomLevel(FValue);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefSetZoomLevelTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefSetZoomLevelTask.Create(const aEvents : IChromiumEvents; const aValue : double);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FValue := aValue;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefSetZoomLevelTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefSetZoomPctTask
|
|
|
|
|
|
|
|
procedure TCefSetZoomPctTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doSetZoomPct(FValue);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefSetZoomPctTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefSetZoomPctTask.Create(const aEvents : IChromiumEvents; const aValue : double);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FValue := aValue;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefSetZoomPctTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TCefSetZoomStepTask
|
|
|
|
|
|
|
|
procedure TCefSetZoomStepTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doSetZoomStep(FValue);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefSetZoomStepTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefSetZoomStepTask.Create(const aEvents : IChromiumEvents; aValue : byte);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FValue := aValue;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefSetZoomStepTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2020-05-05 18:10:33 +02:00
|
|
|
|
|
|
|
// TCefCreateCustomViewTask
|
|
|
|
|
|
|
|
procedure TCefCreateCustomViewTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then ICefViewDelegateEvents(FEvents).doCreateCustomView;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('ICefViewDelegateEvents.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefCreateCustomViewTask.Create(const aEvents : ICefViewDelegateEvents);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefCreateCustomViewTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2020-11-22 16:42:52 +01:00
|
|
|
|
|
|
|
// TCefBrowserNavigationTask
|
|
|
|
|
|
|
|
procedure TCefBrowserNavigationTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doBrowserNavigation(FTask);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefBrowserNavigationTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefBrowserNavigationTask.Create(const aEvents : IChromiumEvents; aTask : TCefBrowserNavigation);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FTask := aTask;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefBrowserNavigationTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2022-08-29 22:45:28 +02:00
|
|
|
|
|
|
|
// TCefSetAudioMutedTask
|
|
|
|
|
|
|
|
procedure TCefSetAudioMutedTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doSetAudioMuted(FValue);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefSetAudioMutedTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefSetAudioMutedTask.Create(const aEvents : IChromiumEvents; aValue : boolean);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
FValue := aValue;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefSetAudioMutedTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
// TCefToggleAudioMutedTask
|
|
|
|
|
|
|
|
procedure TCefToggleAudioMutedTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doToggleAudioMuted;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefToggleAudioMutedTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefToggleAudioMutedTask.Create(const aEvents : IChromiumEvents);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefToggleAudioMutedTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
2023-03-11 17:29:30 +01:00
|
|
|
// TCefEnableFocusTask
|
|
|
|
|
|
|
|
procedure TCefEnableFocusTask.Execute;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doEnableFocus;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefEnableFocusTask.Execute', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefEnableFocusTask.Create(const aEvents : IChromiumEvents);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
|
|
|
FEvents := Pointer(aEvents);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefEnableFocusTask.Destroy;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
end.
|