COIN-OR::LEMON - Graph Library

source: glemon-0.x/graph_displayer_canvas.h @ 177:40f3006fba2e

Last change on this file since 177:40f3006fba2e was 177:40f3006fba2e, checked in by Hegyi Péter, 18 years ago

Redesign parameters can now be saved and loaded.

File size: 13.3 KB
RevLine 
[174]1/* -*- C++ -*-
2 *
3 * This file is a part of LEMON, a generic C++ optimization library
4 *
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
8 *
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
12 *
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
15 * purpose.
16 *
17 */
[6]18
19#ifndef GRAPH_DISPLAYER_CANVAS_H
20#define GRAPH_DISPLAYER_CANVAS_H
21
[21]22class GraphDisplayerCanvas;
23
[53]24#include "all_include.h"
[96]25#include "nbtab.h"
[6]26#include <libgnomecanvasmm.h>
27#include <libgnomecanvasmm/polygon.h>
[150]28#include <lemon/dim2.h>
[6]29
30///This class is the canvas, on which the graph can be drawn.
31class GraphDisplayerCanvas : public Gnome::Canvas::CanvasAA
32{
[98]33  friend class BrokenEdge;
[147]34  friend class LoopEdge;
35
36  class EdgeBase : public Gnome::Canvas::Group
37  {
38    protected:
39      ///Reference to the canvas, on which the graph is drawn.
40
41      ///It is needed, because some datas needed from
42      ///graph can be accessed by this or should be sent
43      ///as parameter, but it would be complicated
44      GraphDisplayerCanvas& canvas;
45
46      ///The edge that the class displays.
47
48      ///It is needed, because some datas needed from
49      ///graph can be accessed by this or should be sent
50      ///as parameter, but it would be complicated
51      Edge edge;
52
53      Gnome::Canvas::Polygon arrow;
54
55      void drawArrow(XY);
56    public:
57      EdgeBase(Gnome::Canvas::Group&, Edge, GraphDisplayerCanvas&);
58      virtual ~EdgeBase();
59      virtual void draw() = 0;
60      virtual void setLineWidth(int) = 0;
61      virtual void setFillColor(Gdk::Color) = 0;
[149]62      virtual Gnome::Canvas::Item * getLine() = 0;
[147]63  };
[98]64
[118]65  ///Edge displayer class
66
67  ///This class is responsible for displaying edges in graph.
68  ///The displayed edge is broken in the middle. The
69  ///aim of this is to be able to indicate direction of edges
70  ///and to be able to display more then one edges between the
71  ///same source and target
[147]72  class BrokenEdge : public EdgeBase
[89]73  {
[147]74    private:
75      Gnome::Canvas::Line line;
[118]76
[147]77      ///Indicates whether the button of mouse is pressed or not at the moment.
78      bool isbutton;
[118]79
[147]80      ///At this location was the mousebutton pressed. Horizontal component.
[118]81
[147]82      ///It helps to calculate the
83      ///distance of dragging.
84      double clicked_x;
[118]85
[147]86      ///At this location was the mousebutton pressed. Vertical component.
[118]87
[147]88      ///It helps to calculate the
89      ///distance of dragging.
90      double clicked_y;
[89]91
[147]92      ///event handler for forming broken edges
[89]93
[147]94      ///\param event the
95      ///event to handle
96      bool edgeFormerEventHandler(GdkEvent* event);
[89]97
[147]98    public:
99      ///Constructor of broken edge class.
[118]100
[147]101      ///\param g the group to which the edge belongs
102      ///\param _edge the represented edge
103      ///\param gc the canvas
104      BrokenEdge(Gnome::Canvas::Group&, Edge, GraphDisplayerCanvas&);
[118]105
[147]106      ///Destructor of broken edge class
[118]107
[147]108      ///Frees up
109      ///reserved memory
110      ~BrokenEdge();
[118]111
[147]112      ///The function that draws the edge based on collected data
113      void draw();
[118]114
[147]115      void setLineWidth(int);
116      void setFillColor(Gdk::Color);
[149]117
118      Gnome::Canvas::Item * getLine() { return (Gnome::Canvas::Item *)(&line); };
[147]119  };
[118]120
[147]121  class LoopEdge : public EdgeBase
122  {
123    private:
124      Gnome::Canvas::Ellipse line;
[151]125      bool edgeFormerEventHandler(GdkEvent* e);
126      bool isbutton;
[147]127    public:
128      LoopEdge(Gnome::Canvas::Group&, Edge, GraphDisplayerCanvas&);
129      ~LoopEdge();
130      void draw();
131      void setLineWidth(int);
132      void setFillColor(Gdk::Color);
[149]133      Gnome::Canvas::Item * getLine() { return (Gnome::Canvas::Item *)(&line); };
[89]134  };
[118]135
136  ///Type of canvas, on which the graph is drawn
[6]137  typedef Gnome::Canvas::CanvasAA Parent;
138
139public:
[118]140  ///Constructor
141
142  ///\param nbt the tab of the window, in which the graph is displayed
143  GraphDisplayerCanvas(NoteBookTab & nbt);
144
145  ///destructor of the class
[6]146  virtual ~GraphDisplayerCanvas();
147
[118]148  ///Changes the width of edge(s) according to the given map.
149
150  ///\param mapname is the name of the map which contains the values to be set
151  ///\param edge if it is given, only the width of the given edge will be set, instead of all of them.
152  int changeEdgeWidth (std::string mapname, Edge edge=INVALID);
153
154  ///Resets width of edge(s) to the default value
155
156  ///\param edge if it is given, only the width of the
157  ///given edge will be reset, instead of all of them.
158  int resetEdgeWidth (Edge edge=INVALID);
159
160  ///Changes the color of edge(s) according to the given map.
161
[6]162  ///\param mapname is the name of the map which contains the new values
[118]163  ///\param edge if it is given, only the color of the given edge will be set, instead of all of them.
164  int changeEdgeColor (std::string mapname, Edge edge=INVALID);
[6]165
[118]166  ///Resets color of edge(s) to the default value
167
168  ///\param edge if it is given, only the color of the
169  ///given edge will be reset, instead of all of them.
170  int resetEdgeColor (Edge edge=INVALID);
171
172  ///Changes the label of edge(s) according to the given map.
173
[6]174  ///\param mapname is the name of the map which contains the new values
[118]175  ///\param edge if it is given, only the label of the given edge will be set, instead of all of them.
176  int changeEdgeText (std::string mapname, Edge edge=INVALID);
[6]177
[118]178  ///Resets label of edge(s) to the default value
179
180  ///\param edge if it is given, only the color of the
181  ///given edge will be reset, instead of all of them.
182  int resetEdgeText (Edge edge=INVALID);
183
184  ///Changes the radius of node(s) according to the given map.
185
[6]186  ///\param mapname is the name of the map which contains the new values
[118]187  ///\param node if it is given, only the radius of the given node will be set, instead of all of them.
188  int changeNodeRadius (std::string mapname, Node node=INVALID);
[28]189
[118]190  ///Resets radius of node(s) to the default value
191
192  ///\param node if it is given, only the radius of the
193  ///given node will be reset, instead of all of them.
194  int resetNodeRadius (Node node=INVALID);
195
196  ///Changes the color of node(s) according to the given map.
197
[28]198  ///\param mapname is the name of the map which contains the new values
[118]199  ///\param node if it is given, only the color of the given node will be set, instead of all of them.
200  int changeNodeColor (std::string mapname, Node node=INVALID);
[28]201
[118]202  ///Resets color of node(s) to the default value
203
204  ///\param node if it is given, only the color of the
205  ///given node will be reset, instead of all of them.
206  int resetNodeColor (Node node=INVALID);
207
208  ///Changes the label of node(s) according to the given map.
209
[28]210  ///\param mapname is the name of the map which contains the new values
[118]211  ///\param node if it is given, only the label of the given node will be set, instead of all of them.
212  int changeNodeText (std::string mapname, Node node=INVALID);
[28]213
[118]214  ///Resets label of node(s) to the default value
[6]215
[118]216  ///\param node if it is given, only the label of the
217  ///given node will be reset, instead of all of them.
218  int resetNodeText (Node node=INVALID);
[94]219
[118]220  ///This function is called, when any of the displayed attributes have to be updated, or changed
221
222  ///\param itisedge if true, edge property has to be changed, else node property
223  ///\param prop the id of property that has to changed or updated
224  void propertyChange(bool itisedge, int prop);
225
226  ///updates the given property
227
228  ///\param edge if it is not INVALID, only the property of the given edge will be updated, instead of all of them
229  ///\param prop the property to update
230  void propertyUpdate(Edge edge, int prop);
231
232  ///updates the given property
233
234  ///\param node if it is not INVALID, only the property of the given node will be updated, instead of all of them
235  ///\param prop the property to update
236  void propertyUpdate(Node node, int prop);
237
238  ///updates all the property for the given edge
[94]239  void propertyUpdate(Edge);
[118]240
241  ///updates all the property for the given node
[94]242  void propertyUpdate(Node);
243
[6]244  ///Callback for 'ViewZoomIn' action.
245  virtual void zoomIn();
246  ///Callback for 'ViewZoomOut' action.
247  virtual void zoomOut();
248  ///Callback for 'ViewZoomFit' action.
249  virtual void zoomFit();
250  ///Callback for 'ViewZoom100' action.
251  virtual void zoom100();
252  ///Sets the scroll region of the convas to the bounding box of the graph.
253  void updateScrollRegion();
254
[9]255  ///This function changes the tool in the graph-editor's hand
256  void changeEditorialTool(int);
257
[6]258protected:
259
[118]260  //maximizing, minimizing, restoring window, etc.
[6]261  virtual bool on_expose_event(GdkEventExpose *);
262
263private:
264
265  ///This function is responsible for the correct
266  ///reaction of any action happened in the territory
267  ///of the canvas
[25]268  ///DEPRECATED!!!!
[30]269  bool eventHandler(GdkEvent* e, Node n);
[6]270
[9]271  ///actual event handler
272  ///
273  ///Actual event handler should be stored, to be able to disconnect it and later reconnect it.
274  sigc::connection actual_handler;
275
276  ///event handler for the case when move-tool is active
[30]277  bool moveEventHandler(GdkEvent*);
[9]278  ///event handler for the case when create_node-tool is active
[30]279  bool createNodeEventHandler(GdkEvent*);
[9]280  ///event handler for the case when create_edge-tool is active
[30]281  bool createEdgeEventHandler(GdkEvent*);
[13]282  ///event handler for the case when eraser-tool is active
[30]283  bool eraserEventHandler(GdkEvent*);
[149]284  ///event handler for the case when map editor tool is active
285  bool mapEditEventHandler(GdkEvent*);
[13]286
[160]287private:
288  ///moves node according to the given parameters
289  void moveNode(double, double,  Gnome::Canvas::Item * item=NULL, Node node=INVALID);
290
[21]291public:
[25]292  ///Moves the text to new place
[150]293  void textReposition(XY);
[118]294
[147]295  ///Activates an edge belonging to an EdgeBase
[118]296
[35]297  ///After we have activated an edge this way,
298  ///the GDC object will know, which edge is under forming
[118]299  ///therefore it can redraw the necessary elements on the canvas,
[147]300  ///for example the text belonging to the \ref EdgeBase can be
[35]301  ///redrawn (\ref textReposition).
[147]302  void toggleEdgeActivity(EdgeBase*, bool);
[25]303
304public:
[118]305
306  ///Returns the actual tool in hand
[30]307  int getActualTool();
[21]308
[154]309  ///Sets node representation settings
[157]310  void setView(bool, bool, double, double);
[154]311
312  ///Gets node representation settings
[157]313  void getView(bool &, bool &, double&, double&);
[154]314
[118]315  ///draws the graph
316
317  ///Called when opening a file.
[53]318  void drawGraph();
[118]319
320  ///Clears the canvas
321
322  ///It achieves this by deleting all data
323  ///structure used to help handle the displayed graph.
[53]324  void clear();
325
[37]326  ///creates a new Nodemap
[118]327
328  ///\param init initial value of the map
329  ///\param mapname name of new map
330  int addNewNodeMap(double init,std::string mapname);
[37]331  ///creates a new Edgemap
[118]332
333  ///\param init initial value of the map
334  ///\param mapname name of new map
335  int addNewEdgeMap(double init,std::string mapname);
[37]336
[160]337  void reDesignGraph();
338
[172]339  ///Show whether the graph is already drawn.
340  bool is_drawn;
341
[21]342private:
[14]343  ///Deletes the given element.
[62]344  void deleteItem(Node);
[14]345  ///Deletes the given element.
[62]346  void deleteItem(Edge);
[9]347
[21]348private:
349
[6]350  ///Map of nodes of graph
351  Graph::NodeMap<Gnome::Canvas::Ellipse *> nodesmap;
352
353  ///Map of edges of graph
[147]354  Graph::EdgeMap<EdgeBase*> edgesmap;
[6]355
356  ///Map of texts to write on edges
357  Graph::EdgeMap<Gnome::Canvas::Text *> edgetextmap;
358
[28]359  ///Map of texts to write on nodes
360  Graph::NodeMap<Gnome::Canvas::Text *> nodetextmap;
361
[6]362  ///Group of graphical elements of displayed_graph
363  Gnome::Canvas::Group displayed_graph;
364
[88]365private:
[6]366  ///Indicates whether the button of mouse is pressed or not
[20]367  int isbutton;
[6]368
[21]369  ///Stores the actual tool in hand
370  int actual_tool;
371
[6]372  ///At this location was the mousebutton pressed.
373  ///It helps to calculate the distance of dragging.
374  double clicked_x, clicked_y;
375
376  ///Remembers which Gnome::Canvas::Item was pressed.
[118]377
378  ///this variable is needed, to work on it after selection
379  Gnome::Canvas::Item * active_item;
380
381  ///Remembers which Gnome::Canvas::Item was pressed.
382
383  ///this variable is used at edge creation, it will
384  ///be the secondly selected node. No local variable
385  ///can be used for this purpose inside the function,
386  ///because the node selected by button press, and
387  ///the edge is created by button release. Both of
388  ///them is different function call.
389  Gnome::Canvas::Item * target_item;
390
391  ///selected node (for any editing)
[62]392  Node active_node;
[118]393
394  ///selected edge (for any editing)
[62]395  Edge active_edge;
[118]396
397  ///the edge that is selected by clicking on the red arrow in the middle of it
398
399  ///This edge is stored only for the purpose of reshape it.
400  ///That is why it is selected in a different manner.
[62]401  Edge forming_edge;
[35]402
[118]403  ///Map displayed by label can be edited.
404  std::string nodemap_to_edit;
405
406  ///Map displayed by label can be edited.
407  std::string edgemap_to_edit;
[6]408
409  static const int zoom_step = 5;
[19]410
[154]411  ///Is node radius autoscaled
412  bool autoscale;
413 
[156]414  ///Should we track zoomfactor changes
415  bool zoomtrack;
416
417  ///to store the zoom factor when it was "fixed"
418  double fixed_zoom_factor;
419 
[157]420  ///Node radius size
421  double radius_size;
[154]422
[157]423  ///Edge width
424  double edge_width;
[154]425
[166]426  ///Was redesign run on this graph already?
427  ///
428  ///If not, the layout will be modified randomly
429  ///to avoid frozen layout because of wrong
430  ///initial state
431  bool was_redesigned;
[160]432 
[88]433private:
434
[118]435  ///reference to the container, in which the canvas is
[96]436  NoteBookTab & mytab;
[55]437
[148]438  XY calcArrowPos(XY, XY, XY, XY, int);
[6]439};
440
441#endif //GRAPH_DISPLAYER_CANVAS_H
Note: See TracBrowser for help on using the repository browser.