summaryrefslogtreecommitdiffstats
path: root/src/Gui/Window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gui/Window.h')
-rw-r--r--src/Gui/Window.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Gui/Window.h b/src/Gui/Window.h
index ae22d42..9b4f4ef 100644
--- a/src/Gui/Window.h
+++ b/src/Gui/Window.h
@@ -30,13 +30,16 @@ class RenderArea;
class Window : public Gtk::Window {
private:
- RenderArea *renderArea;
+ RenderArea *renderArea, *mapArea;
+
+ void updateMap(GdkEventExpose*);
public:
Window(BaseObjectType *cobject, const Glib::RefPtr<Gnome::Glade::Xml> &xml);
virtual ~Window();
RenderArea* getRenderArea() const {return renderArea;}
+ RenderArea* getMapArea() const {return mapArea;}
};
}