author | smxx |
Mon, 22 Mar 2010 20:57:49 +0000 | |
changeset 3050 | d6937fc885a1 |
parent 3008 | e57cafce4227 |
child 3133 | 1ab5f18f4df8 |
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> |
164 | 26 |
|
1210 | 27 |
#include "hwmap.h" |
28 |
||
164 | 29 |
class QPushButton; |
1209 | 30 |
class IconedGroupBox; |
31 |
class QListWidget; |
|
164 | 32 |
|
249 | 33 |
class MapFileErrorException |
34 |
{ |
|
35 |
}; |
|
36 |
||
164 | 37 |
class HWMapContainer : public QWidget |
38 |
{ |
|
39 |
Q_OBJECT |
|
320 | 40 |
|
164 | 41 |
public: |
42 |
HWMapContainer(QWidget * parent=0); |
|
43 |
QString getCurrentSeed() const; |
|
249 | 44 |
QString getCurrentMap() const; |
45 |
QString getCurrentTheme() const; |
|
1790 | 46 |
int getCurrentHHLimit() const; |
1802 | 47 |
quint32 getTemplateFilter() const; |
3008 | 48 |
bool getCurrentIsMission() const; |
164 | 49 |
|
50 |
public slots: |
|
51 |
void changeImage(); |
|
320 | 52 |
void setSeed(const QString & seed); |
53 |
void setMap(const QString & map); |
|
54 |
void setTheme(const QString & theme); |
|
1797 | 55 |
void setTemplateFilter(int); |
164 | 56 |
|
325 | 57 |
signals: |
58 |
void seedChanged(const QString & seed); |
|
59 |
void mapChanged(const QString & map); |
|
60 |
void themeChanged(const QString & theme); |
|
1802 | 61 |
void newTemplateFilter(int filter); |
325 | 62 |
|
63 |
||
164 | 64 |
private slots: |
65 |
void setImage(const QImage newImage); |
|
1790 | 66 |
void setHHLimit(int hhLimit); |
249 | 67 |
void mapChanged(int index); |
320 | 68 |
void setRandomSeed(); |
1318 | 69 |
void setRandomTheme(); |
1215 | 70 |
void themeSelected(int currentRow); |
1790 | 71 |
void addInfoToPreview(QPixmap image); |
1802 | 72 |
void templateFilterChanged(int filter); |
164 | 73 |
|
74 |
protected: |
|
75 |
virtual void resizeEvent ( QResizeEvent * event ); |
|
76 |
||
77 |
private: |
|
1209 | 78 |
QGridLayout mainLayout; |
164 | 79 |
QPushButton* imageButt; |
249 | 80 |
QComboBox* chooseMap; |
1209 | 81 |
IconedGroupBox* gbThemes; |
82 |
QListWidget* lwThemes; |
|
169
a78d4a552500
new more working, but still not completely working version :)
displacer
parents:
168
diff
changeset
|
83 |
HWMap* pMap; |
164 | 84 |
QString m_seed; |
1790 | 85 |
int hhLimit; |
1797 | 86 |
int templateFilter; |
1790 | 87 |
QPixmap hhSmall; |
1802 | 88 |
QLabel* lblFilter; |
89 |
QComboBox* CB_TemplateFilter; |
|
331 | 90 |
|
91 |
void loadMap(int index); |
|
164 | 92 |
}; |
93 |
||
94 |
#endif // _HWMAP_CONTAINER_INCLUDED |