2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFJsDialogCallback;
|
|
|
|
|
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
|
|
|
TCefJsDialogCallbackRef = class(TCefBaseRefCountedRef, ICefJsDialogCallback)
|
2017-12-18 19:38:56 +01:00
|
|
|
protected
|
|
|
|
procedure Cont(success: Boolean; const userInput: ustring);
|
|
|
|
public
|
|
|
|
class function UnWrap(data: Pointer): ICefJsDialogCallback;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions;
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
procedure TCefJsDialogCallbackRef.Cont(success: Boolean; const userInput: ustring);
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
2018-05-12 14:50:54 +02:00
|
|
|
TempInput : TCefString;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
TempInput := CefString(userInput);
|
|
|
|
PCefJsDialogCallback(FData)^.cont(PCefJsDialogCallback(FData), Ord(success), @TempInput);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2017-12-18 19:38:56 +01:00
|
|
|
class function TCefJsDialogCallbackRef.UnWrap(data: Pointer): ICefJsDialogCallback;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2017-12-18 19:38:56 +01:00
|
|
|
if (data <> nil) then
|
|
|
|
Result := Create(data) as ICefJsDialogCallback
|
|
|
|
else
|
2017-01-27 16:37:51 +01:00
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|