-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.h
53 lines (39 loc) · 976 Bytes
/
settings.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
51
52
53
#ifndef SETTINGS_H
#define SETTINGS_H
#include <QDialog>
namespace Ui {
class Settings;
}
class Settings : public QDialog
{
Q_OBJECT
public:
explicit Settings(QWidget *parent = 0);
~Settings();
public slots:
void selectFolder();
void updateFolderSetting();
void updateCloseAfterStartSetting();
void updateMinimizeAfterStart();
void updateCaptureDebugSetting();
void updateMultiThreadedFullScan();
void updateWineBinary();
void updateWineArguments();
void updateWineEnvironment();
void restoreCloseAfterStart();
void restoreMimizeAfterStart();
void restoreCaptureDebug();
void restoreMultiThreadedFullScan();
void restoreFolder();
void restoreWineBinary();
void restoreWineArgs();
void restoreWineEnvironment();
void closeAfterStartChanged(bool state);
void minimizeToTrayAfterStartChanged(bool state);
void updateAllOptions();
void restoreOptions();
//void
private:
Ui::Settings *ui;
};
#endif // SETTINGS_H