equal
deleted
inserted
replaced
29 class GameUIConfig : public QSettings |
29 class GameUIConfig : public QSettings |
30 { |
30 { |
31 Q_OBJECT |
31 Q_OBJECT |
32 |
32 |
33 public: |
33 public: |
|
34 HWForm * Form; |
34 GameUIConfig(HWForm * FormWidgets, const QString & fileName); |
35 GameUIConfig(HWForm * FormWidgets, const QString & fileName); |
35 QStringList GetTeamsList(); |
36 QStringList GetTeamsList(); |
36 QRect vid_Resolution(); |
37 QRect vid_Resolution(); |
37 bool vid_Fullscreen(); |
38 bool vid_Fullscreen(); |
38 quint32 translateQuality(); |
39 quint32 translateQuality(); |
65 |
66 |
66 public slots: |
67 public slots: |
67 void SaveOptions(); |
68 void SaveOptions(); |
68 |
69 |
69 private: |
70 private: |
70 HWForm * Form; |
|
71 quint8 depth; |
71 quint8 depth; |
72 }; |
72 }; |
73 |
73 |
74 #endif |
74 #endif |