equal
deleted
inserted
replaced
21 |
21 |
22 #include "AbstractPage.h" |
22 #include "AbstractPage.h" |
23 |
23 |
24 class FPSEdit; |
24 class FPSEdit; |
25 class IconedGroupBox; |
25 class IconedGroupBox; |
|
26 class QSignalMapper; |
26 |
27 |
27 class PageOptions : public AbstractPage |
28 class PageOptions : public AbstractPage |
28 { |
29 { |
29 Q_OBJECT |
30 Q_OBJECT |
30 |
31 |
89 int previousQuality; |
90 int previousQuality; |
90 QLabel *LblNoEditTeam; |
91 QLabel *LblNoEditTeam; |
91 QPushButton *BtnNewTeam; |
92 QPushButton *BtnNewTeam; |
92 QPushButton *BtnEditTeam; |
93 QPushButton *BtnEditTeam; |
93 QPushButton *BtnDeleteTeam; |
94 QPushButton *BtnDeleteTeam; |
|
95 QList<QPushButton *> m_colorButtons; |
94 |
96 |
95 private slots: |
97 private slots: |
96 void forceFullscreen(int index); |
98 void forceFullscreen(int index); |
97 void setFullscreen(int state); |
99 void setFullscreen(int state); |
98 void setResolution(int state); |
100 void setResolution(int state); |
99 void setQuality(int value); |
101 void setQuality(int value); |
100 void trimNetNick(); |
102 void trimNetNick(); |
101 void requestEditSelectedTeam(); |
103 void requestEditSelectedTeam(); |
102 void requestDeleteSelectedTeam(); |
104 void requestDeleteSelectedTeam(); |
103 void savePwdChanged(int state); |
105 void savePwdChanged(int state); |
|
106 void colorButtonClicked(int i); |
|
107 void onColorModelDataChanged(const QModelIndex & topLeft, const QModelIndex & bottomRight); |
104 }; |
108 }; |
105 |
109 |
106 #endif |
110 #endif |
107 |
111 |