{%MainUnit ../printersdlgs.pp} { TPageSetupDialog } function TPageSetupDialog.DoExecute: Boolean; var PgDlg: QPageSetupDialogH; Str: WideString; {$IFDEF HASX11} AWND: HWND; {$ENDIF} begin Result := False; if not Assigned(Printer) then Exit; if Printer.Printers.Count <= 0 then Exit; PgDlg := QPageSetupDialog_create(QtDefaultPrinter.Handle, nil); if Title <> '' then Str := UTF8Decode(Title) else Str := UTF8Decode(DefaultTitle); QWidget_setWindowTitle(PgDlg, @Str); try Result := QPageSetupDialog_exec(PgDlg) = Ord(QDialogAccepted); finally QPageSetupDialog_destroy(PgDlg); end; {$IFDEF HASX11} if (QtWidgetSet.WindowManagerName = 'xfwm4') and (QApplication_activeModalWidget() <> nil) then begin AWND := HwndFromWidgetH(QApplication_activeModalWidget()); if (AWND <> 0) and (X11GetActivewindow <> TQtWidget(AWND).Widget) then X11Raise(QWidget_winID(TQtWidget(AWND).Widget)); end; {$ENDIF} end; { TPrinterSetupDialog } function TPrinterSetupDialog.DoExecute: Boolean; var PgDlg: QPageSetupDialogH; Str: WideString; {$IFDEF HASX11} AWND: HWND; {$ENDIF} begin Result := False; if not Assigned(Printer) then Exit; if Printer.Printers.Count <= 0 then Exit; {There's no special dialog for printer setup under Qt, so we'll use QPageSetupDialog here.} PgDlg := QPageSetupDialog_create(QtDefaultPrinter.Handle, nil); if Title <> '' then Str := UTF8Decode(Title) else Str := UTF8Decode(DefaultTitle); QWidget_setWindowTitle(PgDlg, @Str); try Result := QPageSetupDialog_exec(PgDlg) = Ord(QDialogAccepted); finally QPageSetupDialog_destroy(PgDlg); end; {$IFDEF HASX11} if (QtWidgetSet.WindowManagerName = 'xfwm4') and (QApplication_activeModalWidget() <> nil) then begin AWND := HwndFromWidgetH(QApplication_activeModalWidget()); if (AWND <> 0) and (X11GetActivewindow <> TQtWidget(AWND).Widget) then X11Raise(QWidget_winID(TQtWidget(AWND).Widget)); end; {$ENDIF} end; { TPrintDialog } function TPrintDialog.DoExecute: Boolean; var QtPrnDlg: QPrintDialogH; PrnOptions: QAbstractPrintDialogPrintDialogOptions; Str: WideString; S: String; {$IFDEF HASX11} AWND: HWND; {$ENDIF} begin Result := False; if not Assigned(Printer) then Exit; if Printer.Printers.Count <= 0 then Exit; QtPrnDlg := QPrintDialog_create(QtDefaultPrinter.Handle, nil); try if Title <> '' then Str := UTF8Decode(Title) else Str := UTF8Decode(DefaultTitle); QWidget_setWindowTitle(QtPrnDlg, @Str); if (Width > 0) and (Height > 0) then QWidget_setBaseSize(QtPrnDlg, Width, Height); {By default, full page printing is disabled. In this case, the origin of the QPrinter's coordinate system coincides with the top-left corner of the printable area. If full page printing is enabled, the origin of the QPrinter's coordinate system coincides with the top-left corner of the paper itself. In this case, the device metrics will report the exact same dimensions as indicated by PageSize. It may not be possible to print on the entire physical page because of the printer's margins, so the application must account for the margins itself. We can set this property from QtLCL OsPrinters too. QtDefaultPrinter.FullPage := True; THIS IS FIXED IN Qt-4.4, so PageRect returns correct dimensions !} QAbstractPrintDialog_setMinMax(QtPrnDlg, MinPage, MaxPage); QAbstractPrintDialog_setFromTo(QtPrnDlg, FromPage, ToPage); PrnOptions := QAbstractPrintDialogPrintCollateCopies or QAbstractPrintDialogPrintShowPageSize; if (poPrintToFile in Options) then PrnOptions := PrnOptions or QAbstractPrintDialogPrintToFile; if (poSelection in Options) then PrnOptions := PrnOptions or QAbstractPrintDialogPrintSelection; if (poPageNums) in Options then PrnOptions := PrnOptions or QAbstractPrintDialogPrintPageRange; {this function does not have effect on Darwin} QAbstractPrintDialog_setEnabledOptions(QtPrnDlg, PrnOptions); QtDefaultPrinter.numCopies := Copies; if PrintToFile then QtDefaultPrinter.OutputFormat := QPrinterPdfFormat; Result := QPrintDialog_exec(QtPrnDlg) = Ord(QDialogAccepted); if Result then begin S := UTF16ToUTF8(QtDefaultPrinter.PrinterName); if Printer.Printers.IndexOf(S) <> -1 then Printer.SetPrinter(S); Collate := QtDefaultPrinter.Collate; MinPage := QAbstractPrintDialog_minPage(QtPrnDlg); MaxPage := QAbstractPrintDialog_maxPage(QtPrnDlg); FromPage := QtDefaultPrinter.fromPage; ToPage := QtDefaultPrinter.toPage; PrintToFile := QtDefaultPrinter.OutputFormat <> QPrinterNativeFormat; Copies := QtDefaultPrinter.numCopies; case QtDefaultPrinter.PrintRange of QPrinterAllPages: PrintRange := prAllPages; QPrinterSelection: PrintRange := prSelection; QPrinterPageRange: PrintRange := prPageNums; else PrintRange := prCurrentPage; end; end; finally QPrintDialog_destroy(QtPrnDlg); end; {$IFDEF HASX11} if (QtWidgetSet.WindowManagerName = 'xfwm4') and (QApplication_activeModalWidget() <> nil) then begin AWND := HwndFromWidgetH(QApplication_activeModalWidget()); if (AWND <> 0) and (X11GetActivewindow <> TQtWidget(AWND).Widget) then X11Raise(QWidget_winID(TQtWidget(AWND).Widget)); end; {$ENDIF} end;