diff -r d8475431bbbb -r 8e85e6bbefdf gui/map_win.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gui/map_win.h Mon May 23 04:48:14 2005 +0000 @@ -0,0 +1,30 @@ +// -*- C++ -*- // + +#ifndef MAP_WIN_H +#define MAP_WIN_H + +#include +#include +#include +#include +#include + +class MapWin : public Gtk::Window +{ +protected: + GraphDisplayerCanvas & gdc; + MapStorage & ms; + + Gtk::HBox * radios; + Gtk::RadioButton ** rb_array; + + Gtk::VBox vbox_b, * vbox_r1, * vbox_r2; + Gtk::Notebook notebook; + Gtk::Label * labels; + +public: + MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &); + virtual void radio_click(int, int); +}; + +#endif //MAP_WIN_H