ladanyi@1442: // -*- C++ -*- // ladanyi@1442: ladanyi@1442: #ifndef MAP_WIN_H ladanyi@1442: #define MAP_WIN_H ladanyi@1442: hegyi@1512: class MapWin; hegyi@1512: ladanyi@1606: #include "all_include.h" ladanyi@1606: #include "graph_displayer_canvas.h" ladanyi@1606: #include "mapstorage.h" ladanyi@1442: #include ladanyi@1442: #include ladanyi@1442: ladanyi@1442: ///This class is responsible for creating a window, ladanyi@1442: ///on which the visualization attributes can be ladanyi@1442: ///assigned to maps. ladanyi@1442: class MapWin : public Gtk::Window ladanyi@1442: { ladanyi@1442: protected: ladanyi@1442: ///The \ref GraphDisplayerCanvas on which the graph will be drawn. ladanyi@1442: ///It has to be known for this class, because ladanyi@1442: ///when a map assigned to a certain attribute ladanyi@1442: ///a function of the \ref GraphDisplayerCanvas will be called. ladanyi@1442: GraphDisplayerCanvas & gdc; ladanyi@1442: ladanyi@1442: ///The \ref MapStorage in which the visualizable maps are stored ladanyi@1442: MapStorage & ms; ladanyi@1442: hegyi@1512: Gtk::Table * table; ladanyi@1442: hegyi@1512: Gtk::Combo * e_combo_array, * n_combo_array; ladanyi@1442: hegyi@1446: Gtk::Label * label; ladanyi@1442: hegyi@1512: Gtk::VBox vbox; hegyi@1512: ladanyi@1442: public: ladanyi@1442: ///Constructor of MapWin creates the widgets shown in MapWin. ladanyi@1442: MapWin(const std::string& title, MapStorage &, GraphDisplayerCanvas &); ladanyi@1442: ladanyi@1442: ///If a radiobutton is clicked, this function determines ladanyi@1442: ///which button was that and after that calls the ladanyi@1442: ///appropriate function of the \ref GraphDisplayerCanvas ladanyi@1442: ///to change the visible values of that attribute. hegyi@1524: virtual void eComboChanged(int); hegyi@1512: ///If a radiobutton is clicked, this function determines hegyi@1512: ///which button was that and after that calls the hegyi@1512: ///appropriate function of the \ref GraphDisplayerCanvas hegyi@1512: ///to change the visible values of that attribute. hegyi@1524: virtual void nComboChanged(int); hegyi@1512: hegyi@1512: ///This function is created to set the appropriate maps on the newly created node hegyi@1524: void updateNode(Graph::Node); hegyi@1512: hegyi@1512: ///This function is created to set the appropriate maps on the newly created edge hegyi@1524: void updateEdge(Graph::Edge); hegyi@1512: hegyi@1586: ///This function inserts name of the new edgemap in the list in the combo box hegyi@1586: void registerNewEdgeMap(std::string); hegyi@1586: hegyi@1586: ///This function inserts name of the new nodemap in the list in the combo box hegyi@1586: void registerNewNodeMap(std::string); hegyi@1586: hegyi@1524: virtual bool closeIfEscapeIsPressed(GdkEventKey*); hegyi@1586: ladanyi@1606: void update(); ladanyi@1442: }; ladanyi@1442: ladanyi@1442: #endif //MAP_WIN_H