COIN-OR::LEMON - Graph Library

source: lemon-0.x/gui/graph_displayer_canvas.h @ 1525:6d94de269ab1

Last change on this file since 1525:6d94de269ab1 was 1524:587a823bcdd0, checked in by Hegyi Péter, 19 years ago

Function names are corrected according to naming conventions.

File size: 5.1 KB
RevLine 
[1442]1// -*- C++ -*- //
2
3#ifndef GRAPH_DISPLAYER_CANVAS_H
4#define GRAPH_DISPLAYER_CANVAS_H
5
[1501]6class GraphDisplayerCanvas;
7
[1442]8#include <all_include.h>
[1512]9#include <map_win.h>
[1442]10#include <mapstorage.h>
[1499]11#include <broken_edge.h>
[1442]12#include <libgnomecanvasmm.h>
13#include <libgnomecanvasmm/polygon.h>
14
15///This class is the canvas, on which the graph can be drawn.
16class GraphDisplayerCanvas : public Gnome::Canvas::CanvasAA
17{
18  typedef Gnome::Canvas::CanvasAA Parent;
19
20public:
[1512]21  GraphDisplayerCanvas(Graph &, CoordinatesMap &, MapStorage &, MapWin *);
[1442]22  virtual ~GraphDisplayerCanvas();
23
24  ///Changes the linewidth attribute according to the given map.
25  ///\param mapname is the name of the map which contains the new values
[1512]26  int changeEdgeWidth (std::string mapname, Graph::Edge new_item=INVALID);
[1442]27
28  ///Changes the linecolor attribute according to the given map.
29  ///\param mapname is the name of the map which contains the new values
[1512]30  int changeEdgeColor (std::string mapname, Graph::Edge new_item=INVALID);
[1442]31
32  ///Changes the text of line attribute according to the given map.
33  ///\param mapname is the name of the map which contains the new values
[1512]34  int changeEdgeText (std::string mapname, Graph::Edge new_item=INVALID);
35
36  ///Changes the linewidth attribute according to the given map.
37  ///\param mapname is the name of the map which contains the new values
38  int changeNodeRadius (std::string mapname, Graph::Node new_item=INVALID);
39
40  ///Changes the linecolor attribute according to the given map.
41  ///\param mapname is the name of the map which contains the new values
42  int changeNodeColor (std::string mapname, Graph::Node new_item=INVALID);
43
44  ///Changes the text of line attribute according to the given map.
45  ///\param mapname is the name of the map which contains the new values
46  int changeNodeText (std::string mapname, Graph::Node new_item=INVALID);
[1442]47
48  ///Callback for 'ViewZoomIn' action.
49  virtual void zoomIn();
50  ///Callback for 'ViewZoomOut' action.
51  virtual void zoomOut();
52  ///Callback for 'ViewZoomFit' action.
53  virtual void zoomFit();
54  ///Callback for 'ViewZoom100' action.
55  virtual void zoom100();
56  ///Sets the scroll region of the convas to the bounding box of the graph.
57  void updateScrollRegion();
58
[1468]59  ///This function changes the tool in the graph-editor's hand
60  void changeEditorialTool(int);
61
[1442]62protected:
63
64  //maximizing, minimizing, restoring window, etc.
65  virtual bool on_expose_event(GdkEventExpose *);
66
67private:
68
69  ///This function is responsible for the correct
70  ///reaction of any action happened in the territory
71  ///of the canvas
[1505]72  ///DEPRECATED!!!!
[1524]73  bool eventHandler(GdkEvent* e, Node n);
[1442]74
[1468]75  ///actual event handler
76  ///
77  ///Actual event handler should be stored, to be able to disconnect it and later reconnect it.
78  sigc::connection actual_handler;
79
80  ///event handler for the case when move-tool is active
[1524]81  bool moveEventHandler(GdkEvent*);
[1468]82  ///event handler for the case when create_node-tool is active
[1524]83  bool createNodeEventHandler(GdkEvent*);
[1468]84  ///event handler for the case when create_edge-tool is active
[1524]85  bool createEdgeEventHandler(GdkEvent*);
[1485]86  ///event handler for the case when eraser-tool is active
[1524]87  bool eraserEventHandler(GdkEvent*);
[1501]88  ///event handler for the case when eraser-tool is active
[1524]89  bool edgeMapEditEventHandler(GdkEvent*);
[1485]90
[1501]91public:
[1505]92  ///Moves the text to new place
[1524]93  void textReposition(xy<double>);
[1505]94  ///Activates an edge belonging to a BrokenEdge
[1524]95  void toggleEdgeActivity(BrokenEdge*, bool);
[1505]96
97public:
[1501]98  ///\return the actual tool in hand
[1524]99  int getActualTool();
[1501]100
101private:
[1486]102  ///Deletes the given element.
[1524]103  void deleteItem(NodeIt);
[1486]104  ///Deletes the given element.
[1524]105  void deleteItem(EdgeIt);
[1496]106  ///Deletes the given element.
[1524]107  void deleteItem(Graph::Edge);
[1468]108
[1501]109private:
110
[1442]111  ///The graph, on which we work
[1524]112  Graph & g;
[1442]113
114  ///Map of nodes of graph
115  Graph::NodeMap<Gnome::Canvas::Ellipse *> nodesmap;
116
117  ///Map of edges of graph
[1499]118  Graph::EdgeMap<BrokenEdge *> edgesmap;
[1442]119
120  ///Map of texts to write on edges
121  Graph::EdgeMap<Gnome::Canvas::Text *> edgetextmap;
122
[1512]123  ///Map of texts to write on nodes
124  Graph::NodeMap<Gnome::Canvas::Text *> nodetextmap;
125
[1442]126  ///Group of graphical elements of displayed_graph
127  Gnome::Canvas::Group displayed_graph;
128
129  ///Here we store the maps that can be displayed through properties.
130  MapStorage mapstorage;
131
132  ///Indicates whether the button of mouse is pressed or not
[1500]133  int isbutton;
[1442]134
[1501]135  ///Stores the actual tool in hand
136  int actual_tool;
137
[1442]138  ///At this location was the mousebutton pressed.
139  ///It helps to calculate the distance of dragging.
140  double clicked_x, clicked_y;
141
142  ///Remembers which Gnome::Canvas::Item was pressed.
143  ///this variable is needed, because
144  ///1. we cannot query the item at he cursor as fast as it could not cause a Segmentation Fault
145  ///2. we would like to handle only ony item per movement, therefore quering it is not a working solution
[1474]146  Gnome::Canvas::Item * active_item, * target_item;
[1468]147  Graph::NodeIt active_node;
[1474]148  Graph::EdgeIt active_edge;
[1442]149
150  static const int zoom_step = 5;
[1499]151
[1512]152  ///We need to store mapwin, to be able to ask the appropriate values for properties of new items.
153  MapWin * mapwin;
154
[1442]155};
156
157#endif //GRAPH_DISPLAYER_CANVAS_H
Note: See TracBrowser for help on using the repository browser.