author | unc0rr |
Thu, 12 Mar 2009 20:19:33 +0000 | |
changeset 1887 | d68939b3f7f0 |
parent 1885 | 75489216b5b0 |
child 1890 | de5cfe3beb22 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1876
diff
changeset
|
3 |
* Copyright (c) 2006, 2007, 2009 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 GAMECONFIGWIDGET_H |
|
20 |
#define GAMECONFIGWIDGET_H |
|
21 |
||
22 |
#include <QWidget> |
|
318 | 23 |
#include <QStringList> |
1217 | 24 |
#include <QGroupBox> |
1783 | 25 |
#include <QSpinBox> |
184 | 26 |
|
27 |
#include "mapContainer.h" |
|
28 |
||
311 | 29 |
class QCheckBox; |
30 |
class QVBoxLayout; |
|
31 |
class QLabel; |
|
1887 | 32 |
class QTableView; |
311 | 33 |
|
1217 | 34 |
class GameCFGWidget : public QGroupBox |
184 | 35 |
{ |
36 |
Q_OBJECT |
|
37 |
||
38 |
public: |
|
349 | 39 |
GameCFGWidget(QWidget* parent, bool externalControl=false); |
318 | 40 |
quint32 getGameFlags() const; |
312 | 41 |
quint32 getInitHealth() const; |
318 | 42 |
QStringList getFullConfig() const; |
1875 | 43 |
QComboBox * WeaponsName; |
1802 | 44 |
HWMapContainer* pMapContainer; |
1887 | 45 |
QTableView * tv; |
696 | 46 |
|
320 | 47 |
public slots: |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
48 |
void setParam(const QString & param, const QStringList & value); |
1875 | 49 |
void fullNetConfig(); |
325 | 50 |
|
51 |
signals: |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
52 |
void paramChanged(const QString & param, const QStringList & value); |
1885 | 53 |
void goToSchemes(); |
1531 | 54 |
|
55 |
private slots: |
|
56 |
void ammoChanged(int index); |
|
1874 | 57 |
void mapChanged(const QString &); |
1876 | 58 |
void templateFilterChanged(int); |
1874 | 59 |
void seedChanged(const QString &); |
60 |
void themeChanged(const QString &); |
|
184 | 61 |
|
62 |
private: |
|
1217 | 63 |
QGridLayout mainLayout; |
325 | 64 |
|
703 | 65 |
QString curNetAmmoName; |
697 | 66 |
QString curNetAmmo; |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
67 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
68 |
void setNetAmmo(const QString& name, const QString& ammo); |
184 | 69 |
}; |
70 |
||
71 |
#endif // GAMECONFIGWIDGET_H |