Changeset 1606:dc4ea2010dee in lemon-0.x for gui/main_win.h
- Timestamp:
- 07/29/05 14:01:37 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2111
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gui/main_win.h
r1601 r1606 4 4 #define MAIN_WIN_H 5 5 6 #include <all_include.h> 7 #include <mapstorage.h> 8 #include <map_win.h> 9 #include <new_map_win.h> 6 #include "all_include.h" 7 #include "mapstorage.h" 8 #include "map_win.h" 9 #include "new_map_win.h" 10 #include "edit_win.h" 11 #include "graph_displayer_canvas.h" 10 12 #include <libgnomecanvasmm.h> 11 13 #include <libgnomecanvasmm/polygon.h> … … 18 20 ///Constructor of the \ref MainWin. It creates the menu and the \ref GraphDisplayerCanvas on which the graph will be drawn. 19 21 ///\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 &); 22 MainWin(const std::string& title); 23 24 MapStorage mapstorage; 24 25 25 26 protected: … … 53 54 ///Callback for 'FileSaveAs' action. 54 55 virtual void saveFileAs(); 56 ///Callback for 'Close' action. 57 virtual void close(); 55 58 }; 56 59
Note: See TracChangeset
for help on using the changeset viewer.