main_win.h
author hegyi
Fri, 27 May 2005 10:34:20 +0000
branchgui
changeset 4 e099638ff236
parent 1 c69fedfbb9b3
child 5 b7c36be1e35c
permissions -rw-r--r--
Small documentation is added to GUI
     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 <libgnomecanvasmm.h>
    10 #include <libgnomecanvasmm/polygon.h>
    11 
    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
    15 {
    16 public:
    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 &);
    23 
    24 protected:
    25   ///Window of map-showing setup. Its type is \ref MapWin
    26   MapWin mapwin;
    27 
    28   ///The graph will be drawn on this \ref GraphDisplayerCanvas
    29   GraphDisplayerCanvas gd_canvas;
    30 
    31   ///ActionGroup for menu
    32   Glib::RefPtr<Gtk::ActionGroup> ag;
    33 
    34   ///UIManager for menu
    35   Glib::RefPtr<Gtk::UIManager> uim;
    36 
    37   ///Container
    38   Gtk::VBox vbox;
    39 
    40   ///This function makes map-setup window popped up.
    41   virtual void showMaps();
    42 
    43   ///Exit
    44   virtual void quit();
    45 
    46   ///Refit screen to be able to show the whole graph.
    47   virtual void rezoom();
    48 
    49 };
    50 
    51 #endif //MAIN_WIN_H