equal
deleted
inserted
replaced
20 #define GAMECONFIG_H |
20 #define GAMECONFIG_H |
21 |
21 |
22 #include <QSettings> |
22 #include <QSettings> |
23 #include <QStringList> |
23 #include <QStringList> |
24 #include <QRect> |
24 #include <QRect> |
|
25 #include <QEvent> |
25 |
26 |
26 class HWForm; |
27 class HWForm; |
27 class QSettings; |
28 class QSettings; |
28 |
29 |
29 class GameUIConfig : public QSettings |
30 class GameUIConfig : public QSettings |
67 signals: |
68 signals: |
68 void frontendFullscreen(bool value); |
69 void frontendFullscreen(bool value); |
69 |
70 |
70 public slots: |
71 public slots: |
71 void SaveOptions(); |
72 void SaveOptions(); |
72 |
|
73 private: |
73 private: |
74 bool netPasswordIsValid(); |
74 bool netPasswordIsValid(); |
|
75 bool eventFilter(QObject *object, QEvent *event); |
75 quint8 depth; |
76 quint8 depth; |
76 }; |
77 }; |
77 |
78 |
78 #endif |
79 #endif |