2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFFindHandler;
|
|
|
|
|
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, uCEFTypes, uCEFInterfaces;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefFindHandlerOwn = class(TCefBaseRefCountedOwn, ICefFindHandler)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
|
|
|
procedure OnFindResult(const browser: ICefBrowser; identifier, count: Integer; const selectionRect: PCefRect; activeMatchOrdinal: Integer; finalUpdate: Boolean); virtual; abstract;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
procedure RemoveReferences; virtual;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCustomFindHandler = class(TCefFindHandlerOwn)
|
|
|
|
protected
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents : Pointer;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
procedure OnFindResult(const browser: ICefBrowser; identifier, count: Integer; const selectionRect: PCefRect; activeMatchOrdinal: Integer; finalUpdate: Boolean); override;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
procedure RemoveReferences; override;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
public
|
2019-06-19 16:53:26 +02:00
|
|
|
constructor Create(const events : IChromiumEvents); reintroduce; virtual;
|
2017-06-11 17:48:20 +02:00
|
|
|
destructor Destroy; override;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
2018-02-03 17:52:48 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
System.SysUtils,
|
|
|
|
{$ELSE}
|
|
|
|
SysUtils,
|
|
|
|
{$ENDIF}
|
2017-01-27 16:37:51 +01:00
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBrowser;
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
procedure cef_find_handler_on_find_result( self : PCefFindHandler;
|
|
|
|
browser : PCefBrowser;
|
|
|
|
identifier : Integer;
|
|
|
|
count : Integer;
|
|
|
|
const selection_rect : PCefRect;
|
|
|
|
active_match_ordinal : integer;
|
|
|
|
final_update : Integer); stdcall;
|
|
|
|
var
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefFindHandlerOwn) then
|
|
|
|
TCefFindHandlerOwn(TempObject).OnFindResult(TCefBrowserRef.UnWrap(browser),
|
|
|
|
identifier,
|
|
|
|
count,
|
|
|
|
selection_rect,
|
|
|
|
active_match_ordinal,
|
|
|
|
final_update <> 0);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefFindHandlerOwn.Create;
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
inherited CreateData(SizeOf(TCefFindHandler));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
PCefFindHandler(FData)^.on_find_result := {$IFDEF FPC}@{$ENDIF}cef_find_handler_on_find_result;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
procedure TCefFindHandlerOwn.RemoveReferences;
|
|
|
|
begin
|
|
|
|
//
|
|
|
|
end;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
// TCustomFindHandler
|
|
|
|
|
2019-06-19 16:53:26 +02:00
|
|
|
constructor TCustomFindHandler.Create(const events : IChromiumEvents);
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
2019-06-19 16:53:26 +02:00
|
|
|
FEvents := Pointer(events);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2017-06-11 17:48:20 +02:00
|
|
|
destructor TCustomFindHandler.Destroy;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
RemoveReferences;
|
2017-06-11 17:48:20 +02:00
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
procedure TCustomFindHandler.RemoveReferences;
|
|
|
|
begin
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCustomFindHandler.OnFindResult(const browser : ICefBrowser;
|
|
|
|
identifier : Integer;
|
|
|
|
count : Integer;
|
|
|
|
const selectionRect : PCefRect;
|
|
|
|
activeMatchOrdinal : Integer;
|
|
|
|
finalUpdate : Boolean);
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2021-04-18 19:36:20 +02:00
|
|
|
if (FEvents <> nil) then
|
|
|
|
IChromiumEvents(FEvents).doOnFindResult(browser, identifier, count, selectionRect, activeMatchOrdinal, finalUpdate);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|