kchart
kchartPrinterDlg.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef kchartprintdlg_included
00024 #define kchartprintdlg_included
00025
00026 #include <kdeprint/kprintdialogpage.h>
00027 #include <knuminput.h>
00028 #include <qlabel.h>
00029 namespace KChart
00030 {
00031
00032 class KChartPrinterDlg : public KPrintDialogPage
00033 {
00034 Q_OBJECT
00035 public:
00037 KChartPrinterDlg( QWidget *parent = 0, const char *name = 0 );
00038
00040 void getOptions( QMap<QString, QString>& opts, bool include_def = false );
00042 void setOptions( const QMap<QString, QString>& opts );
00044 bool isValid( const QString& msg );
00046
00047 private:
00048 KIntNumInput *txtSizex;
00049 KIntNumInput *txtSizey;
00050 };
00051 }
00052 #endif //kchartprinterdlg_included
|