6 #include "all_include.h"
7 #include "mapstorage.h"
9 #include "new_map_win.h"
10 #include "graph_displayer_canvas.h"
11 #include <libgnomecanvasmm.h>
12 #include <libgnomecanvasmm/polygon.h>
14 ///This class is the main window of GUI.
15 ///It has menus, but the main part of it is the canvas.
16 class MainWin : public Gtk::Window
19 ///Constructor of the \ref MainWin. It creates the menu and the \ref GraphDisplayerCanvas on which the graph will be drawn.
20 ///\param title is the title of the window
21 MainWin(const std::string& title);
23 MapStorage mapstorage;
26 ///Window of map-showing setup. Its type is \ref MapWin
29 ///We need to store newmapwin, to be able to set the appropriate values for properties of new map.
32 ///The graph will be drawn on this \ref GraphDisplayerCanvas
33 GraphDisplayerCanvas gd_canvas;
35 ///ActionGroup for menu
36 Glib::RefPtr<Gtk::ActionGroup> ag;
39 Glib::RefPtr<Gtk::UIManager> uim;
45 Gtk::Tooltips tooltips;
47 ///Callback for 'FileNew' action.
48 virtual void newFile();
49 ///Callback for 'FileOpen' action.
50 virtual void openFile();
51 ///Callback for 'FileSave' action.
52 virtual void saveFile();
53 ///Callback for 'FileSaveAs' action.
54 virtual void saveFileAs();
55 ///Callback for 'Close' action.