diff -r fc1e478697d3 -r 8339178ae43d map_window.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/map_window.h Wed Oct 25 17:50:02 2006 +0000 @@ -0,0 +1,34 @@ +#ifndef MAP_WINDOW +#define MAP_WINDOW + +#include +#include +#include +#include +#include "mapstorage.h" + +class MapWindow : public Gtk::Window +{ + struct MapModelColumns : public Gtk::TreeModel::ColumnRecord + { + MapModelColumns() + { + add(colName); + add(colValue); + add(colType); + } + Gtk::TreeModelColumn colName; + Gtk::TreeModelColumn colValue; + Gtk::TreeModelColumn colType; + }; + private: + MapModelColumns mapColumns; + Glib::RefPtr refMapStore; + Gtk::TreeView twMap; + Gtk::ScrolledWindow swMap; + public: + MapWindow(); + ~MapWindow(); +}; + +#endif