summaryrefslogtreecommitdiffstats
path: root/konquest/minimap.h
diff options
context:
space:
mode:
Diffstat (limited to 'konquest/minimap.h')
-rw-r--r--konquest/minimap.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/konquest/minimap.h b/konquest/minimap.h
new file mode 100644
index 00000000..9d205abb
--- /dev/null
+++ b/konquest/minimap.h
@@ -0,0 +1,44 @@
+#ifndef _MINIMAP_H
+#define _MINIMAP_H
+
+#include <qwidget.h>
+#include <qframe.h>
+#include <qpixmap.h>
+#include <qgridview.h>
+#include <qtimer.h>
+
+#include "gamecore.h"
+#include "images.h"
+
+
+class MiniMap : public QGridView
+{
+ Q_OBJECT
+
+ // Constructors
+public:
+ MiniMap( QWidget *parent = 0, const char* name = 0 );
+ virtual ~MiniMap();
+
+ void setMap( Map *newMap );
+
+protected:
+ void paintCell( QPainter *p, int row, int col );
+
+private slots:
+ void mapUpdate();
+
+private:
+ int SECTOR_HEIGHT;
+ int SECTOR_WIDTH;
+
+ int BOARD_HEIGHT;
+ int BOARD_WIDTH;
+
+ void drawSector( QPainter *, Sector & );
+
+ Map *map;
+};
+
+
+#endif // _MINIMAP_H_