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
|
{%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;
{ TQtPrinters }
procedure TQtPrinters.CreatePrintSettings;
var
i: Integer;
begin
{enumerate pages}
FPagesEnum.Clear;
FPagesEnum.Add('A4');
FPagesEnum.Add('B5');
FPagesEnum.Add('Letter');
FPagesEnum.Add('Legal');
FPagesEnum.Add('Executive');
for i := 0 to 3 do
FPagesEnum.Add('A'+IntToStr(i));
for i := 5 to 9 do
FPagesEnum.Add('A'+IntToStr(i));
FPagesEnum.Add('B0');
FPagesEnum.Add('B1');
FPagesEnum.Add('B10');
for i := 2 to 9 do
if i <> 5 then
FPagesEnum.Add('B'+IntToStr(i));
FPagesEnum.Add('C5E');
FPagesEnum.Add('Comm10E');
FPagesEnum.Add('DLE');
FPagesEnum.Add('Folio');
FPagesEnum.Add('Ledger');
FPagesEnum.Add('Tabloid');
FPagesEnum.Add('Custom');
{what to do with nPageSize
QPrinterNPageSize = 30 }
end;
function TQtPrinters.GetPaperSize(Const Str: String): QPrinterPageSize;
var
i: Integer;
begin
Result := QPrinterA4;
i := FPagesEnum.IndexOf(Str);
if i >= 0 then
Result := QPrinterPageSize(i);
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;
Prntr: QPrinterInfoH;
PrnList: TPtrIntArray;
PrnName: WideString;
begin
inherited DoEnumPrinters(Lst);
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);
PrnName := UTF8Encode(PrnName);
if QPrinterInfo_isDefault(Prntr) then
Lst.Insert(0, PrnName)
else
Lst.Add(PrnName);
end;
end;
finally
QPrinterInfo_destroy(PrnInfo);
end;
end;
procedure TQtPrinters.EnumQPapers(Lst: TStrings);
begin
Lst.Text := FPagesEnum.Text;
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;
constructor TQtPrinters.Create;
begin
inherited Create;
FPagesEnum := TStringList.Create;
CreatePrintSettings;
end;
procedure TQtPrinters.DoDestroy;
begin
FPagesEnum.Free;
QtDefaultPrinter.endDoc;
inherited DoDestroy;
end;
function TQtPrinters.Write(const Buffer; Count: Integer;
var Written: Integer): Boolean;
begin
Result := False;
CheckRawMode(True);
{$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 := 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);
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);
begin
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoEnumPapers()');
{$ENDIF}
EnumQPapers(Lst);
end;
function TQtPrinters.DoGetPaperName: string;
var
i: Integer;
begin
i := QtDefaultPrinter.PageSize;
Result := FPagesEnum[i];
{$IFDEF VERBOSE_QT_PRINTING}
DebugLn('TQtPrinters.DoGetPaperName() Result=',Result);
{$ENDIF}
end;
function TQtPrinters.DoGetDefaultPaperName: string;
begin
Result := FPagesEnum[0];
{$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 := FPagesEnum.IndexOf(AName);
if i >= 0 then
begin
QtDefaultPrinter.PageSize := i;
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 := FPagesEnum.IndexOf(AName);
if (i >= 0) and (i = QtDefaultPrinter.pageSize) then
begin
{When we set QPrinter into FullPage, rect is not same
on all platforms, this is fixed with qt-4.4}
APaperRC.WorkRect := QtDefaultPrinter.pageRect;
APaperRC.PhysicalRect := QtDefaultPrinter.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
QtDefaultPrinter.PrinterName := aName
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);
|