cout->cerr, node radius and edge width is now scaled, maps are editable by clicking on texts.
1 #include <graph_displayer_canvas.h>
2 #include <broken_edge.h>
6 bool GraphDisplayerCanvas::on_expose_event(GdkEventExpose *event)
8 Gnome::Canvas::CanvasAA::on_expose_event(event);
14 void GraphDisplayerCanvas::changeEditorialTool(int newtool)
16 if(actual_tool!=newtool)
19 actual_handler.disconnect();
25 GdkEvent * generated=new GdkEvent();
26 generated->type=GDK_BUTTON_RELEASE;
27 generated->button.button=3;
28 createEdgeEventHandler(generated);
32 //has to do the same thing as in the case of NODE_MAP_EDIT
35 GdkEvent * generated=new GdkEvent();
36 generated->type=GDK_KEY_PRESS;
37 ((GdkEventKey*)generated)->keyval=GDK_KP_Enter;
38 entryWidgetChangeHandler(generated);
57 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::moveEventHandler), false);
61 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::createNodeEventHandler), false);
65 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::createEdgeEventHandler), false);
69 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::eraserEventHandler), false);
74 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::edgeMapEditEventHandler), false);
78 actual_handler=signal_event().connect(sigc::mem_fun(*this, &GraphDisplayerCanvas::nodeMapEditEventHandler), false);
87 int GraphDisplayerCanvas::getActualTool()
92 bool GraphDisplayerCanvas::moveEventHandler(GdkEvent* e)
96 case GDK_BUTTON_PRESS:
97 //we mark the location of the event to be able to calculate parameters of dragging
98 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
100 active_item=(get_item_at(clicked_x, clicked_y));
102 for (NodeIt i(g); i!=INVALID; ++i)
104 if(nodesmap[i]==active_item)
109 switch(e->button.button)
119 case GDK_BUTTON_RELEASE:
124 case GDK_MOTION_NOTIFY:
125 //we only have to do sg. if the mouse button is pressed AND the click was on a node that was found in the set of nodes
126 if(active_node!=INVALID)
128 //new coordinates will be the old values,
129 //because the item will be moved to the
130 //new coordinate therefore the new movement
131 //has to be calculated from here
135 window_to_world (e->motion.x, e->motion.y, new_x, new_y);
137 double dx=new_x-clicked_x;
138 double dy=new_y-clicked_y;
140 //repositioning node and its text
141 active_item->move(dx, dy);
142 nodetextmap[active_node]->move(dx, dy);
147 //all the edges connected to the moved point has to be redrawn
150 g.firstOut(ei,active_node);
152 for(;ei!=INVALID;g.nextOut(ei))
154 Gnome::Canvas::Points coos;
155 double x1, x2, y1, y2;
157 nodesmap[g.source(ei)]->get_bounds(x1, y1, x2, y2);
158 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
160 nodesmap[g.target(ei)]->get_bounds(x1, y1, x2, y2);
161 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
165 edgesmap[ei]->setPoints(coos);
169 edgesmap[ei]->setPoints(coos,true);
172 //reposition of edgetext
173 xy<double> text_pos=edgesmap[ei]->getArrowPos();
174 text_pos+=(xy<double>(10,10));
175 edgetextmap[ei]->property_x().set_value(text_pos.x);
176 edgetextmap[ei]->property_y().set_value(text_pos.y);
179 g.firstIn(ei,active_node);
180 for(;ei!=INVALID;g.nextIn(ei))
182 Gnome::Canvas::Points coos;
183 double x1, x2, y1, y2;
185 nodesmap[g.source(ei)]->get_bounds(x1, y1, x2, y2);
186 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
188 nodesmap[g.target(ei)]->get_bounds(x1, y1, x2, y2);
189 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
193 edgesmap[ei]->setPoints(coos);
197 edgesmap[ei]->setPoints(coos,true);
200 xy<double> text_pos=edgesmap[ei]->getArrowPos();
201 text_pos+=(xy<double>(10,10));
202 edgetextmap[ei]->property_x().set_value(text_pos.x);
203 edgetextmap[ei]->property_y().set_value(text_pos.y);
212 bool GraphDisplayerCanvas::createNodeEventHandler(GdkEvent* e)
217 //draw the new node in red at the clicked place
218 case GDK_2BUTTON_PRESS:
219 //std::cout << "double click" << std::endl;
221 case GDK_BUTTON_PRESS:
224 active_node=NodeIt(g,g.addNode());
226 //initiating values corresponding to new node in maps
228 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
230 nodesmap[active_node]=new Gnome::Canvas::Ellipse(displayed_graph, clicked_x-20, clicked_y-20, clicked_x+20, clicked_y+20);
231 active_item=(Gnome::Canvas::Item *)(nodesmap[active_node]);
232 *(nodesmap[active_node]) << Gnome::Canvas::Properties::fill_color("red");
233 *(nodesmap[active_node]) << Gnome::Canvas::Properties::outline_color("black");
234 (nodesmap[active_node])->show();
236 nodetextmap[active_node]=new Gnome::Canvas::Text(displayed_graph, clicked_x+node_property_defaults[N_RADIUS]+5, clicked_y+node_property_defaults[N_RADIUS]+5, "");
237 nodetextmap[active_node]->property_fill_color().set_value("darkblue");
239 mapwin->updateNode(active_node);
244 case GDK_MOTION_NOTIFY:
246 GdkEvent * generated=new GdkEvent();
247 generated->motion.x=e->motion.x;
248 generated->motion.y=e->motion.y;
249 generated->type=GDK_MOTION_NOTIFY;
250 moveEventHandler(generated);
254 //finalize the new node
255 case GDK_BUTTON_RELEASE:
256 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
258 active_item->lower_to_bottom();
261 target_item=get_item_at(clicked_x, clicked_y);
263 active_item->raise_to_top();
266 if(target_item==active_item)
268 //Its appropriate color is given by update.
269 *active_item << Gnome::Canvas::Properties::fill_color("blue");
273 //In this case the given color has to be overwritten, because the noe covers an other item.
274 *active_item << Gnome::Canvas::Properties::fill_color("lightblue");
286 bool GraphDisplayerCanvas::createEdgeEventHandler(GdkEvent* e)
290 case GDK_BUTTON_PRESS:
291 //in edge creation right button has special meaning
292 if(e->button.button!=3)
294 //there is not yet selected node
295 if(active_node==INVALID)
297 //we mark the location of the event to be able to calculate parameters of dragging
299 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
301 active_item=(get_item_at(clicked_x, clicked_y));
303 for (NodeIt i(g); i!=INVALID; ++i)
305 if(nodesmap[i]==active_item)
310 //the clicked item is really a node
311 if(active_node!=INVALID)
313 *(nodesmap[active_node]) << Gnome::Canvas::Properties::fill_color("red");
316 //clicked item was not a node. It could be e.g. edge.
322 //we only have to do sg. if the mouse button
323 // is pressed already once AND the click was
324 // on a node that was found in the set of
325 //nodes, and now we only search for the second
329 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
330 target_item=(get_item_at(clicked_x, clicked_y));
331 Graph::NodeIt target_node=INVALID;
332 for (NodeIt i(g); i!=INVALID; ++i)
334 if(nodesmap[i]==target_item)
339 //the clicked item is a node, the edge can be drawn
340 if(target_node!=INVALID)
342 if(target_node!=active_node)
344 *(nodesmap[target_node]) << Gnome::Canvas::Properties::fill_color("red");
347 active_edge=EdgeIt(g,g.addEdge(active_node, target_node));
349 //initiating values corresponding to new edge in maps
350 mapstorage.initMapsForEdge(active_edge);
352 //calculating coordinates of new edge
353 Gnome::Canvas::Points coos;
354 double x1, x2, y1, y2;
356 active_item->get_bounds(x1, y1, x2, y2);
357 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
359 target_item->get_bounds(x1, y1, x2, y2);
360 coos.push_back(Gnome::Art::Point((x1+x2)/2,(y1+y2)/2));
363 edgesmap[active_edge]=new BrokenEdge(displayed_graph, coos, *this);
364 *(edgesmap[active_edge]) << Gnome::Canvas::Properties::fill_color("green");
365 edgesmap[active_edge]->property_width_pixels().set_value(10);
367 //redraw nodes to blank terminations of the new edge
368 target_item->raise_to_top();
369 active_item->raise_to_top();
371 //initializing edge-text as well, to empty string
372 xy<double> text_pos=edgesmap[active_edge]->getArrowPos();
373 text_pos+=(xy<double>(10,10));
375 edgetextmap[active_edge]=new Gnome::Canvas::Text(displayed_graph, text_pos.x, text_pos.y, "");
376 edgetextmap[active_edge]->property_fill_color().set_value("darkgreen");
378 //updating its properties
379 mapwin->updateEdge(active_edge);
384 std::cerr << "Loop edge is not yet implemented!" << std::endl;
387 //clicked item was not a node. it could be an e.g. edge. we do not deal with it furthermore.
395 case GDK_BUTTON_RELEASE:
397 //we clear settings in two cases
398 //1: the edge is ready (target_item has valid value)
399 //2: the edge creation is cancelled with right button
400 if((target_item)||(e->button.button==3))
404 *active_item << Gnome::Canvas::Properties::fill_color("blue");
409 *target_item << Gnome::Canvas::Properties::fill_color("blue");
422 bool GraphDisplayerCanvas::eraserEventHandler(GdkEvent* e)
426 case GDK_BUTTON_PRESS:
427 //finding the clicked items
428 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
429 active_item=(get_item_at(clicked_x, clicked_y));
434 for (NodeIt i(g); i!=INVALID; ++i)
436 if(nodesmap[i]==active_item)
442 if(active_node==INVALID)
444 for (EdgeIt i(g); i!=INVALID; ++i)
446 if(edgesmap[i]==active_item)
453 //recolor activated item
456 *active_item << Gnome::Canvas::Properties::fill_color("red");
460 case GDK_BUTTON_RELEASE:
461 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
464 //the cursor was not moved since pressing it
465 if( active_item == ( get_item_at (clicked_x, clicked_y) ) )
468 if(active_node!=INVALID)
471 //collecting edges to delete
473 std::set<Graph::Edge> edges_to_delete;
475 g.firstOut(e,active_node);
476 for(;e!=INVALID;g.nextOut(e))
478 edges_to_delete.insert(e);
481 g.firstIn(e,active_node);
482 for(;e!=INVALID;g.nextIn(e))
484 edges_to_delete.insert(e);
487 //deleting collected edges
488 for(std::set<Graph::Edge>::iterator edge_set_it=edges_to_delete.begin();edge_set_it!=edges_to_delete.end();edge_set_it++)
490 deleteItem(*edge_set_it);
492 deleteItem(active_node);
494 //a simple edge was chosen
497 deleteItem(active_edge);
500 //pointer was moved, deletion is cancelled
503 if(active_node!=INVALID)
505 *active_item << Gnome::Canvas::Properties::fill_color("blue");
509 *active_item << Gnome::Canvas::Properties::fill_color("green");
519 case GDK_MOTION_NOTIFY:
528 bool GraphDisplayerCanvas::edgeMapEditEventHandler(GdkEvent* e)
530 if(actual_tool==EDGE_MAP_EDIT)
535 //for Escape or Enter hide the displayed widget
537 nodeMapEditEventHandler(e);
540 case GDK_BUTTON_PRESS:
541 //If the click happened on an edge we place the entrywidget there and fill in the value of the activated map at that edge.
543 //for determine, whether it was an edge
544 Graph::EdgeIt clicked_edge=INVALID;
546 //find the activated item between texts
547 active_item=(get_item_at(e->button.x, e->button.y));
548 for (EdgeIt i(g); i!=INVALID; ++i)
550 if(edgetextmap[i]==active_item)
556 //if it was not between texts, search for it between edges
557 if(clicked_edge==INVALID)
559 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
560 active_item=(get_item_at(clicked_x, clicked_y));
562 for (EdgeIt i(g); i!=INVALID; ++i)
564 //at the same time only one can be active
565 if((edgesmap[i]==active_item)||(edgetextmap[i]==active_item))
571 //if it was really an edge...
572 if(clicked_edge!=INVALID)
574 //If there is already edited edge, it has to be saved first
575 if(entrywidget.is_visible())
577 GdkEvent * generated=new GdkEvent();
578 generated->type=GDK_KEY_PRESS;
579 ((GdkEventKey*)generated)->keyval=GDK_KP_Enter;
580 entryWidgetChangeHandler(generated);
582 //If the previous value could be saved, we can go further, otherwise not
583 if(!entrywidget.is_visible())
585 //and there is activated map
586 if(edgetextmap[clicked_edge]->property_text().get_value()!="")
588 //activate the general variable for it
589 active_edge=clicked_edge;
590 //delete visible widget if there is
591 if(canvasentrywidget)
593 delete(canvasentrywidget);
596 //initialize the entry
599 //fill in the correct value
600 entrywidget.set_text(edgetextmap[active_edge]->property_text().get_value());
602 //replace and resize the entry to the activated edge and put it in a Canvas::Widget to be able to display it on gdc
603 xy<double> entry_coos;
604 entry_coos.x=(edgetextmap[active_edge])->property_x().get_value();
605 entry_coos.x-=edgetextmap[active_edge]->property_text_width().get_value()/2;
606 entry_coos.y=(edgetextmap[active_edge])->property_y().get_value();
607 entry_coos.y-=edgetextmap[active_edge]->property_text_height().get_value()*1.5/2;
608 canvasentrywidget=new Gnome::Canvas::Widget(displayed_graph, entry_coos.x, entry_coos.y, entrywidget);
609 canvasentrywidget->property_width().set_value(edgetextmap[active_edge]->property_text_width().get_value()*4);
610 canvasentrywidget->property_height().set_value(edgetextmap[active_edge]->property_text_height().get_value()*1.5);
614 //if it was not an edge...
617 //In this case the click did not happen on an edge
618 //if there is visible entry we save the value in it
619 //we pretend like an Enter was presse din the Entry widget
620 GdkEvent * generated=new GdkEvent();
621 generated->type=GDK_KEY_PRESS;
622 ((GdkEventKey*)generated)->keyval=GDK_KP_Enter;
623 entryWidgetChangeHandler(generated);
634 bool GraphDisplayerCanvas::nodeMapEditEventHandler(GdkEvent* e)
636 if(actual_tool==NODE_MAP_EDIT)
641 //for Escape or Enter hide the displayed widget
643 switch(((GdkEventKey*)e)->keyval)
658 case GDK_BUTTON_PRESS:
659 //If the click happened on an edge we place the entrywidget there and fill in the value of the activated map at that edge.
661 //for determine, whether it was a node
662 Graph::NodeIt clicked_node=INVALID;
664 //find the activated item between texts
665 active_item=(get_item_at(e->button.x, e->button.y));
666 for (NodeIt i(g); i!=INVALID; ++i)
668 //at the same time only one can be active
669 if(nodetextmap[i]==active_item)
675 //if there was not, search for it between nodes
676 if(clicked_node==INVALID)
678 window_to_world (e->button.x, e->button.y, clicked_x, clicked_y);
679 active_item=(get_item_at(clicked_x, clicked_y));
681 for (NodeIt i(g); i!=INVALID; ++i)
683 //at the same time only one can be active
684 if(nodesmap[i]==active_item)
690 //if it was really an edge...
691 if(clicked_node!=INVALID)
693 //If there is already edited edge, it has to be saved first
694 if(entrywidget.is_visible())
696 GdkEvent * generated=new GdkEvent();
697 generated->type=GDK_KEY_PRESS;
698 ((GdkEventKey*)generated)->keyval=GDK_KP_Enter;
699 entryWidgetChangeHandler(generated);
701 //If the previous value could be saved, we can go further, otherwise not
702 if(!entrywidget.is_visible())
704 //and there is activated map
705 if(nodetextmap[clicked_node]->property_text().get_value()!="")
707 //activate the general variable for it
708 active_node=clicked_node;
709 //delete visible widget if there is
710 if(canvasentrywidget)
712 delete(canvasentrywidget);
715 //initialize the entry
718 //fill in the correct value
719 entrywidget.set_text(nodetextmap[active_node]->property_text().get_value());
721 //replace and resize the entry to the activated node and put it in a Canvas::Widget to be able to display it on gdc
722 xy<double> entry_coos;
723 entry_coos.x=(nodetextmap[active_node])->property_x().get_value();
724 entry_coos.x-=nodetextmap[active_node]->property_text_width().get_value()/2;
725 entry_coos.y=(nodetextmap[active_node])->property_y().get_value();
726 entry_coos.y-=nodetextmap[active_node]->property_text_height().get_value()*1.5/2;
727 canvasentrywidget=new Gnome::Canvas::Widget(displayed_graph, entry_coos.x, entry_coos.y, entrywidget);
728 canvasentrywidget->property_width().set_value(nodetextmap[active_node]->property_text_width().get_value()*4);
729 canvasentrywidget->property_height().set_value(nodetextmap[active_node]->property_text_height().get_value()*1.5);
733 //if it was not an edge...
736 //In this case the click did not happen on an edge
737 //if there is visible entry we save the value in it
738 //we pretend like an Enter was presse din the Entry widget
739 GdkEvent * generated=new GdkEvent();
740 generated->type=GDK_KEY_PRESS;
741 ((GdkEventKey*)generated)->keyval=GDK_KP_Enter;
742 entryWidgetChangeHandler(generated);
753 bool GraphDisplayerCanvas::entryWidgetChangeHandler(GdkEvent* e)
755 if(entrywidget.is_visible())
757 if(e->type==GDK_KEY_PRESS)
759 switch(((GdkEventKey*)e)->keyval)
767 //these variables check whether the text in the entry is valid
768 bool valid_double=true;
771 //getting the value from the entry and converting it to double
772 Glib::ustring mapvalue_str = entrywidget.get_text();
774 char * mapvalue_ch=new char [mapvalue_str.length()];
775 for(int i=0;i<(int)(mapvalue_str.length());i++)
777 if(((mapvalue_str[i]<'0')||(mapvalue_str[i]>'9'))&&(mapvalue_str[i]!='.'))
783 if(mapvalue_str[i]=='.')
788 mapvalue_ch[i]=mapvalue_str[i];
791 //if the text in the entry was correct
792 if((point_num<=1)&&(valid_double))
794 double mapvalue_d=atof(mapvalue_ch);
796 //reconvert the double to string for the correct format
797 std::ostringstream ostr;
800 //save the value to the correct place
804 edgetextmap[active_edge]->property_text().set_value(ostr.str());
805 (*(mapstorage.edgemap_storage)[edgemap_to_edit])[active_edge]=mapvalue_d;
806 mapwin->updateEdge(active_edge);
809 nodetextmap[active_node]->property_text().set_value(ostr.str());
810 (*(mapstorage.nodemap_storage)[nodemap_to_edit])[active_node]=mapvalue_d;
811 mapwin->updateNode(active_node);
818 //the text in the entry was not correct for a double
821 std::cerr << "ERROR: only handling of double values is implemented yet!" << std::endl;
834 void GraphDisplayerCanvas::deleteItem(NodeIt node_to_delete)
836 delete(nodetextmap[node_to_delete]);
837 delete(nodesmap[node_to_delete]);
838 g.erase(node_to_delete);
841 void GraphDisplayerCanvas::deleteItem(EdgeIt edge_to_delete)
843 delete(edgetextmap[edge_to_delete]);
844 delete(edgesmap[edge_to_delete]);
845 g.erase(edge_to_delete);
848 void GraphDisplayerCanvas::deleteItem(Graph::Edge edge_to_delete)
850 delete(edgetextmap[edge_to_delete]);
851 delete(edgesmap[edge_to_delete]);
852 g.erase(edge_to_delete);
855 void GraphDisplayerCanvas::textReposition(xy<double> new_place)
857 new_place+=(xy<double>(10,10));
858 edgetextmap[forming_edge]->property_x().set_value(new_place.x);
859 edgetextmap[forming_edge]->property_y().set_value(new_place.y);
862 void GraphDisplayerCanvas::toggleEdgeActivity(BrokenEdge* active_bre, bool on)
866 if(forming_edge!=INVALID)
868 std::cerr << "ERROR!!!! Valid edge found!" << std::endl;
872 for (EdgeIt i(g); i!=INVALID; ++i)
874 if(edgesmap[i]==active_bre)
883 if(forming_edge!=INVALID)
885 forming_edge=INVALID;
889 std::cerr << "ERROR!!!! Invalid edge found!" << std::endl;
895 int GraphDisplayerCanvas::addNewEdgeMap(double default_value, std::string mapname)
898 Graph::EdgeMap<double> * emptr=new Graph::EdgeMap<double> (g,default_value);
900 //if addition was not successful addEdgeMap returns one.
901 //cause can be that there is already a map named like the new one
902 if(mapstorage.addEdgeMap(mapname,emptr))
908 //add it to the list of the displayable maps
909 mapwin->registerNewEdgeMap(mapname);
912 changeEdgeText(mapname);
917 int GraphDisplayerCanvas::addNewNodeMap(double default_value, std::string mapname)
920 Graph::NodeMap<double> * emptr=new Graph::NodeMap<double> (g,default_value);
922 //if addition was not successful addNodeMap returns one.
923 //cause can be that there is already a map named like the new one
924 if(mapstorage.addNodeMap(mapname,emptr))
929 //add it to the list of the displayable maps
930 mapwin->registerNewNodeMap(mapname);
933 changeNodeText(mapname);