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