Very small bug is corrected: if node creator tool is active, the small red arrows won't move, if you click on them and if you drag the newly created node... 'was hard to notice it :-)
1 #include <broken_edge.h>
5 BrokenEdge::BrokenEdge(Gnome::Canvas::Group & g, Gnome::Canvas::Points p, GraphDisplayerCanvas & gc) : Line(g), gdc(gc), isbutton(false)
7 my_points=new Gnome::Art::Point[3];
9 arrow=new Gnome::Canvas::Polygon(g);
10 *arrow << Gnome::Canvas::Properties::fill_color("red");
11 arrow->signal_event().connect(sigc::mem_fun(*this, &BrokenEdge::edge_former_event_handler));
15 BrokenEdge::~BrokenEdge()
17 if(arrow)delete(arrow);
20 void BrokenEdge::set_points(Gnome::Canvas::Points p, bool move)
28 Gnome::Canvas::Points points_with_center;
29 points_with_center.push_back(my_points[0]=p[0]);
30 points_with_center.push_back(my_points[1]=Gnome::Art::Point( (p[0].get_x()+p[1].get_x())/2+0 , (p[0].get_y()+p[1].get_y())/2 )+0 );
31 points_with_center.push_back(my_points[2]=p[1]);
32 property_points().set_value(points_with_center);
37 property_points().set_value(p);
48 Gnome::Canvas::Points points;
53 points.push_back(my_points[i]);
55 property_points().set_value(points);
61 //calculating coordinates of the direction indicator arrow
63 xy<gdouble> target( my_points[2].get_x(), my_points[2].get_y() );
64 xy<gdouble> center( my_points[1].get_x(), my_points[1].get_y() );
66 xy<gdouble> unit_vector_in_dir(target-center);
67 // std::cout << target << " - " << center << " = " << unit_vector_in_dir << " / " <<unit_vector_in_dir.normSquare() ;
68 unit_vector_in_dir/=sqrt( unit_vector_in_dir.normSquare() );
69 // std::cout << " = " << unit_vector_in_dir << std::endl;
71 xy<gdouble> unit_norm_vector(0-unit_vector_in_dir.y, unit_vector_in_dir.x);
72 // std::cout << unit_norm_vector << std::endl;
77 // - - c(enter)l(eft), ccl, ccr, cr
84 xy<gdouble> bl (center - unit_vector_in_dir * 3 * size + unit_norm_vector * size );
85 xy<gdouble> br (center - unit_vector_in_dir * 3 * size - unit_norm_vector * size );
86 xy<gdouble> ccl(center + unit_vector_in_dir * size + unit_norm_vector * size );
87 xy<gdouble> ccr(center + unit_vector_in_dir * size - unit_norm_vector * size );
88 xy<gdouble> cl (center + unit_vector_in_dir * size + unit_norm_vector * 2 * size );
89 xy<gdouble> cr (center + unit_vector_in_dir * size - unit_norm_vector * 2 * size );
90 xy<gdouble> top(center + unit_vector_in_dir * 3 * size);
92 // std::cout << bl << " " << br << " " << ccl << " " << ccr << " " << cl << " " << cr << " " << top << std::endl;
94 Gnome::Canvas::Points arrow_points;
95 arrow_points.push_back(Gnome::Art::Point( bl.x , bl.y ) );
96 arrow_points.push_back(Gnome::Art::Point( br.x , br.y ) );
97 arrow_points.push_back(Gnome::Art::Point( ccr.x, ccr.y ) );
98 arrow_points.push_back(Gnome::Art::Point( cr.x , cr.y ) );
99 arrow_points.push_back(Gnome::Art::Point( top.x, top.y ) );
100 arrow_points.push_back(Gnome::Art::Point( cl.x , cl.y ) );
101 arrow_points.push_back(Gnome::Art::Point( ccl.x, ccl.y ) );
103 arrow->property_points().set_value(arrow_points);
107 bool BrokenEdge::edge_former_event_handler(GdkEvent* e)
111 case GDK_BUTTON_PRESS:
112 //we mark the location of the event to be able to calculate parameters of dragging
113 if(gdc.get_actual_tool()!=CREATE_NODE)
115 clicked_x=e->button.x;
116 clicked_y=e->button.y;
120 case GDK_BUTTON_RELEASE:
123 case GDK_MOTION_NOTIFY:
124 //we only have to do sg. if the mouse button is pressed
127 //new coordinates will be the old values,
128 //because the item will be moved to the
129 //new coordinate therefore the new movement
130 //has to be calculated from here
132 double dx=e->motion.x-clicked_x;
133 double dy=e->motion.y-clicked_y;
135 Gnome::Canvas::Points points_new;
137 points_new.push_back(my_points[0]);
138 points_new.push_back(my_points[1]=Gnome::Art::Point(my_points[1].get_x()+dx,my_points[1].get_y()+dy));
139 points_new.push_back(my_points[2]);
141 set_points(points_new);
143 clicked_x=e->motion.x;
144 clicked_y=e->motion.y;