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 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
|
{%MainUnit ../osprinters.pas}
{
Implementation for qtlcl printing
Author: Zeljan Rikalo
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
Uses InterfaceBase, LCLIntf;
{.$DEFINE UsePrinterSupportedPapers}
const
DEFAULT_PAPER_NAME = 'A4';
{ TQtPrinters }
function TQtPrinters.GetPaperSize(const Str: String): QtLCLPrinterPageSize;
var
i: Integer;
begin
i := IndexOfPaper(Str);
if i>=0 then
result := FPapers[i].PageSize
else
Result := {$IFDEF LCLQt5}QPagedPaintDeviceA4{$ELSE}QPrinterA4{$ENDIF};
end;
procedure TQtPrinters.BeginPage;
begin
if Assigned(Canvas) then
Canvas.Handle := HDC(QtDefaultPrinter.PrinterContext);
end;
procedure TQtPrinters.EndPage;
begin
QtDefaultPrinter.PrinterContext;
if Assigned(Canvas) then Canvas.Handle := 0;
QtDefaultPrinter.endDoc;
end;
procedure TQtPrinters.EnumQPrinters(Lst: TStrings);
var
i: Integer;
PrnInfo: QPrinterInfoH;
{$IFDEF LCLQt5}
AList: QStringListH;
{$ELSE}
Prntr: QPrinterInfoH;
PrnList: TPtrIntArray;
{$ENDIF}
PrnName: WideString;
begin
inherited DoEnumPrinters(Lst);
{$IFDEF LCLQt5}
Lst.Clear;
AList := QStringList_create();
try
QPrinterInfo_availablePrinterNames(AList);
for i := 0 to QStringList_size(AList) - 1 do
begin
QStringList_at(AList, @PrnName, I);
PrnInfo := QPrinterInfo_create();
try
QPrinterInfo_printerInfo(PrnInfo, @PrnName);
if QPrinterInfo_isDefault(PrnInfo) then
Lst.InsertObject(0, PrnName{%H-}, PrnInfo)
else
Lst.AddObject(PrnName{%H-}, PrnInfo);
finally
QPrinterInfo_destroy(PrnInfo);
end;
end;
finally
QStringList_destroy(AList);
end;
{$ELSE}
PrnInfo := QPrinterInfo_create();
try
Lst.Clear;
QPrinterInfo_availablePrinters(@PrnList);
for i := Low(PrnList) to High(PrnList) do
begin
Prntr := QPrinterInfoH(PrnList[i]);
if Assigned(Prntr) and not QPrinterInfo_isNull(Prntr) then
begin
QPrinterInfo_printerName(Prntr, @PrnName);
if QPrinterInfo_isDefault(Prntr) then
Lst.InsertObject(0, PrnName{%H-}, Prntr)
else
Lst.AddObject(PrnName{%H-}, Prntr);
end;
end;
finally
QPrinterInfo_destroy(PrnInfo);
end;
{$ENDIF}
end;
function TQtPrinters.GetColorMode: QPrinterColorMode;
begin
Result := QtDefaultPrinter.ColorMode;
end;
function TQtPrinters.GetFullPage: Boolean;
begin
Result := QtDefaultPrinter.FullPage;
end;
function TQtPrinters.GetPageOrder: QPrinterPageOrder;
begin
Result := QtDefaultPrinter.PageOrder;
end;
procedure TQtPrinters.SetColorMode(const AValue: QPrinterColorMode);
begin
QtDefaultPrinter.ColorMode := AValue;
end;
procedure TQtPrinters.SetFullPage(const AValue: Boolean);
begin
QtDefaultPrinter.FullPage := AValue;
end;
procedure TQtPrinters.SetPageOrder(const AValue: QPrinterPageOrder);
begin
QtDefaultPrinter.PageOrder := AValue;
end;
procedure TQtPrinters.CachePapers(OnlySupportedByPrinter: boolean);
const
{$IFDEF LCLQt5}
ArrPapers: array[0..QPagedPaintDeviceCustom] of string[12] = (
{$ELSE}
ArrPapers: array[QPrinterA4..QPrinterCustom] of string[12] = (
{$ENDIF}
'A4', 'B5', 'Letter', 'Legal', 'Executive',
'A0', 'A1', 'A2', 'A3', 'A5',
'A6', 'A7', 'A8', 'A9', 'B0',
'B1', 'B10', 'B2', 'B3', 'B4',
'B6', 'B7', 'B8', 'B9', 'C5E',
'Comm10E', 'DLE', 'Folio', 'Ledger', 'Tabloid',
'Custom');
var
PrinterList: TStringList;
Info: QPrinterInfoH;
Arr: TPtrIntArray;
{$IFDEF LCLQt5}
APrnName: WideString;
{$ENDIF}
CurrentPageSize, PageSize: QtLCLPrinterPageSize;
Index: Integer;
customPaperAdded: boolean;
procedure Add(PaperName: string; PgSize: QtLCLPrinterPageSize);
var
i: Integer;
begin
{$ifdef UsePrinterSupportedPapers}
// Apparently when Qt retrieve the papers from the printer source engine
// any printer supported paper that does not match a Qt known paper it is
// assigned a PageSize of 30 (Custom/Unknown).
//
// TODO: Find out if it is possible to get the dimensions of such custom
// papers, in such case assign to every custom paper a number and
// report them.
//
// In the mean time, in order to not present the user with multiple
// custom papers, just one is allowed.
{$endif}
if (pgSize=30) and customPaperAdded then
exit;
i := Length(FPapers);
SetLength(FPapers, i+1);
FPapers[i].PaperName := PaperName;
//CustomPageSize should be automatically set by setting different paper size
//than known paper size. Qt4 asserts when CustomPageSize is directly setted up.
{$IFDEF LCLQt}
if (pgSize > 30) then
{$ENDIF}
QtDefaultPrinter.PageSize := PgSize;
FPapers[i].PageRect := QtDefaultPrinter.PageRect;
FPapers[i].PaperRect := QtDefaultPrinter.PaperRect;
if PaperName=DEFAULT_PAPER_NAME then
FDefaultPaperIndex := i;
if pgSize=30 then
customPaperAdded := true;
//DebugLn('Cached: %20s PaperRect=%s PageRect=%s',[PaperName, dbgs(FPapers[i].PaperRect), dbgs(FPapers[i].PageRect)]);
end;
procedure AddAll;
var
i: Integer;
begin
{$IFDEF LCLQt5}
for i:=QPagedPaintDeviceA4 to QPagedPaintDeviceCustom do
Add(ArrPapers[i], i);
{$ELSE}
for i:=QPrinterA4 to QPrinterCustom do
Add(ArrPapers[i], i);
{$ENDIF}
end;
begin
customPaperAdded := false;
SetLength(FPapers, 0);
if not OnlySupportedByPrinter then
begin
AddAll;
exit;
end;
PrinterList := TStringList.Create;
try
CurrentPageSize := QtDefaultPrinter.PageSize;
EnumQPrinters(PrinterList);
Index := PrinterList.IndexOf(UTF8Encode(QtDefaultPrinter.PrinterName));
if Index>=0 then
begin
{$IFDEF LCLQt5}
Info := QPrinterInfo_create();
APrnName := PrinterList{%H-}[Index];
QPrinterInfo_printerInfo(Info, @APrnName);
{$ELSE}
Info := QPrinterInfoH(PrinterList.Objects[Index]);
{$ENDIF}
QPrinterInfo_supportedPaperSizes(Info, @Arr);
{$IFDEF LCLQt5}
QPrinterInfo_destroy(Info);
{$ENDIF}
for PageSize in Arr do
{$IFDEF LCLQt5}
for Index := QPagedPaintDeviceA4 to QPagedPaintDeviceCustom do
{$ELSE}
for Index := QPrinterA4 to QPrinterCustom do
{$ENDIF}
begin
if Index=PageSize then
Add(ArrPapers[Index], PageSize);
end;
end else
AddAll;
finally
QtDefaultPrinter.PageSize := CurrentPageSize;
PrinterList.Free;
end;
end;
function TQtPrinters.IndexOfPaper(const Paper: string; RetDefault: boolean): Integer;
var
i: Integer;
begin
result := -1;
for i:=0 to Length(FPapers)-1 do
begin
if FPapers[i].PaperName=Paper then begin
result := i;
exit;
end;
end;
if RetDefault and (Length(FPapers)>0) then
result := FDefaultPaperIndex;
end;
function TQtPrinters.IndexOfPageSize(const PageSize: QtLCLPrinterPageSize): Integer;
var
i: Integer;
begin
result := -1;
for i:=0 to Length(FPapers)-1 do begin
if FPapers[i].PageSize=PageSize then begin
result := i;
exit;
end;
end;
if Length(FPapers)>0 then
result := FDefaultPaperIndex;
end;
constructor TQtPrinters.Create;
begin
inherited Create;
CachePapers(false);
end;
procedure TQtPrinters.DoDestroy;
begin
FPapers := nil;
QtDefaultPrinter.endDoc;
inherited DoDestroy;
end;
function TQtPrinters.Write(const Buffer; Count: Integer; out Written: Integer): Boolean;
begin
Result := False;
CheckRawMode(True);
Written := 0;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.Write(): Raw mode is not yet supported');
{$ENDIF}
end;
procedure TQtPrinters.RawModeChanging;
begin
inherited RawModeChanging;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.RawModeChanging(): Raw mode is not yet supported');
{$ENDIF}
end;
procedure TQtPrinters.Validate;
var
P: String;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.Validate()');
{$ENDIF}
// if target paper is not supported, use the default
P := DoGetPaperName;
if PaperSize.SupportedPapers.IndexOf(P) = -1 then
DoSetPaperName(DoGetDefaultPaperName);
end;
function TQtPrinters.GetXDPI: Integer;
begin
Result := QtDefaultPrinter.Resolution;
{DO NOT INITIALIZE PRINTERCONTEXT HERE , ASK DIRECTLY QPAINTDEVICE !}
if (Printers.Count>0) and not RawMode then
Result := QPaintDevice_logicalDpiX(QtDefaultPrinter.Handle);
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.GetXDPI() Result=',IntToStr(Result));
{$ENDIF}
end;
function TQtPrinters.GetYDPI: Integer;
begin
Result := QtDefaultPrinter.Resolution;
{DO NOT INITIALIZE PRINTERCONTEXT HERE , ASK DIRECTLY QPAINTDEVICE !}
if (Printers.Count>0) and not RawMode then
Result := QPaintDevice_logicalDpiY(QtDefaultPrinter.Handle);
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.GetYDPI() Result=',IntToStr(Result));
{$ENDIF}
end;
procedure TQtPrinters.DoBeginDoc;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoBeginDoc()');
{$ENDIF}
QtDefaultPrinter.DocName := UTF8ToUTF16(Title);
BeginPage;
end;
procedure TQtPrinters.DoNewPage;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoNewPage()');
{$ENDIF}
QtDefaultPrinter.PrinterContext;
QtDefaultPrinter.NewPage;
end;
procedure TQtPrinters.DoEndDoc(aAborded: Boolean);
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoEndDoc()');
{$ENDIF}
inherited DoEndDoc(aAborded);
EndPage;
end;
procedure TQtPrinters.DoAbort;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoAbort()');
{$ENDIF}
inherited DoAbort;
if QtDefaultPrinter.Abort then
QtDefaultPrinter.endDoc;
end;
procedure TQtPrinters.DoEnumPrinters(Lst: TStrings);
var
Str: WideString;
i: Integer;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoEnumPrinters()');
{$ENDIF}
Str := QtDefaultPrinter.PrinterName;
EnumQPrinters(Lst);
i := Lst.IndexOf(Str{%H-});
if i > 0 then
Lst.Move(i, 0);
end;
procedure TQtPrinters.DoResetPrintersList;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoResetPrintersList()');
{$ENDIF}
inherited DoResetPrintersList;
end;
procedure TQtPrinters.DoEnumPapers(Lst: TStrings);
var
Paper: TPaperRec;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoEnumPapers()');
{$ENDIF}
Lst.Clear;
for Paper in FPapers do
Lst.Add(Paper.PaperName);
end;
function TQtPrinters.DoGetPaperName: string;
var
i: Integer;
begin
i := IndexOfPageSize(QtDefaultPrinter.PageSize);
if i>=0 then
result := FPapers[i].PaperName
else
result := DEFAULT_PAPER_NAME;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetPaperName() Result=',Result);
{$ENDIF}
end;
function TQtPrinters.DoGetDefaultPaperName: string;
begin
if Length(FPapers)>0 then
result := FPapers[FDefaultPaperIndex].PaperName
else
result := DEFAULT_PAPER_NAME;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetDefaultPaperName() Result=',Result);
{$ENDIF}
end;
procedure TQtPrinters.DoSetPaperName(aName: string);
var
O: TPrinterOrientation;
i: Integer;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoSetPaperName() AName=',AName);
{$ENDIF}
O := DoGetOrientation;
i := IndexOfPaper(aName, false);
if i >= 0 then
begin
QtDefaultPrinter.PageSize := FPapers[i].PageSize;
DoSetOrientation(O);
end else
raise Exception.Create('TQtPrinters: Paper '+AName+' not supported.');
end;
function TQtPrinters.DoGetPaperRect(aName: string; Var aPaperRc: TPaperRect
): Integer;
var
i: Integer;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetPaperRect() AName=', AName);
{$ENDIF}
Result := inherited DoGetPaperRect(aName,aPaperRc);
i := IndexOfPaper(aName);
if i >= 0 then
begin
{When we set QPrinter into FullPage, rect is not same
on all platforms, this is fixed with qt-4.4}
APaperRC.WorkRect := FPapers[i].PageRect;
APaperRC.PhysicalRect := FPapers[i].PaperRect;
Result := 1;
end;
end;
function TQtPrinters.DoSetPrinter(aName: string): Integer;
var
StrList: TStringList;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoSetPrinter() aName=', aName);
{$ENDIF}
StrList := TStringList.Create;
EnumQPrinters(StrList);
try
Result := StrList.IndexOf(AName);
if Result >= 0 then
begin
if not QtDefaultPrinter.PrinterActive then begin
QtDefaultPrinter.PrinterName := UTF8Decode(aName);
{$ifdef UsePrinterSupportedPapers}
CachePapers(true);
{$endif}
end
else
raise Exception.Create('TQtPrinters: Cannot change printer while printing active !');
end;
finally
StrList.Free;
end;
end;
function TQtPrinters.DoGetCopies: Integer;
begin
Result := inherited DoGetCopies;
Result := QtDefaultPrinter.NumCopies;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetCopies() Result=', IntToStr(Result));
{$ENDIF}
end;
procedure TQtPrinters.DoSetCopies(aValue: Integer);
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoSetCopies() AValue=', IntToStr(AValue));
{$ENDIF}
inherited DoSetCopies(AValue);
QtDefaultPrinter.NumCopies := AValue;
end;
function TQtPrinters.DoGetOrientation: TPrinterOrientation;
var
O: QPrinterOrientation;
begin
Result := inherited DoGetOrientation;
O := QtDefaultPrinter.Orientation;
case O of
QPrinterPortrait: Result := poPortrait;
QPrinterLandscape: Result := poLandscape;
end;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetOrientation() Result=', IntToStr(Ord(Result)));
{$ENDIF}
end;
procedure TQtPrinters.DoSetOrientation(aValue: TPrinterOrientation);
var
O: QPrinterOrientation;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoSetOrientation() AValue=', IntToStr(Ord(AValue)));
{$ENDIF}
inherited DoSetOrientation(aValue);
case AValue of
poPortrait: O := QPrinterPortrait;
poLandscape: O := QPrinterLandscape;
poReversePortrait: O := QPrinterPortrait;
poReverseLandscape: O := QPrinterLandscape;
end;
if QtDefaultPrinter.Orientation <> O then
QtDefaultPrinter.Orientation := O;
end;
function TQtPrinters.GetPrinterType: TPrinterType;
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.GetPrinterType() Result=', IntToStr(Ord(Result)));
{$ENDIF}
Result := inherited GetPrinterType;
{no type at this moment, QPrinterInfo (qt-4.4) should have this}
Result := ptLocal;
end;
function TQtPrinters.DoGetPrinterState: TPrinterState;
var
State: QPrinterPrinterState;
begin
Result := inherited DoGetPrinterState;
Result := psNoDefine;
State := QtDefaultPrinter.PrinterState;
case State of
QPrinterIdle: Result := psReady;
QPrinterActive: Result := psPrinting;
QPrinterAborted,
QPrinterError: Result := psStopped;
end;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetPrinterState() Result=', IntToStr(Ord(Result)));
{$ENDIF}
end;
function TQtPrinters.GetCanPrint: Boolean;
begin
Result := inherited GetCanPrint;
Result := (DoGetPrinterState <> psStopped);
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.GetCanPrint() Result=',BoolToStr(Result));
{$ENDIF}
end;
function TQtPrinters.GetCanRenderCopies: Boolean;
begin
Result := inherited GetCanRenderCopies;
Result := True;
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.GetCanRenderCopies() Result=',BoolToStr(Result));
{$ENDIF}
end;
initialization
Printer := TQtPrinters.Create;
finalization
FreeAndNil(Printer);
|