diff options
Diffstat (limited to 'kviewshell/kprintDialogPage_pageoptions.h')
-rw-r--r-- | kviewshell/kprintDialogPage_pageoptions.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/kviewshell/kprintDialogPage_pageoptions.h b/kviewshell/kprintDialogPage_pageoptions.h new file mode 100644 index 00000000..0c274248 --- /dev/null +++ b/kviewshell/kprintDialogPage_pageoptions.h @@ -0,0 +1,43 @@ +// -*- C++ -*- +// KPrintDialogPage_PageOptions.h +// +// Part of KVIEWSHELL - A framework for multipage text/gfx viewers +// +// (C) 2005 Stefan Kebekus +// Distributed under the GPL + +// Add header files alphabetically + +#ifndef KPRINTDIALOGPAGE_PAGEOPTIONS_H +#define KPRINTDIALOGPAGE_PAGEOPTIONS_H + +#include <kdeprint/kprintdialogpage.h> + +class QCheckBox; +class QVBoxLayout; + + +// This is a fairly standard KPrintDialogPage that allows the user to +// chose page size & placement options: center page on paper, shrink +// oversized pages, and expand small pages + +class KPrintDialogPage_PageOptions : public KPrintDialogPage +{ + public: + KPrintDialogPage_PageOptions( QWidget *parent = 0, const char *name = 0 ); + + void getOptions( QMap<QString,QString>& opts, bool incldef = false ); + void setOptions( const QMap<QString,QString>& opts ); + bool isValid( QString& msg ); + + QCheckBox* checkBox_center; + QCheckBox* checkBox_rotate; + QCheckBox* checkBox_shrink; + QCheckBox* checkBox_expand; + + private: + QVBoxLayout* kprintDialogPage_pageoptions_baseLayout; +}; + + +#endif // KPRINTDIALOGPAGE_PAGEOPTIONS_H |