gui/map_win.h
changeset 1435 8e85e6bbefdf
parent 1412 c7fab5a1174a
child 1440 3d2e3cfb2a6c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gui/map_win.h	Mon May 23 04:48:14 2005 +0000
     1.3 @@ -0,0 +1,30 @@
     1.4 +// -*- C++ -*- //
     1.5 +
     1.6 +#ifndef MAP_WIN_H
     1.7 +#define MAP_WIN_H
     1.8 +
     1.9 +#include <all_include.h>
    1.10 +#include <mapstorage.h>
    1.11 +#include <graph_displayer_canvas.h>
    1.12 +#include <libgnomecanvasmm.h>
    1.13 +#include <libgnomecanvasmm/polygon.h>
    1.14 +
    1.15 +class MapWin : public Gtk::Window
    1.16 +{
    1.17 +protected:
    1.18 +  GraphDisplayerCanvas & gdc;
    1.19 +  MapStorage & ms;
    1.20 +
    1.21 +  Gtk::HBox * radios;
    1.22 +  Gtk::RadioButton ** rb_array;
    1.23 +
    1.24 +  Gtk::VBox vbox_b, * vbox_r1, * vbox_r2;
    1.25 +  Gtk::Notebook notebook;
    1.26 +  Gtk::Label * labels;
    1.27 +
    1.28 +public:
    1.29 +  MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &);
    1.30 +  virtual void radio_click(int, int);
    1.31 +};
    1.32 +
    1.33 +#endif //MAP_WIN_H