COIN-OR::LEMON - Graph Library

source: glemon-0.x/map_win.h @ 2:358b707800b8

gui
Last change on this file since 2:358b707800b8 was 1:c69fedfbb9b3, checked in by Akos Ladanyi, 19 years ago

moved the gui

File size: 627 bytes
Line 
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
12class MapWin : public Gtk::Window
13{
14protected:
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
25public:
26  MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &);
27  virtual void radio_click(int, int);
28};
29
30#endif //MAP_WIN_H
Note: See TracBrowser for help on using the repository browser.