Changeset 28:fa28f1071bd6 in glemon-0.x for map_win.h
- Timestamp:
- 06/24/05 20:16:12 (19 years ago)
- Branch:
- gui
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@1996
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
map_win.h
r8 r28 3 3 #ifndef MAP_WIN_H 4 4 #define MAP_WIN_H 5 6 class MapWin; 5 7 6 8 #include <all_include.h> … … 25 27 MapStorage & ms; 26 28 27 Gtk::Table table;29 Gtk::Table * table; 28 30 29 Gtk::HBox combos, * labelpluscombo; 30 Gtk::Combo * combo_array; 31 32 Gtk::VBox vbox_b, vbox_r1, vbox_r2; 31 Gtk::Combo * e_combo_array, * n_combo_array; 33 32 34 33 Gtk::Label * label; 34 35 Gtk::VBox vbox; 35 36 36 37 public: … … 42 43 ///appropriate function of the \ref GraphDisplayerCanvas 43 44 ///to change the visible values of that attribute. 44 virtual void combo_changed(int); 45 virtual void e_combo_changed(int); 46 ///If a radiobutton is clicked, this function determines 47 ///which button was that and after that calls the 48 ///appropriate function of the \ref GraphDisplayerCanvas 49 ///to change the visible values of that attribute. 50 virtual void n_combo_changed(int); 51 52 ///This function is created to set the appropriate maps on the newly created node 53 void update_node(Graph::Node); 54 55 ///This function is created to set the appropriate maps on the newly created edge 56 void update_edge(Graph::Edge); 57 45 58 virtual bool close_if_escape_is_pressed(GdkEventKey*); 46 59 };
Note: See TracChangeset
for help on using the changeset viewer.