Changeset 1497:529e48eb9786 in lemon-0.x for gui
- Timestamp:
- 06/15/05 15:05:09 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1978
- Location:
- gui
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
gui/Makefile.am
r1468 r1497 16 16 map_win.h \ 17 17 edit_win.cc \ 18 edit_win.h 18 edit_win.h \ 19 broken_edge.cc \ 20 broken_edge.h 21 19 22 20 23 gd_CXXFLAGS = $(GTK_CFLAGS) -
gui/graph_displayer_canvas.cc
r1496 r1497 1 1 #include <graph_displayer_canvas.h> 2 #include <broken_edge.h> 2 3 #include <math.h> 3 4 … … 23 24 coos.push_back(Gnome::Art::Point(cm[g.target(i)].x,cm[g.target(i)].y)); 24 25 25 edgesmap[i]=new Gnome::Canvas::Line(displayed_graph, coos); 26 //edgesmap[i]=new Gnome::Canvas::Line(displayed_graph, coos); 27 edgesmap[i]=new BrokenEdge(displayed_graph, coos); 26 28 *(edgesmap[i]) << Gnome::Canvas::Properties::fill_color("green"); 27 29 edgesmap[i]->property_width_pixels().set_value(10);
Note: See TracChangeset
for help on using the changeset viewer.