6 #include <all_include.h>
7 #include <mapstorage.h>
9 #include <libgnomecanvasmm.h>
10 #include <libgnomecanvasmm/polygon.h>
12 ///This class is the main window of GUI.
13 ///It has menus, but the main part of it is the canvas.
14 class MainWin : public Gtk::Window
17 ///Constructor of the \ref MainWin. It creates the menu and the \ref GraphDisplayerCanvas on which the graph will be drawn.
18 ///\param title is the title of the window
19 ///\param graph is the graph that will be drawn here. It will be given further to the \ref GraphDisplayerCanvas
20 ///\param cm stores the coordinates of the nodes of the graph
21 ///\param ms is the \ref MapStorage in which the different visualizable maps are stored
22 MainWin(const std::string& title, Graph &, CoordinatesMap &, MapStorage &);
25 ///Window of map-showing setup. Its type is \ref MapWin
28 ///The graph will be drawn on this \ref GraphDisplayerCanvas
29 GraphDisplayerCanvas gd_canvas;
31 ///ActionGroup for menu
32 Glib::RefPtr<Gtk::ActionGroup> ag;
35 Glib::RefPtr<Gtk::UIManager> uim;
40 ///This function makes map-setup window popped up.
41 virtual void showMaps();
42 ///Callback for 'FileNew' action.
43 virtual void newFile();
44 ///Callback for 'FileOpen' action.
45 virtual void openFile();
46 ///Callback for 'FileSave' action.
47 virtual void saveFile();
48 ///Callback for 'FileSaveAs' action.
49 virtual void saveFileAs();
50 ///Callback for 'Quit' action.