author | sheepluva |
Sat, 22 Oct 2011 10:59:06 +0200 | |
changeset 6183 | 46895724fd7f |
parent 6165 | 6fe3e922246e |
child 6196 | c16e84558f71 |
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" |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
25 |
#include "HWDataManager.h" |
6024 | 26 |
#include "namegen.h" |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
27 |
#include "SDLInteraction.h" |
5204 | 28 |
|
6024 | 29 |
#include "team.h" |
30 |
||
5204 | 31 |
class SquareLabel; |
32 |
||
33 |
class PageEditTeam : public AbstractPage |
|
34 |
{ |
|
35 |
Q_OBJECT |
|
36 |
||
37 |
public: |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
38 |
PageEditTeam(QWidget* parent); |
6024 | 39 |
|
40 |
void createTeam(const QString & name, const QString & playerHash); |
|
41 |
void editTeam(const QString & name, const QString & playerHash); |
|
42 |
void deleteTeam(const QString & name); |
|
43 |
||
44 |
signals: |
|
45 |
void teamEdited(); |
|
46 |
||
47 |
public slots: |
|
48 |
void CBFort_activated(const QString & gravename); |
|
49 |
||
50 |
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
|
51 |
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
|
52 |
QSignalMapper* signalMapper2; |
5204 | 53 |
QGroupBox *GBoxHedgehogs; |
54 |
QGroupBox *GBoxTeam; |
|
55 |
QGroupBox *GBoxFort; |
|
56 |
QComboBox *CBFort; |
|
57 |
SquareLabel *FortPreview; |
|
58 |
QComboBox *CBGrave; |
|
59 |
QComboBox *CBFlag; |
|
60 |
QComboBox *CBTeamLvl; |
|
61 |
QComboBox *CBVoicepack; |
|
62 |
QGroupBox *GBoxBinds; |
|
63 |
QToolBox *BindsBox; |
|
64 |
QLineEdit * TeamNameEdit; |
|
6024 | 65 |
QLineEdit * HHNameEdit[HEDGEHOGS_PER_TEAM]; |
66 |
QComboBox * HHHats[HEDGEHOGS_PER_TEAM]; |
|
5204 | 67 |
QComboBox * CBBind[BINDS_NUMBER]; |
6024 | 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(); |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
88 |
|
6024 | 89 |
void setRandomName(int hh_index); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
90 |
|
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
91 |
/// Plays a random voice sound of the currently edited team. |
5204 | 92 |
void testSound(); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
93 |
|
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
|
94 |
void fixHHname(int idx); |
5204 | 95 |
}; |
96 |
||
97 |
#endif |
|
98 |