QTfrontend/mapContainer.h
changeset 249 ff85fa029541
parent 184 f97a7a3dc8f6
child 320 1ee7f087195a
--- 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;
 };