-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.h
50 lines (39 loc) · 929 Bytes
/
options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef OPTIONS_H
#define OPTIONS_H
#include <QPixmap>
#include <QWidget>
#include <QPainter>
#include <QKeyEvent>
#include <QLineEdit>
class QCheckBox;
class QGridLayout;
class QGroupBox;
class QHBoxLayout;
class QLabel;
class QPushButton;
class QSpinBox;
class QVBoxLayout;
class Options : public QWidget
{
Q_OBJECT
public:
Options();
void on_show_hide();
QLineEdit* language;
QLineEdit* tempFilename;
QCheckBox* removeLinebreaks;
QCheckBox* rLBcheckForHyphens;
protected:
private slots:
//void on_show_hide(QSystemTrayIcon::ActivationReason reason);
private:
void createButtonsLayout();
//QLabel *screenshotLabel;
//QPushButton *newScreenshotButton;
//QPushButton *saveScreenshotButton;
//QPushButton *quitScreenshotButton;
//QPainter* SelectionScreen;
QVBoxLayout *mainLayout;
//QHBoxLayout *buttonsLayout;
};
#endif