Go to
the documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef QABSTRACTPRINTDIALOG_H
00043 #define QABSTRACTPRINTDIALOG_H
00044
00045 #include <QtGui/qdialog.h>
00046
00047 QT_BEGIN_HEADER
00048
00049 QT_BEGIN_NAMESPACE
00050
00051 QT_MODULE(Gui)
00052
00053 #ifndef QT_NO_PRINTER
00054
00055 class QAbstractPrintDialogPrivate;
00056 class QPrinter;
00057
00058
00059 class Q_GUI_EXPORT QAbstractPrintDialog : public QDialog
00060 {
00061 Q_DECLARE_PRIVATE(QAbstractPrintDialog)
00062 Q_OBJECT
00063
00064 public:
00065 enum PrintRange {
00066 AllPages,
00067 Selection,
00068 PageRange,
00069 CurrentPage
00070 };
00071
00072 enum PrintDialogOption {
00073 None = 0x0000,
00074 PrintToFile = 0x0001,
00075 PrintSelection = 0x0002,
00076 PrintPageRange = 0x0004,
00077 PrintShowPageSize = 0x0008,
00078 PrintCollateCopies = 0x0010,
00079 DontUseSheet = 0x0020,
00080 PrintCurrentPage = 0x0040
00081 };
00082
00083 Q_DECLARE_FLAGS(PrintDialogOptions, PrintDialogOption)
00084
00085 #ifndef QT_NO_PRINTDIALOG
00086 explicit QAbstractPrintDialog(QPrinter *printer, QWidget *parent = 0);
00087 ~QAbstractPrintDialog();
00088
00089 virtual int exec() = 0;
00090
00091
00092 void addEnabledOption(PrintDialogOption option);
00093 void setEnabledOptions(PrintDialogOptions options);
00094 PrintDialogOptions enabledOptions() const;
00095 bool isOptionEnabled(PrintDialogOption option) const;
00096
00097 void setOptionTabs(const QList<QWidget*> &tabs);
00098
00099 void setPrintRange(PrintRange range);
00100 PrintRange printRange() const;
00101
00102 void setMinMax(int min, int max);
00103 int minPage() const;
00104 int maxPage() const;
00105
00106 void setFromTo(int fromPage, int toPage);
00107 int fromPage() const;
00108 int toPage() const;
00109
00110 QPrinter *printer() const;
00111
00112 protected:
00113 QAbstractPrintDialog(QAbstractPrintDialogPrivate &ptr, QPrinter *printer, QWidget *parent = 0);
00114
00115 private:
00116 Q_DISABLE_COPY(QAbstractPrintDialog)
00117
00118 #endif // QT_NO_PRINTDIALOG
00119 };
00120
00121 Q_DECLARE_OPERATORS_FOR_FLAGS(QAbstractPrintDialog::PrintDialogOptions)
00122
00123 #endif // QT_NO_PRINTER
00124
00125 QT_END_NAMESPACE
00126
00127 QT_END_HEADER
00128
00129 #endif // QABSTRACTPRINTDIALOG_H