-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettingstabpageform.h
More file actions
48 lines (34 loc) · 1 KB
/
Copy pathsettingstabpageform.h
File metadata and controls
48 lines (34 loc) · 1 KB
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
#ifndef SETTINGSTABPAGEFORM_H
#define SETTINGSTABPAGEFORM_H
#include <QWidget>
#include <optioncollection.h>
#include <optionkeys.h>
namespace Ui {
class SettingsTabPageForm;
}
class SettingsTabPageForm : public QWidget
{
Q_OBJECT
public:
explicit SettingsTabPageForm(QWidget *parent = 0);
~SettingsTabPageForm();
void Options(OptionCollection* inOptions)
{
mOptions = inOptions;
LoadValues();
}
signals:
void torchlight2SharedStashFileChanged(QString fileLocation);
void infiniteStashFolderChanged(QString folderLocation);
void maxItemsPerStashTabChanged(qint32 maxItemsPerStashTab);
public slots:
private slots:
void OnSetTorchlight2SharedStashFileClicked();
void OnSetInfiniteStashFolderClicked();
void OnMaxItemsPerStashTabValueChanged(qint32 newValue);
private:
Ui::SettingsTabPageForm *ui;
OptionCollection* mOptions;
void LoadValues();
};
#endif // SETTINGSTABPAGEFORM_H