author | koda |
Thu, 07 Jan 2010 19:50:40 +0000 | |
changeset 2682 | d4c395f25db2 |
parent 2080 | 6d29370dc0dd |
child 2948 | 3f21a9dc93d0 |
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(); |
2080
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2009
diff
changeset
|
51 |
void resendSchemeData(); |
325 | 52 |
|
53 |
signals: |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
54 |
void paramChanged(const QString & param, const QStringList & value); |
1885 | 55 |
void goToSchemes(); |
2009 | 56 |
void goToWeapons(const QString & name); |
1531 | 57 |
|
58 |
private slots: |
|
59 |
void ammoChanged(int index); |
|
1874 | 60 |
void mapChanged(const QString &); |
1876 | 61 |
void templateFilterChanged(int); |
1874 | 62 |
void seedChanged(const QString &); |
63 |
void themeChanged(const QString &); |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1890
diff
changeset
|
64 |
void schemeChanged(int); |
2009 | 65 |
void jumpToWeapons(); |
184 | 66 |
|
67 |
private: |
|
1217 | 68 |
QGridLayout mainLayout; |
325 | 69 |
|
703 | 70 |
QString curNetAmmoName; |
697 | 71 |
QString curNetAmmo; |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
72 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
73 |
void setNetAmmo(const QString& name, const QString& ammo); |
1890 | 74 |
|
75 |
QVariant schemeData(int column) const; |
|
184 | 76 |
}; |
77 |
||
78 |
#endif // GAMECONFIGWIDGET_H |