author | sheepluva |
Wed, 28 Sep 2011 19:27:56 +0200 | |
changeset 6060 | fdfc01419815 |
parent 6042 | QTfrontend/pageeditteam.h@8b5345758f62 |
child 6165 | 6fe3e922246e |
permissions | -rw-r--r-- |
5204 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 PAGE_EDITTEAM_H |
|
20 |
#define PAGE_EDITTEAM_H |
|
21 |
||
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
22 |
#include "AbstractPage.h" |
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
23 |
#include "binds.h" |
6024 | 24 |
#include "hwconsts.h" |
25 |
#include "namegen.h" |
|
5205
78138ae93820
some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents:
5204
diff
changeset
|
26 |
#include "SDLs.h" |
5204 | 27 |
|
6024 | 28 |
#include "team.h" |
29 |
||
5204 | 30 |
class SquareLabel; |
31 |
||
32 |
class PageEditTeam : public AbstractPage |
|
33 |
{ |
|
34 |
Q_OBJECT |
|
35 |
||
36 |
public: |
|
37 |
PageEditTeam(QWidget* parent, SDLInteraction * sdli); |
|
6024 | 38 |
|
39 |
void createTeam(const QString & name, const QString & playerHash); |
|
40 |
void editTeam(const QString & name, const QString & playerHash); |
|
41 |
void deleteTeam(const QString & name); |
|
42 |
||
43 |
signals: |
|
44 |
void teamEdited(); |
|
45 |
||
46 |
public slots: |
|
47 |
void CBFort_activated(const QString & gravename); |
|
48 |
||
49 |
private: |
|
5907
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5205
diff
changeset
|
50 |
QSignalMapper* signalMapper1; |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5205
diff
changeset
|
51 |
QSignalMapper* signalMapper2; |
5204 | 52 |
QGroupBox *GBoxHedgehogs; |
53 |
QGroupBox *GBoxTeam; |
|
54 |
QGroupBox *GBoxFort; |
|
55 |
QComboBox *CBFort; |
|
56 |
SquareLabel *FortPreview; |
|
57 |
QComboBox *CBGrave; |
|
58 |
QComboBox *CBFlag; |
|
59 |
QComboBox *CBTeamLvl; |
|
60 |
QComboBox *CBVoicepack; |
|
61 |
QGroupBox *GBoxBinds; |
|
62 |
QToolBox *BindsBox; |
|
63 |
QLineEdit * TeamNameEdit; |
|
6024 | 64 |
QLineEdit * HHNameEdit[HEDGEHOGS_PER_TEAM]; |
65 |
QComboBox * HHHats[HEDGEHOGS_PER_TEAM]; |
|
5204 | 66 |
QComboBox * CBBind[BINDS_NUMBER]; |
6024 | 67 |
SDLInteraction * mySdli; |
68 |
HWTeam data(); |
|
69 |
QString m_playerHash; |
|
5204 | 70 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
71 |
QLayout * bodyLayoutDefinition(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
72 |
QLayout * footerLayoutDefinition(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
73 |
void connectSignals(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
74 |
|
6024 | 75 |
void loadTeam(const HWTeam & team); |
5204 | 76 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
77 |
// page 1 |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
78 |
QPushButton * btnRandomHogName[HEDGEHOGS_PER_TEAM]; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
79 |
QPushButton * btnRandomTeam; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
80 |
QPushButton * btnTestSound; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
81 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
82 |
// footer |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
83 |
QPushButton * btnSave; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
84 |
|
5204 | 85 |
private slots: |
6024 | 86 |
void saveTeam(); |
87 |
void setRandomNames(); |
|
88 |
void setRandomName(int hh_index); |
|
5204 | 89 |
void testSound(); |
5907
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5205
diff
changeset
|
90 |
void fixHHname(int idx); |
5204 | 91 |
}; |
92 |
||
93 |
#endif |
|
94 |