#include #include BrokenEdge::BrokenEdge(Gnome::Canvas::Group & g, Gnome::Canvas::Points p, GraphDisplayerCanvas & gc) : Line(g), gdc(gc), isbutton(false) { my_points=new Gnome::Art::Point[3]; arrow=new Gnome::Canvas::Polygon(g); *arrow << Gnome::Canvas::Properties::fill_color("red"); arrow->signal_event().connect(sigc::mem_fun(*this, &BrokenEdge::edge_former_event_handler)); set_points(p); } BrokenEdge::~BrokenEdge() { if(arrow)delete(arrow); } void BrokenEdge::set_points(Gnome::Canvas::Points p, bool move) { bool set_arrow=false; if(!move) { if(p.size()==2) { set_arrow=true; Gnome::Canvas::Points points_with_center; points_with_center.push_back(my_points[0]=p[0]); 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 ); points_with_center.push_back(my_points[2]=p[1]); property_points().set_value(points_with_center); } if(p.size()==3) { set_arrow=true; property_points().set_value(p); for(int i=0;i<3;i++) { my_points[i]=p[i]; } } } else { if(p.size()==2) { Gnome::Canvas::Points points; my_points[0]=p[0]; my_points[2]=p[1]; for(int i=0;i<3;i++) { points.push_back(my_points[i]); } property_points().set_value(points); } } if(set_arrow) { //calculating coordinates of the direction indicator arrow xy target( my_points[2].get_x(), my_points[2].get_y() ); xy center( my_points[1].get_x(), my_points[1].get_y() ); xy unit_vector_in_dir(target-center); // std::cout << target << " - " << center << " = " << unit_vector_in_dir << " / " <property_points().set_value(arrow_points); } } bool BrokenEdge::edge_former_event_handler(GdkEvent* e) { switch(e->type) { case GDK_BUTTON_PRESS: //we mark the location of the event to be able to calculate parameters of dragging if(gdc.get_actual_tool()!=CREATE_NODE) { gdc.toggle_edge_activity(this, true); clicked_x=e->button.x; clicked_y=e->button.y; isbutton=true; } break; case GDK_BUTTON_RELEASE: if(gdc.get_actual_tool()!=CREATE_NODE) { gdc.toggle_edge_activity(this, false); isbutton=false; } break; case GDK_MOTION_NOTIFY: //we only have to do sg. if the mouse button is pressed if(isbutton) { //new coordinates will be the old values, //because the item will be moved to the //new coordinate therefore the new movement //has to be calculated from here double dx=e->motion.x-clicked_x; double dy=e->motion.y-clicked_y; Gnome::Canvas::Points points_new; points_new.push_back(my_points[0]); points_new.push_back(my_points[1]=Gnome::Art::Point(my_points[1].get_x()+dx,my_points[1].get_y()+dy)); points_new.push_back(my_points[2]); set_points(points_new); gdc.text_reposition(xy(my_points[1].get_x(),my_points[1].get_y())); clicked_x=e->motion.x; clicked_y=e->motion.y; } default: break; } return true; } xy BrokenEdge::get_arrow_pos() { xy ret_val(my_points[1].get_x(),my_points[1].get_y()); return ret_val; }