author | nemo |
Sun, 21 Feb 2010 19:03:46 +0000 | |
changeset 2836 | 36b1766ad85c |
parent 2776 | 9572aae13d49 |
child 2898 | c53636f556f8 |
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(); |
|
2776 | 39 |
bool isFrontendSoundEnabled(); |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2401
diff
changeset
|
40 |
#ifdef _WIN32 |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2377
diff
changeset
|
41 |
bool isSoundHardware(); |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2401
diff
changeset
|
42 |
#endif |
1129 | 43 |
bool isMusicEnabled(); |
2776 | 44 |
bool isFrontendMusicEnabled(); |
297 | 45 |
bool isShowFPSEnabled(); |
529 | 46 |
bool isAltDamageEnabled(); |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1165
diff
changeset
|
47 |
bool appendDateTimeToRecordName(); |
1777 | 48 |
quint8 volume(); |
297 | 49 |
quint8 timerInterval(); |
603 | 50 |
quint8 bitDepth(); |
949 | 51 |
QString netNick(); |
1812 | 52 |
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
|
53 |
bool isFrontendEffects() const; |
1162 | 54 |
bool isFrontendFullscreen() const; |
2747 | 55 |
bool isWeaponTooltip() const; |
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
56 |
void resizeToConfigValues(); |
2377 | 57 |
|
2401 | 58 |
#ifdef __APPLE__ |
59 |
#ifdef SPARKLE_ENABLED |
|
60 |
bool isAutoUpdateEnabled(); |
|
61 |
#endif |
|
2261 | 62 |
#endif |
2377 | 63 |
|
1162 | 64 |
signals: |
65 |
void frontendFullscreen(bool value); |
|
184 | 66 |
|
67 |
public slots: |
|
68 |
void SaveOptions(); |
|
69 |
||
70 |
private: |
|
71 |
HWForm * Form; |
|
603 | 72 |
quint8 depth; |
184 | 73 |
}; |
74 |
||
75 |
#endif |