src/gui/map_win.h
author ladanyi
Wed, 11 May 2005 16:55:18 +0000
changeset 1412 c7fab5a1174a
permissions -rw-r--r--
moved the gui
     1 // -*- C++ -*- //
     2 
     3 #ifndef MAP_WIN_H
     4 #define MAP_WIN_H
     5 
     6 #include <all_include.h>
     7 #include <mapstorage.h>
     8 #include <graph_displayer_canvas.h>
     9 #include <libgnomecanvasmm.h>
    10 #include <libgnomecanvasmm/polygon.h>
    11 
    12 class MapWin : public Gtk::Window
    13 {
    14 protected:
    15   GraphDisplayerCanvas & gdc;
    16   MapStorage & ms;
    17 
    18   Gtk::HBox * radios;
    19   Gtk::RadioButton ** rb_array;
    20 
    21   Gtk::VBox vbox_b, * vbox_r1, * vbox_r2;
    22   Gtk::Notebook notebook;
    23   Gtk::Label * labels;
    24 
    25 public:
    26   MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &);
    27   virtual void radio_click(int, int);
    28 };
    29 
    30 #endif //MAP_WIN_H