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 |
|
22 #include "AbstractPage.h" |
|
23 #include "binds.h" |
|
24 #include "SDLs.h" |
|
25 |
|
26 class SquareLabel; |
|
27 |
|
28 class PageEditTeam : public AbstractPage |
|
29 { |
|
30 Q_OBJECT |
|
31 |
|
32 public: |
|
33 PageEditTeam(QWidget* parent, SDLInteraction * sdli); |
|
34 QSignalMapper* signalMapper1; |
|
35 QSignalMapper* signalMapper2; |
|
36 QGroupBox *GBoxHedgehogs; |
|
37 QGroupBox *GBoxTeam; |
|
38 QGroupBox *GBoxFort; |
|
39 QComboBox *CBFort; |
|
40 SquareLabel *FortPreview; |
|
41 QComboBox *CBGrave; |
|
42 QComboBox *CBFlag; |
|
43 QComboBox *CBTeamLvl; |
|
44 QComboBox *CBVoicepack; |
|
45 QGroupBox *GBoxBinds; |
|
46 QToolBox *BindsBox; |
|
47 QPushButton *BtnTeamDiscard; |
|
48 QPushButton *BtnTeamSave; |
|
49 QPushButton * BtnTestSound; |
|
50 QLineEdit * TeamNameEdit; |
|
51 QLineEdit * HHNameEdit[8]; |
|
52 QComboBox * HHHats[8]; |
|
53 QPushButton * randButton[8]; |
|
54 QComboBox * CBBind[BINDS_NUMBER]; |
|
55 QPushButton * randTeamButton; |
|
56 |
|
57 private: |
|
58 SDLInteraction * mySdli; |
|
59 |
|
60 public slots: |
|
61 void CBFort_activated(const QString & gravename); |
|
62 |
|
63 private slots: |
|
64 void testSound(); |
|
65 void fixHHname(int idx); |
|
66 }; |
|
67 |
|
68 #endif |
|
69 |
|