Changeset 1501:39d59aee2a1a in lemon-0.x for gui/graph_displayer_canvas.h
- Timestamp:
- 06/17/05 14:25:53 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1982
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gui/graph_displayer_canvas.h
r1500 r1501 3 3 #ifndef GRAPH_DISPLAYER_CANVAS_H 4 4 #define GRAPH_DISPLAYER_CANVAS_H 5 6 class GraphDisplayerCanvas; 5 7 6 8 #include <all_include.h> … … 70 72 ///event handler for the case when eraser-tool is active 71 73 bool eraser_event_handler(GdkEvent*); 74 ///event handler for the case when eraser-tool is active 75 bool edge_map_edit_event_handler(GdkEvent*); 72 76 77 public: 78 ///\return the actual tool in hand 79 int get_actual_tool(); 80 81 private: 73 82 ///Deletes the given element. 74 83 void delete_item(NodeIt); … … 77 86 ///Deletes the given element. 78 87 void delete_item(Graph::Edge); 88 89 private: 79 90 80 91 ///The graph, on which we work … … 99 110 int isbutton; 100 111 112 ///Stores the actual tool in hand 113 int actual_tool; 114 101 115 ///At this location was the mousebutton pressed. 102 116 ///It helps to calculate the distance of dragging.
Note: See TracChangeset
for help on using the changeset viewer.