QTfrontend/gameuiconfig.h
author unc0rr
Thu, 05 Oct 2006 16:33:18 +0000
changeset 183 57c2ef19f719
parent 127 ca70467bd0a8
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Relicense to GPL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     1
/*
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    12
 * GNU General Public License for more details.
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 127
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    17
 */
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    18
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    19
#ifndef GAMECONFIG_H
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    20
#define GAMECONFIG_H
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    21
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    22
#include <QObject>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    23
#include <QDir>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    24
#include <QStringList>
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    25
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    26
class HWForm;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    27
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    28
class GameUIConfig : public QObject
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    29
{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    30
	Q_OBJECT
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    31
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    32
public:
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    33
	GameUIConfig(HWForm * FormWidgets);
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    34
	QStringList GetTeamsList();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    35
	int vid_Resolution();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    36
	bool vid_Fullscreen();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    37
	bool isSoundEnabled();
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 97
diff changeset
    38
	QString GetRandomTheme();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    39
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    40
private slots:
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    41
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    42
public slots:
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    43
	void SaveOptions();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    44
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    45
private:
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    46
	HWForm * Form;
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 97
diff changeset
    47
	QStringList Themes;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    48
};
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    49
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    50
#endif