author | unc0rr |
Tue, 27 Dec 2005 10:20:55 +0000 | |
changeset 31 | 99888245a4e8 |
parent 28 | 59f7db859b8a |
child 32 | 78bff13b11c0 |
permissions | -rw-r--r-- |
20 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*/ |
|
33 |
||
34 |
#ifndef HWFORM_H |
|
35 |
#define HWFORM_H |
|
36 |
||
37 |
#include <QLabel> |
|
38 |
#include <QLineEdit> |
|
39 |
#include <QDir> |
|
40 |
#include "ui_hwform.h" |
|
41 |
#include "binds.h" |
|
42 |
#include "game.h" |
|
21 | 43 |
#include "team.h" |
28 | 44 |
#include "netclient.h" |
20 | 45 |
|
46 |
class HWForm : public QMainWindow |
|
47 |
{ |
|
48 |
Q_OBJECT |
|
49 |
||
50 |
public: |
|
51 |
HWForm(QWidget *parent = 0); |
|
52 |
Ui::HWForm ui; |
|
53 |
QLineEdit * TeamNameEdit; |
|
54 |
QLineEdit * HHNameEdit[8]; |
|
55 |
QComboBox * CBBind[BINDS_NUMBER]; |
|
56 |
||
57 |
private slots: |
|
58 |
void GoToMain(); |
|
59 |
void GoToSinglePlayer(); |
|
60 |
void GoToSetup(); |
|
25 | 61 |
void GoToMultiplayer(); |
26 | 62 |
void GoToDemos(); |
28 | 63 |
void GoToNet(); |
64 |
void GoToNetChat(); |
|
20 | 65 |
void NewTeam(); |
66 |
void EditTeam(); |
|
67 |
void TeamSave(); |
|
68 |
void TeamDiscard(); |
|
69 |
void SimpleGame(); |
|
70 |
void SaveOptions(); |
|
26 | 71 |
void PlayDemo(); |
28 | 72 |
void NetConnect(); |
73 |
void NetDisconnect(); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
74 |
void NetJoin(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
75 |
void NetCreate(); |
28 | 76 |
void AddGame(const QString & chan); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
77 |
void NetAddTeam(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
78 |
void NetGameEnter(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
79 |
void NetStartGame(); |
26 | 80 |
|
20 | 81 |
public slots: |
82 |
void CBGrave_activated(const QString & gravename); |
|
83 |
void CBFort_activated(const QString & gravename); |
|
84 |
||
85 |
private: |
|
86 |
QLabel * LBind[BINDS_NUMBER]; |
|
87 |
HWGame * game; |
|
88 |
QDir cfgdir; |
|
21 | 89 |
HWTeam * tmpTeam; |
28 | 90 |
HWNet * hwnet; |
20 | 91 |
}; |
92 |
||
93 |
#define ID_PAGE_SINGLEPLAYER 0 |
|
26 | 94 |
#define ID_PAGE_SETUP_TEAM 1 |
20 | 95 |
#define ID_PAGE_SETUP 2 |
25 | 96 |
#define ID_PAGE_MULTIPLAYER 3 |
26 | 97 |
#define ID_PAGE_DEMOS 4 |
28 | 98 |
#define ID_PAGE_NET 5 |
99 |
#define ID_PAGE_NETCHAT 6 |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
100 |
#define ID_PAGE_NETCFG 7 |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
101 |
#define ID_PAGE_MAIN 8 |
20 | 102 |
|
103 |
#endif |