blob: 8d8fb460565fd38ccfb1c62b7bbccb23038f1dd8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|