author | unc0rr |
Fri, 12 Nov 2010 19:40:35 +0300 | |
branch | 0.9.12 |
changeset 2559 | 711db3cb2aed |
parent 2443 | fececcbc2189 |
child 2747 | 7889a3a9724f |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef GAMECONFIG_H |
|
20 |
#define GAMECONFIG_H |
|
21 |
||
301 | 22 |
#include <QSettings> |
184 | 23 |
#include <QStringList> |
555 | 24 |
#include <QRect> |
184 | 25 |
|
26 |
class HWForm; |
|
301 | 27 |
class QSettings; |
184 | 28 |
|
301 | 29 |
class GameUIConfig : public QSettings |
184 | 30 |
{ |
31 |
Q_OBJECT |
|
32 |
||
33 |
public: |
|
301 | 34 |
GameUIConfig(HWForm * FormWidgets, const QString & fileName); |
184 | 35 |
QStringList GetTeamsList(); |
555 | 36 |
QRect vid_Resolution(); |
184 | 37 |
bool vid_Fullscreen(); |
38 |
bool isSoundEnabled(); |
|
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2401
diff
changeset
|
39 |
#ifdef _WIN32 |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2377
diff
changeset
|
40 |
bool isSoundHardware(); |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2401
diff
changeset
|
41 |
#endif |
1129 | 42 |
bool isMusicEnabled(); |
297 | 43 |
bool isShowFPSEnabled(); |
529 | 44 |
bool isAltDamageEnabled(); |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1165
diff
changeset
|
45 |
bool appendDateTimeToRecordName(); |
1777 | 46 |
quint8 volume(); |
297 | 47 |
quint8 timerInterval(); |
603 | 48 |
quint8 bitDepth(); |
949 | 49 |
QString netNick(); |
1812 | 50 |
bool isReducedQuality() const; |
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
51 |
bool isFrontendEffects() const; |
1162 | 52 |
bool isFrontendFullscreen() const; |
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
53 |
void resizeToConfigValues(); |
2377 | 54 |
|
2401 | 55 |
#ifdef __APPLE__ |
56 |
#ifdef SPARKLE_ENABLED |
|
57 |
bool isAutoUpdateEnabled(); |
|
58 |
#endif |
|
2261 | 59 |
#endif |
2377 | 60 |
|
1162 | 61 |
signals: |
62 |
void frontendFullscreen(bool value); |
|
184 | 63 |
|
64 |
public slots: |
|
65 |
void SaveOptions(); |
|
66 |
||
67 |
private: |
|
68 |
HWForm * Form; |
|
603 | 69 |
quint8 depth; |
184 | 70 |
}; |
71 |
||
72 |
#endif |