diff -r fffa6456548a -r 616bc933c2bc gui/map_win.h --- a/gui/map_win.h Mon Oct 17 10:30:59 2005 +0000 +++ b/gui/map_win.h Thu Oct 20 15:50:23 2005 +0000 @@ -8,6 +8,7 @@ #include "all_include.h" #include "graph_displayer_canvas.h" #include "mapstorage.h" +#include "mapselector.h" #include #include @@ -28,7 +29,7 @@ Gtk::Table * table; - Gtk::Combo * e_combo_array, * n_combo_array; + MapSelector ** e_combo_array, ** n_combo_array; Gtk::Label * label; @@ -38,17 +39,6 @@ ///Constructor of MapWin creates the widgets shown in MapWin. MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &); - ///If a radiobutton is clicked, this function determines - ///which button was that and after that calls the - ///appropriate function of the \ref GraphDisplayerCanvas - ///to change the visible values of that attribute. - virtual void eComboChanged(int); - ///If a radiobutton is clicked, this function determines - ///which button was that and after that calls the - ///appropriate function of the \ref GraphDisplayerCanvas - ///to change the visible values of that attribute. - virtual void nComboChanged(int); - ///This function is created to set the appropriate maps on the newly created node void updateNode(Graph::Node);