-
Notifications
You must be signed in to change notification settings - Fork 14
/
rpdllutilqt.pas
399 lines (372 loc) · 11 KB
/
rpdllutilqt.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
{*******************************************************}
{ }
{ Report Manager }
{ }
{ rpdllutilqt }
{ Exported functions for the Standarc C Libraary }
{ Functions dependent on X Server running }
{ }
{ Copyright (c) 1994-2012 Toni Martir }
{ toni@reportman.es
{ }
{ This file is under the MPL license }
{ If you enhace this file you must provide }
{ source code }
{ }
{ }
{*******************************************************}
unit rpdllutilqt;
{$I rpconf.inc}
interface
uses
{$IFDEF LINUX}
ShareExcept,
{$ENDIF}
SysUtils,Classes,rpreport,rpmdconsts,rppdfdriver,
{$IFDEF MSWINDOWS}
Graphics,rpgdidriver,
rpvpreview,rpvclreport,rppreviewcontrol,
{$ENDIF}
{$IFDEF LINUX}
QGraphics,rpqtdriver,
rppreview,rpclxreport,rppreviewcontrolclx,
{$ENDIF}
rpdllutil;
function rp_print(hreport:integer;Title:PAnsiChar;
showprogress,ShowPrintDialog:integer):integer;stdcall;
function rp_printw(hreport:integer;Title:PWideChar;
showprogress,ShowPrintDialog:integer):integer;stdcall;
function rp_preview(hreport:integer;Title:PAnsiChar):integer;stdcall;
function rp_previeww(hreport:integer;Title:PWideChar):integer;stdcall;
function rp_previewremote(hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar):integer;stdcall;
function rp_previewremotew(hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar):integer;stdcall;
function rp_printremote(hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar;showprogress,showprintdialog:integer):integer;stdcall;
function rp_printremotew(hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar;showprogress,showprintdialog:integer):integer;stdcall;
function rp_previewremote_report(hreport:integer;hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar):integer;stdcall;
function rp_previewremote_reportw(hreport:integer;hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar):integer;stdcall;
function rp_printremote_report(hreport:integer;hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar;showprogress,showprintdialog:integer):integer;stdcall;
function rp_printremote_reportw(hreport:integer;hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar;showprogress,showprintdialog:integer):integer;stdcall;
function rp_bitmap(hreport:integer;outputfilename:PAnsiChar;ask,mono,vertres,horzres:integer):integer;stdcall;
function rp_bitmapw(hreport:integer;outputfilename:PWideChar;ask,mono,vertres,horzres:integer):integer;stdcall;
implementation
function rp_bitmap(hreport:integer;outputfilename:PAnsiChar;ask,mono,vertres,horzres:integer):integer;stdcall;
begin
Result:=rp_bitmapw(hreport,PWidechar(WideString(outputfilename)),ask,mono,vertres,horzres);
end;
function rp_bitmapw(hreport:integer;outputfilename:PWideChar;ask,mono,vertres,horzres:integer):integer;stdcall;
var
report:TRpReport;
adriver:TRpPdfDriver;
doexport:boolean;
mon:boolean;
abitmap:TBitmap;
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
report:=FindReport(hreport);
report.TwoPass:=true;
adriver:=TRpPdfDriver.Create;
try
report.PrintAll(adriver);
doexport:=true;
mon:=mono=1;
if ask=1 then
doexport:=AskBitmapProps(horzres,vertres,mon);
if doexport then
begin
abitmap:=MetafileToBitmap(report.Metafile,ask<>0,mon,horzres,vertres);
try
if assigned(abitmap) then
abitmap.SaveToFile(StrPas(outputfilename));
finally
abitmap.free;
end;
end;
finally
adriver.free;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_print(hreport:integer;Title:PAnsiChar;
showprogress,ShowPrintDialog:integer):integer;
begin
Result:=rp_printw(hreport,PWidechar(WideString(Title)),showprogress,ShowPrintdialog);
end;
function rp_printw(hreport:integer;Title:PWideChar;
showprogress,ShowPrintDialog:integer):integer;
var
report:TRpReport;
allpages,collate:boolean;
frompage,topage,copies:integer;
ashowprogress:boolean;
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
ashowprogress:=true;
if showprogress=0 then
ashowprogress:=false;
report:=FindReport(hreport);
allpages:=true;
collate:=report.CollateCopies;
frompage:=1; topage:=999999;
copies:=report.Copies;
if ShowPrintDialog<>0 then
begin
if DoShowPrintDialog(allpages,frompage,topage,copies,collate) then
begin
if Not PrintReport(report,Title,aShowprogress,allpages,frompage,
topage,copies,collate) then
Result:=0;
end
else
Result:=0;
end
else
begin
if not PrintReport(report,Title,aShowprogress,true,1,
9999999,report.copies,report.collatecopies) then
Result:=0;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_preview(hreport:integer;Title:PAnsiChar):integer;
begin
Result:=rp_previeww(hreport,PWidechar(WideString(Title)));
end;
function rp_previeww(hreport:integer;Title:PWideChar):integer;
var
report:TRpReport;
{$IFDEF MSWINDOWS}
prcontrol:TRpPreviewControl;
{$ENDIF}
{$IFDEF LINUX}
prcontrol:TRpPreviewControlCLX;
{$ENDIF}
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
report:=FindReport(hreport);
{$IFDEF MSWINDOWS}
prcontrol:=TRppreviewControl.Create(nil);
try
prcontrol.Report:=report;
ShowPreview(prcontrol,Title);
finally
prcontrol.free;
end;
{$ENDIF}
{$IFDEF LINUX}
prcontrol:=TRppreviewControlCLX.Create(nil);
try
prcontrol.Report:=report;
ShowPreview(prcontrol,Title,True);
finally
prcontrol.free;
end;
{$ENDIF}
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_previewremote_report(hreport:integer;hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar):integer;stdcall;
begin
Result:=rp_previewremote_reportw(hreport,PWidechar(WideString(hostname)),port,PWidechar(WideString(user)),PWidechar(WideString(password)),PWidechar(WideString(aliasname)),PWidechar(WideString(reportname)),PWidechar(WideString(title)));
end;
function rp_previewremote_reportw(hreport:integer;hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar):integer;stdcall;
var
{$IFDEF MSWINDOWS}
rep:TVCLReport;
{$ENDIF}
{$IFDEF LINUX}
rep:TCLXReport;
{$ENDIF}
memstream:TMemoryStream;
report:TRpReport;
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
{$IFDEF MSWINDOWS}
rep:=TVCLReport.Create(nil);
{$ENDIF}
{$IFDEF LINUX}
rep:=TCLXReport.Create(nil);
{$ENDIF}
try
rep.Preview:=true;
rep.Title:=title;
report:=FindReport(hreport);
memstream:=TMemoryStream.Create;
try
report.SaveToStream(memstream);
memstream.Seek(0,soFromBeginning);
rep.LoadFromStream(memstream);
finally
memstream.free;
end;
rep.ExecuteRemote(hostname,port,user,password,aliasname,reportname);
finally
rep.free;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_printremote_report(hreport:integer;hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar;showprogress,showprintdialog:integer):integer;stdcall;
begin
result:=rp_printremote_reportw(hreport,PWidechar(WideString(hostname)),port,PWidechar(WideString(user)),PWidechar(WideString(password)),PWidechar(WideString(aliasname)),PWidechar(WideString(reportname)),PWidechar(WideString(title)),showprogress,showprintdialog);
end;
function rp_printremote_reportw(hreport:integer;hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar;showprogress,showprintdialog:integer):integer;stdcall;
var
{$IFDEF MSWINDOWS}
rep:TVCLReport;
{$ENDIF}
{$IFDEF LINUX}
rep:TCLXReport;
{$ENDIF}
memstream:TMemoryStream;
report:TRpReport;
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
{$IFDEF MSWINDOWS}
rep:=TVCLReport.Create(nil);
{$ENDIF}
{$IFDEF LINUX}
rep:=TCLXReport.Create(nil);
{$ENDIF}
try
rep.Preview:=false;
rep.Title:=title;
rep.ShowPrintDialog:=(showprintdialog<>0);
rep.ShowProgress:=(showprogress<>0);
report:=FindReport(hreport);
memstream:=TMemoryStream.Create;
try
report.SaveToStream(memstream);
memstream.Seek(0,soFromBeginning);
rep.LoadFromStream(memstream);
finally
memstream.free;
end;
rep.ExecuteRemote(hostname,port,user,password,aliasname,reportname);
finally
rep.free;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_previewremote(hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar):integer;stdcall;
begin
result:=rp_previewremotew(PWidechar(WideString(hostname)),port,PWidechar(WideString(user)),PWidechar(WideString(password)),PWidechar(WideString(aliasname)),PWidechar(WideString(reportname)),PWidechar(WideString(title)));
end;
function rp_previewremotew(hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar):integer;stdcall;
var
{$IFDEF MSWINDOWS}
rep:TVCLReport;
{$ENDIF}
{$IFDEF LINUX}
rep:TCLXReport;
{$ENDIF}
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
{$IFDEF MSWINDOWS}
rep:=TVCLReport.Create(nil);
{$ENDIF}
{$IFDEF LINUX}
rep:=TCLXReport.Create(nil);
{$ENDIF}
try
rep.Preview:=true;
rep.Title:=title;
rep.ExecuteRemote(hostname,port,user,password,aliasname,reportname);
finally
rep.free;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
function rp_printremote(hostname:PAnsiChar;port:integer;user,password,aliasname,reportname,title:PAnsiChar;showprogress,showprintdialog:integer):integer;stdcall;
begin
Result:=rp_printremotew(PWidechar(WideString(hostname)),port,PWidechar(WideString(user)),PWidechar(WideString(password)),PWidechar(WideString(aliasname)),PWidechar(WideString(reportname)),PWidechar(WideString(title)),showprogress,showprintdialog);
end;
function rp_printremotew(hostname:PWideChar;port:integer;user,password,aliasname,reportname,title:PWideChar;
showprogress,showprintdialog:integer):integer;stdcall;
var
{$IFDEF MSWINDOWS}
rep:TVCLReport;
{$ENDIF}
{$IFDEF LINUX}
rep:TCLXReport;
{$ENDIF}
begin
rplibdoinit;
rplasterror:='';
Result:=1;
try
{$IFDEF MSWINDOWS}
rep:=TVCLReport.Create(nil);
{$ENDIF}
{$IFDEF LINUX}
rep:=TCLXReport.Create(nil);
{$ENDIF}
try
rep.Preview:=false;
rep.Title:=title;
rep.ShowPrintDialog:=(showprintdialog<>0);
rep.ShowProgress:=(showprogress<>0);
rep.ExecuteRemote(hostname,port,user,password,aliasname,reportname);
finally
rep.free;
end;
except
on E:Exception do
begin
rplasterror:=E.Message;
Result:=0;
end;
end;
end;
end.