2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFPDFPrintCallback;
|
|
|
|
|
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
|
|
|
TCefPdfPrintCallbackOwn = class(TCefBaseRefCountedOwn, ICefPdfPrintCallback)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
|
|
|
procedure OnPdfPrintFinished(const path: ustring; ok: Boolean); virtual; abstract;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TCefFastPdfPrintCallback = class(TCefPdfPrintCallbackOwn)
|
|
|
|
protected
|
|
|
|
FProc: TOnPdfPrintFinishedProc;
|
|
|
|
|
|
|
|
procedure OnPdfPrintFinished(const path: ustring; ok: Boolean); override;
|
|
|
|
|
|
|
|
public
|
|
|
|
constructor Create(const proc: TOnPdfPrintFinishedProc); reintroduce;
|
2017-12-27 14:05:33 +01:00
|
|
|
destructor Destroy; override;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
TCefCustomPDFPrintCallBack = class(TCefPdfPrintCallbackOwn)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents : Pointer;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
procedure OnPdfPrintFinished(const path: ustring; aResultOK : Boolean); override;
|
|
|
|
|
|
|
|
public
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor Create(const aEvents : IChromiumEvents); reintroduce;
|
2017-12-27 14:05:33 +01: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}
|
2018-01-25 21:34:04 +01:00
|
|
|
uCEFMiscFunctions, uCEFLibFunctions;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
procedure cef_pdf_print_callback_on_pdf_print_finished( self : PCefPdfPrintCallback;
|
|
|
|
const path : PCefString;
|
|
|
|
ok : 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 TCefPdfPrintCallbackOwn) then
|
|
|
|
TCefPdfPrintCallbackOwn(TempObject).OnPdfPrintFinished(CefString(path),
|
|
|
|
ok <> 0);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TCefPdfPrintCallbackOwn.Create;
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
inherited CreateData(SizeOf(TCefPdfPrintCallback));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
with PCefPdfPrintCallback(FData)^ do
|
|
|
|
on_pdf_print_finished := {$IFDEF FPC}@{$ENDIF}cef_pdf_print_callback_on_pdf_print_finished;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
// TCefFastPdfPrintCallback
|
|
|
|
|
|
|
|
constructor TCefFastPdfPrintCallback.Create(const proc: TOnPdfPrintFinishedProc);
|
|
|
|
begin
|
|
|
|
FProc := proc;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
inherited Create;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TCefFastPdfPrintCallback.OnPdfPrintFinished(const path: ustring; ok: Boolean);
|
|
|
|
begin
|
2017-12-27 14:05:33 +01:00
|
|
|
if assigned(FProc) then FProc(path, ok);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TCefFastPdfPrintCallback.Destroy;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
FProc := nil;
|
2017-12-27 14:05:33 +01:00
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
// TCefCustomPDFPrintCallBack
|
2017-01-27 16:37:51 +01:00
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
constructor TCefCustomPDFPrintCallBack.Create(const aEvents : IChromiumEvents);
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := Pointer(aEvents);
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2017-12-27 14:05:33 +01:00
|
|
|
destructor TCefCustomPDFPrintCallBack.Destroy;
|
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
FEvents := nil;
|
2017-12-27 14:05:33 +01:00
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
end;
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
procedure TCefCustomPDFPrintCallBack.OnPdfPrintFinished(const path: ustring; aResultOK : Boolean);
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-02-03 17:52:48 +01:00
|
|
|
try
|
|
|
|
try
|
|
|
|
if (FEvents <> nil) then IChromiumEvents(FEvents).doPdfPrintFinished(aResultOK);
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCefCustomPDFPrintCallBack.OnPdfPrintFinished', e) then raise;
|
|
|
|
end;
|
|
|
|
finally
|
|
|
|
FEvents := nil;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|