diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kviewshell/kprintDialogPage_pageoptions.h | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |