COIN-OR::LEMON - Graph Library

source: glemon-0.x/graph_displayer_canvas-edge.cc @ 45:199f433eb7cd

gui
Last change on this file since 45:199f433eb7cd was 45:199f433eb7cd, checked in by Hegyi Péter, 19 years ago

Sorry for the previous commit, it was not ready yet, but that damned up arrow... So in this new revision string-double and double-string conversion is corrected to a more C++ way.

  • Property exe set to *
File size: 3.0 KB
RevLine 
[27]1#include <graph_displayer_canvas.h>
2#include <broken_edge.h>
3#include <math.h>
4
5
[28]6int GraphDisplayerCanvas::changeEdgeWidth (std::string mapname, Graph::Edge edge)
[27]7{
[31]8  Graph::EdgeMap<double> * actual_map;
9  if(mapname=="Default")
10    {
11      actual_map=new Graph::EdgeMap<double>(g,edge_property_defaults[E_WIDTH]);
12    }
13  else
14    {
15      actual_map=(mapstorage.edgemap_storage)[mapname];
16    }
17
[28]18  if(edge==INVALID)
[27]19    {
[28]20      for (EdgeIt i(g); i!=INVALID; ++i)
21        {
[31]22          int w=(int)(*actual_map)[i];
[28]23          if(w>=0)
24            {
25              edgesmap[i]->property_width_pixels().set_value(w);
26            }
27        }
28    }
29  else
30    {
[31]31      int w=(int)(*actual_map)[edge];
[27]32      if(w>=0)
33        {
[28]34          edgesmap[edge]->property_width_pixels().set_value(w);
[27]35        }
36    }
37  return 0;
38};
39
[28]40int GraphDisplayerCanvas::changeEdgeColor (std::string mapname, Graph::Edge edge)
[27]41
42
43  //function maps the range of the maximum and
44  //the minimum of the nodemap to the range of
45  //green in RGB
[31]46  Graph::EdgeMap<double> * actual_map;
47  if(mapname=="Default")
48    {
49      actual_map=new Graph::EdgeMap<double>(g,edge_property_defaults[E_COLOR]);
50    }
51  else
52    {
53      actual_map=(mapstorage.edgemap_storage)[mapname];
54    }
55
56  double max, min;
57
58  if(mapname!="Default")
59    {
60      max=mapstorage.maxOfEdgeMap(mapname);
61      min=mapstorage.minOfEdgeMap(mapname);
62    }
63  else
64    {
65      max=edge_property_defaults[E_COLOR];
66      min=edge_property_defaults[E_COLOR];
67    }
68
[28]69  if(edge==INVALID)
70    {
71      for (EdgeIt i(g); i!=INVALID; ++i)
72        {
[31]73          double w=(*actual_map)[i];
74
[28]75          Gdk::Color color;
76          if(max!=min)
77            {
78              color.set_rgb_p (0, 100*(w-min)/(max-min), 0);
79            }
80          else
81            {
82              color.set_rgb_p (0, 100, 0);
83            }
84          edgesmap[i]->property_fill_color_gdk().set_value(color);
85        }
86    }
87  else
[27]88    {
[28]89      Gdk::Color color;
[31]90
91      double w=(*actual_map)[edge];
92
[28]93      if(max!=min)
94        {
95          color.set_rgb_p (0, 100*(w-min)/(max-min), 0);
96        }
97      else
98        {
99          color.set_rgb_p (0, 100, 0);
100        }
101
102      edgesmap[edge]->property_fill_color_gdk().set_value(color);
[27]103    }
104  return 0;
105};
106
[28]107int GraphDisplayerCanvas::changeEdgeText (std::string mapname, Graph::Edge edge)
[27]108{
109  //the number in the map will be written on the edge
[40]110  //EXCEPT when the name of the map is Default, because
[27]111  //in that case empty string will be written, because
112  //that is the deleter map
113
[28]114  if(edge==INVALID)
[27]115    {
[28]116      for (EdgeIt i(g); i!=INVALID; ++i)
[27]117        {
[31]118          if(mapname!="Default")
[28]119            {
[35]120              edgemap_to_edit=mapname;
[28]121              double number=(*(mapstorage.edgemap_storage)[mapname])[i];
[44]122
123              std::ostringstream ostr;
124              ostr << number;
[45]125             
[44]126              edgetextmap[i]->property_text().set_value(ostr.str());
[28]127            }
128          else
129            {
[35]130              edgemap_to_edit="";
[28]131              edgetextmap[i]->property_text().set_value("");
132            }
133        }
134
135    }
136  else
137    {
[31]138      if(mapname!="Default")
[28]139        {
140          double number=(*(mapstorage.edgemap_storage)[mapname])[edge];
[45]141
142          std::ostringstream ostr;
143          ostr << number;
144         
145          edgetextmap[edge]->property_text().set_value(ostr.str());
[27]146        }
147      else
148        {
[28]149          edgetextmap[edge]->property_text().set_value("");
[27]150        }
[28]151         
[27]152    }
[28]153
[27]154  return 0;
[28]155
[27]156};
Note: See TracBrowser for help on using the repository browser.