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: hegyi@1837: #include hegyi@1849: #include 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: { hegyi@1819: hegyi@1819: class MapSelector : public Gtk::HBox hegyi@1819: { hegyi@1819: protected: hegyi@1837: sigc::signal signal_cbt; hegyi@1837: sigc::signal signal_newmapwin; hegyi@1819: hegyi@1819: int id; hegyi@1819: hegyi@1819: bool itisedge; hegyi@1819: hegyi@1819: bool default_state; hegyi@1819: hegyi@1819: bool set_new_map; hegyi@1819: hegyi@1819: Gtk::ComboBoxText cbt; hegyi@1819: hegyi@1819: Gtk::Button * newbut, * defbut; hegyi@1819: hegyi@1819: Gtk::HBox hbox; hegyi@1819: hegyi@1819: Gtk::Label * label; hegyi@1819: hegyi@1819: public: hegyi@1819: hegyi@1838: MapSelector(std::vector, std::string, int, bool); hegyi@1819: hegyi@1837: sigc::signal signal_cbt_ch(); hegyi@1837: sigc::signal signal_newmapwin_needed(); hegyi@1837: hegyi@1837: void update_list( std::vector ); hegyi@1819: hegyi@1819: ///If a radiobutton is clicked, this function determines hegyi@1819: ///which button was that and after that calls the hegyi@1819: ///appropriate function of the \ref GraphDisplayerCanvas hegyi@1819: ///to change the visible values of that attribute. hegyi@1819: virtual void comboChanged(); hegyi@1819: hegyi@1819: virtual void new_but_pressed(); hegyi@1819: hegyi@1819: virtual void reset(); hegyi@1819: hegyi@1819: Glib::ustring get_active_text(); hegyi@1819: void set_active_text(Glib::ustring); hegyi@1819: void append_text(Glib::ustring); hegyi@1819: }; hegyi@1819: hegyi@1819: hegyi@1819: ladanyi@1442: protected: hegyi@1849: NoteBookTab & mytab; ladanyi@1442: hegyi@1512: Gtk::Table * table; ladanyi@1442: hegyi@1731: MapSelector ** 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. hegyi@1849: MapWin(const std::string& title, std::vector, std::vector, NoteBookTab & mw); ladanyi@1442: hegyi@1838: ~MapWin(); hegyi@1838: hegyi@1838: virtual bool on_delete_event(GdkEventAny *); hegyi@1838: hegyi@1837: void nodeMapChanged(std::string, int); hegyi@1512: hegyi@1837: void edgeMapChanged(std::string, int); hegyi@1837: hegyi@1837: void newMapWinNeeded(bool, int); 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: hegyi@1837: void update(std::vector, std::vector); ladanyi@1442: }; ladanyi@1442: ladanyi@1442: #endif //MAP_WIN_H