Changeset 38:9cab23d9b124 in glemon-0.x
- Timestamp:
- 07/25/05 13:17:23 (20 years ago)
- Branch:
- gui
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@2089
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
graph_displayer_canvas-event.cc
r37 r38 806 806 void GraphDisplayerCanvas::addNewEdgeMap() 807 807 { 808 Graph::EdgeMap<double> * emptr=new Graph::EdgeMap<double> (g); 809 mapstorage.addEdgeMap("NewEdgeMap",emptr); 810 mapwin->registerNewEdgeMap("NewEdgeMap"); 808 811 std::cout << "Add New EdgeMap is not yet implemented." << std::endl; 809 812 } -
map_win.cc
r31 r38 249 249 } 250 250 } 251 252 void MapWin::registerNewEdgeMap(std::string) 253 { 254 std::cout << "void MapWin::registerNewEdgeMap(std::string) is not yet implemented" << std::endl; 255 } 256 257 void MapWin::registerNewNodeMap(std::string) 258 { 259 std::cout << "void MapWin::registerNewNodeMap(std::string) is not yet implemented" << std::endl; 260 } -
map_win.h
r30 r38 56 56 void updateEdge(Graph::Edge); 57 57 58 ///This function inserts name of the new edgemap in the list in the combo box 59 void registerNewEdgeMap(std::string); 60 61 ///This function inserts name of the new nodemap in the list in the combo box 62 void registerNewNodeMap(std::string); 63 58 64 virtual bool closeIfEscapeIsPressed(GdkEventKey*); 65 59 66 }; 60 67
Note: See TracChangeset
for help on using the changeset viewer.