author | unc0rr |
Fri, 17 Apr 2009 17:02:24 +0000 | |
changeset 2000 | f9f47e681aad |
parent 1898 | f0ab0c77946d |
child 2009 | 91f461c218ab |
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; |
1890 | 43 |
QComboBox * GameSchemes; |
1875 | 44 |
QComboBox * WeaponsName; |
1802 | 45 |
HWMapContainer* pMapContainer; |
1887 | 46 |
QTableView * tv; |
696 | 47 |
|
320 | 48 |
public slots: |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
49 |
void setParam(const QString & param, const QStringList & value); |
1875 | 50 |
void fullNetConfig(); |
325 | 51 |
|
52 |
signals: |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
53 |
void paramChanged(const QString & param, const QStringList & value); |
1885 | 54 |
void goToSchemes(); |
1531 | 55 |
|
56 |
private slots: |
|
57 |
void ammoChanged(int index); |
|
1874 | 58 |
void mapChanged(const QString &); |
1876 | 59 |
void templateFilterChanged(int); |
1874 | 60 |
void seedChanged(const QString &); |
61 |
void themeChanged(const QString &); |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1890
diff
changeset
|
62 |
void schemeChanged(int); |
184 | 63 |
|
64 |
private: |
|
1217 | 65 |
QGridLayout mainLayout; |
325 | 66 |
|
703 | 67 |
QString curNetAmmoName; |
697 | 68 |
QString curNetAmmo; |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
69 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
70 |
void setNetAmmo(const QString& name, const QString& ammo); |
1890 | 71 |
|
72 |
QVariant schemeData(int column) const; |
|
184 | 73 |
}; |
74 |
||
75 |
#endif // GAMECONFIGWIDGET_H |