author | unc0rr |
Sun, 12 Dec 2010 21:47:55 +0300 | |
changeset 4511 | df827e70ae63 |
parent 4489 | c4ca9ced258b |
child 4513 | 1dd97c710f5a |
permissions | -rw-r--r-- |
164 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 Igor Ulyanov <iulyanov@gmail.com> |
164 | 4 |
* |
184 | 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 |
|
164 | 8 |
* |
184 | 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. |
|
164 | 13 |
* |
184 | 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 |
|
164 | 17 |
*/ |
18 |
||
19 |
#ifndef _HWMAP_CONTAINER_INCLUDED |
|
20 |
#define _HWMAP_CONTAINER_INCLUDED |
|
21 |
||
22 |
#include <QWidget> |
|
1209 | 23 |
#include <QGridLayout> |
249 | 24 |
#include <QComboBox> |
1802 | 25 |
#include <QLabel> |
4489 | 26 |
#include <QByteArray> |
164 | 27 |
|
1210 | 28 |
#include "hwmap.h" |
29 |
||
164 | 30 |
class QPushButton; |
1209 | 31 |
class IconedGroupBox; |
32 |
class QListWidget; |
|
164 | 33 |
|
249 | 34 |
class MapFileErrorException |
35 |
{ |
|
36 |
}; |
|
37 |
||
164 | 38 |
class HWMapContainer : public QWidget |
39 |
{ |
|
40 |
Q_OBJECT |
|
320 | 41 |
|
164 | 42 |
public: |
43 |
HWMapContainer(QWidget * parent=0); |
|
44 |
QString getCurrentSeed() const; |
|
249 | 45 |
QString getCurrentMap() const; |
46 |
QString getCurrentTheme() const; |
|
1790 | 47 |
int getCurrentHHLimit() const; |
1802 | 48 |
quint32 getTemplateFilter() const; |
3133 | 49 |
MapGenerator get_mapgen(void) const; |
50 |
int get_maze_size(void) const; |
|
3008 | 51 |
bool getCurrentIsMission() const; |
4489 | 52 |
QByteArray getDrawnMapData(); |
164 | 53 |
|
54 |
public slots: |
|
55 |
void changeImage(); |
|
320 | 56 |
void setSeed(const QString & seed); |
57 |
void setMap(const QString & map); |
|
58 |
void setTheme(const QString & theme); |
|
1797 | 59 |
void setTemplateFilter(int); |
3133 | 60 |
void setMapgen(MapGenerator m); |
61 |
void setMaze_size(int size); |
|
164 | 62 |
|
325 | 63 |
signals: |
64 |
void seedChanged(const QString & seed); |
|
65 |
void mapChanged(const QString & map); |
|
66 |
void themeChanged(const QString & theme); |
|
1802 | 67 |
void newTemplateFilter(int filter); |
3133 | 68 |
void mapgenChanged(MapGenerator m); |
69 |
void maze_sizeChanged(int s); |
|
4511 | 70 |
void drawMapRequested(); |
325 | 71 |
|
164 | 72 |
private slots: |
73 |
void setImage(const QImage newImage); |
|
1790 | 74 |
void setHHLimit(int hhLimit); |
249 | 75 |
void mapChanged(int index); |
320 | 76 |
void setRandomSeed(); |
1318 | 77 |
void setRandomTheme(); |
4337 | 78 |
void setRandomMap(); |
79 |
void setRandomStatic(); |
|
80 |
void setRandomMission(); |
|
1215 | 81 |
void themeSelected(int currentRow); |
1790 | 82 |
void addInfoToPreview(QPixmap image); |
1802 | 83 |
void templateFilterChanged(int filter); |
164 | 84 |
|
85 |
protected: |
|
86 |
virtual void resizeEvent ( QResizeEvent * event ); |
|
87 |
||
88 |
private: |
|
1209 | 89 |
QGridLayout mainLayout; |
164 | 90 |
QPushButton* imageButt; |
249 | 91 |
QComboBox* chooseMap; |
1209 | 92 |
IconedGroupBox* gbThemes; |
93 |
QListWidget* lwThemes; |
|
169
a78d4a552500
new more working, but still not completely working version :)
displacer
parents:
168
diff
changeset
|
94 |
HWMap* pMap; |
164 | 95 |
QString m_seed; |
1790 | 96 |
int hhLimit; |
1797 | 97 |
int templateFilter; |
1790 | 98 |
QPixmap hhSmall; |
1802 | 99 |
QLabel* lblFilter; |
100 |
QComboBox* CB_TemplateFilter; |
|
3133 | 101 |
QLabel *maze_size_label; |
102 |
QComboBox *maze_size_selection; |
|
103 |
MapGenerator mapgen; |
|
4489 | 104 |
QByteArray drawnMapData; |
4337 | 105 |
int numMissions; |
3133 | 106 |
int maze_size; |
331 | 107 |
|
108 |
void loadMap(int index); |
|
164 | 109 |
}; |
110 |
||
111 |
#endif // _HWMAP_CONTAINER_INCLUDED |