diff options
Diffstat (limited to 'qt-ui/printoptions.h')
-rw-r--r-- | qt-ui/printoptions.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/qt-ui/printoptions.h b/qt-ui/printoptions.h new file mode 100644 index 000000000..8d8fb4605 --- /dev/null +++ b/qt-ui/printoptions.h @@ -0,0 +1,23 @@ +#ifndef PRINTOPTIONS_H +#define PRINTOPTIONS_H + +#include <QWidget> +#include "../display.h" + +namespace Ui { + class PrintOptions; +}; + +// should be based on a custom QPrintDialog class +class PrintOptions : public QWidget { +Q_OBJECT + +public: + static PrintOptions *instance(); + +private: + explicit PrintOptions(QWidget *parent = 0, Qt::WindowFlags f = 0); + Ui::PrintOptions *ui; +}; + +#endif |