You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2026-04-23 01:13:01 +02:00
48 lines
965 B
ObjectPascal
48 lines
965 B
ObjectPascal
unit uCEFJsDialogCallback;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefJsDialogCallbackRef = class(TCefBaseRefCountedRef, ICefJsDialogCallback)
|
|
protected
|
|
procedure Cont(success: Boolean; const userInput: ustring);
|
|
public
|
|
class function UnWrap(data: Pointer): ICefJsDialogCallback;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
uCEFMiscFunctions;
|
|
|
|
procedure TCefJsDialogCallbackRef.Cont(success: Boolean; const userInput: ustring);
|
|
var
|
|
TempInput : TCefString;
|
|
begin
|
|
TempInput := CefString(userInput);
|
|
PCefJsDialogCallback(FData)^.cont(PCefJsDialogCallback(FData), Ord(success), @TempInput);
|
|
end;
|
|
|
|
class function TCefJsDialogCallbackRef.UnWrap(data: Pointer): ICefJsDialogCallback;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefJsDialogCallback
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|