// -*- 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