CEF4Delphi/source/uCEFJsDialogCallback.pas
salvadordf ca8bc9dff4 Added cef4delphi.chm help file
Added the PDS file to extract the HTML Help files using PasDoc
Added more XML documentation
Fixed some XML errors.
Removed the license copy from the pas units.
Updated the LICENSE.md file
2023-08-09 19:38:57 +02:00

48 lines
983 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, uCEFLibFunctions;
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.