CEF4Delphi/source/uCEFPrintDialogCallback.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

51 lines
1.1 KiB
ObjectPascal

unit uCEFPrintDialogCallback;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
type
TCefPrintDialogCallbackRef = class(TCefBaseRefCountedRef, ICefPrintDialogCallback)
protected
procedure cont(const settings: ICefPrintSettings);
procedure cancel;
public
class function UnWrap(data: Pointer): ICefPrintDialogCallback;
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
procedure TCefPrintDialogCallbackRef.cancel;
begin
PCefPrintDialogCallback(FData)^.cancel(PCefPrintDialogCallback(FData));
end;
procedure TCefPrintDialogCallbackRef.cont(const settings: ICefPrintSettings);
begin
PCefPrintDialogCallback(FData)^.cont(PCefPrintDialogCallback(FData), CefGetData(settings));
end;
class function TCefPrintDialogCallbackRef.UnWrap(data: Pointer): ICefPrintDialogCallback;
begin
if (data <> nil) then
Result := Create(data) as ICefPrintDialogCallback
else
Result := nil;
end;
end.