--- a/QTfrontend/mapContainer.h Sat Nov 18 18:17:03 2006 +0000
+++ b/QTfrontend/mapContainer.h Sat Nov 18 23:48:24 2006 +0000
@@ -23,9 +23,14 @@
#include <QWidget>
#include <QVBoxLayout>
+#include <QComboBox>
class QPushButton;
+class MapFileErrorException
+{
+};
+
class HWMapContainer : public QWidget
{
Q_OBJECT
@@ -33,12 +38,15 @@
public:
HWMapContainer(QWidget * parent=0);
QString getCurrentSeed() const;
+ QString getCurrentMap() const;
+ QString getCurrentTheme() const;
public slots:
void changeImage();
private slots:
void setImage(const QImage newImage);
+ void mapChanged(int index);
protected:
virtual void resizeEvent ( QResizeEvent * event );
@@ -46,6 +54,7 @@
private:
QVBoxLayout mainLayout;
QPushButton* imageButt;
+ QComboBox* chooseMap;
HWMap* pMap;
QString m_seed;
};