Rev 199 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 199 | Rev 227 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | #include <QToolButton> |
24 | #include <QToolButton> |
25 | #include <QComboBox> |
25 | #include <QComboBox> |
Line 26... | Line 26... | ||
26 | 26 | ||
27 | #include "ui_wdg_Settings.h" |
27 | #include "ui_wdg_Settings.h" |
- | 28 | #include "../global.h" |
|
Line 28... | Line 29... | ||
28 | #include "../global.h" |
29 | #include "../Classes/cSettings.h" |
29 | 30 | ||
30 | class wdg_Settings : public QWidget, public Ui::wdg_Settings_UI |
31 | class wdg_Settings : public QWidget, public Ui::wdg_Settings_UI |
Line 35... | Line 36... | ||
35 | explicit wdg_Settings(QWidget *parent = 0); |
36 | explicit wdg_Settings(QWidget *parent = 0); |
36 | virtual ~wdg_Settings(); |
37 | virtual ~wdg_Settings(); |
Line 37... | Line 38... | ||
37 | 38 | ||
38 | void show_FCSettings(int Set, int FCSettings[MaxParameter]); |
39 | void show_FCSettings(int Set, int FCSettings[MaxParameter]); |
- | 40 | char *GetFCSettings(); |
|
Line 39... | Line 41... | ||
39 | char *GetFCSettings(); |
41 | void set_Config(cSettings *pConfig); |
40 | 42 | ||
41 | private: |
43 | private: |
- | 44 | int Settings[MaxParameter]; |
|
Line 42... | Line 45... | ||
42 | int Settings[MaxParameter]; |
45 | int ParameterSet[11][MaxParameter]; |
Line 43... | Line 46... | ||
43 | int ParameterSet[11][MaxParameter]; |
46 | cSettings *Config; |
44 | 47 |