gui/main_win.h
author alpar
Thu, 28 Jul 2005 19:04:43 +0000
changeset 1603 5ad84fbadf2b
parent 1598 739df601808d
child 1606 dc4ea2010dee
permissions -rw-r--r--
More docs
     1 // -*- C++ -*- //
     2 
     3 #ifndef MAIN_WIN_H
     4 #define MAIN_WIN_H
     5 
     6 #include <all_include.h>
     7 #include <mapstorage.h>
     8 #include <map_win.h>
     9 #include <new_map_win.h>
    10 #include <libgnomecanvasmm.h>
    11 #include <libgnomecanvasmm/polygon.h>
    12 
    13 ///This class is the main window of GUI.
    14 ///It has menus, but the main part of it is the canvas.
    15 class MainWin : public Gtk::Window
    16 {
    17 public:
    18   ///Constructor of the \ref MainWin. It creates the menu and the \ref GraphDisplayerCanvas on which the graph will be drawn.
    19   ///\param title is the title of the window
    20   ///\param graph is the graph that will be drawn here. It will be given further to the \ref GraphDisplayerCanvas
    21   ///\param cm stores the coordinates of the nodes of the graph
    22   ///\param ms is the \ref MapStorage in which the different visualizable maps are stored
    23   MainWin(const std::string& title, Graph &, CoordinatesMap &, MapStorage &);
    24 
    25 protected:
    26   ///Window of map-showing setup. Its type is \ref MapWin
    27   MapWin mapwin;
    28 
    29   ///We need to store newmapwin, to be able to set the appropriate values for properties of new map.
    30   NewMapWin newmapwin;
    31 
    32   ///The graph will be drawn on this \ref GraphDisplayerCanvas
    33   GraphDisplayerCanvas gd_canvas;
    34 
    35   ///ActionGroup for menu
    36   Glib::RefPtr<Gtk::ActionGroup> ag;
    37 
    38   ///UIManager for menu
    39   Glib::RefPtr<Gtk::UIManager> uim;
    40 
    41   ///Container
    42   Gtk::VBox vbox;
    43 
    44   ///Tooltips
    45   Gtk::Tooltips tooltips;
    46 
    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 };
    56 
    57 #endif //MAIN_WIN_H