Code

Really fix middle click zoom in the node tool.
[inkscape.git] / src / ui / tool / node-tool.cpp
1 /** @file
2  * @brief New node tool - implementation
3  */
4 /* Authors:
5  *   Krzysztof KosiƄski <tweenk@gmail.com>
6  *
7  * Copyright (C) 2009 Authors
8  * Released under GNU GPL, read the file 'COPYING' for more information
9  */
11 #include <glib.h>
12 #include <glib/gi18n.h>
13 #include "desktop.h"
14 #include "desktop-handles.h"
15 #include "display/canvas-bpath.h"
16 #include "display/curve.h"
17 #include "display/sp-canvas.h"
18 #include "document.h"
19 #include "live_effects/lpeobject.h"
20 #include "message-context.h"
21 #include "selection.h"
22 #include "shape-editor.h" // temporary!
23 #include "sp-clippath.h"
24 #include "sp-item-group.h"
25 #include "sp-mask.h"
26 #include "sp-object-group.h"
27 #include "sp-path.h"
28 #include "ui/tool/node-tool.h"
29 #include "ui/tool/control-point-selection.h"
30 #include "ui/tool/curve-drag-point.h"
31 #include "ui/tool/event-utils.h"
32 #include "ui/tool/manipulator.h"
33 #include "ui/tool/multi-path-manipulator.h"
34 #include "ui/tool/path-manipulator.h"
35 #include "ui/tool/selector.h"
36 #include "ui/tool/shape-record.h"
38 #include "pixmaps/cursor-node.xpm"
39 #include "pixmaps/cursor-node-d.xpm"
41 /** @struct InkNodeTool
42  *
43  * Node tool event context.
44  *
45  * @par Architectural overview of the tool
46  * @par
47  * Here's a breakdown of what each object does.
48  * - Handle: shows a handle and keeps the node type constraint (smooth / symmetric) by updating
49  *   the other handle's position when dragged. Its move() method cannot violate the constraints.
50  * - Node: keeps node type constraints for auto nodes and smooth nodes at ends of linear segments.
51  *   Its move() method cannot violate constraints. Handles linear grow and dispatches spatial grow
52  *   to MultiPathManipulator. Keeps a reference to its NodeList.
53  * - NodeList: exposes an iterator-based interface to nodes. It is possible to obtain an iterator
54  *   to a node from the node. Keeps a reference to its SubpathList.
55  * - SubpathList: list of NodeLists that represents an editable pathvector. Keeps a reference
56  *   to its PathManipulator.
57  * - PathManipulator: performs most of the single-path actions like reverse subpaths,
58  *   delete segment, shift selection, etc. Keeps a reference to MultiPathManipulator.
59  * - MultiPathManipulator: performs additional operations for actions that are not per-path,
60  *   for example node joins and segment joins. Tracks the control transforms for PMs that edit
61  *   clipping paths and masks. It is more or less equivalent to ShapeEditor and in the future
62  *   it might handle all shapes. Handles XML commit of actions that affect all paths or
63  *   the node selection and removes PathManipulators that have no nodes left after e.g. node
64  *   deletes.
65  * - ControlPointSelection: keeps track of node selection and a set of nodes that can potentially
66  *   be selected. There can be more than one selection. Performs actions that require no
67  *   knowledge about the path, only about the nodes, like dragging and transforms. It is not
68  *   specific to nodes and can accomodate any control point derived from SelectableControlPoint.
69  *   Transforms nodes in response to transform handle events.
70  * - TransformHandleSet: displays nodeset transform handles and emits transform events. The aim
71  *   is to eventually use a common class for object and control point transforms.
72  * - SelectableControlPoint: base for any type of selectable point. It can belong to only one
73  *   selection.
74  * 
75  * @par Plans for the future
76  * @par
77  * - MultiPathManipulator should become a generic shape editor that manages all active manipulator,
78  *   more or less like the old ShapeEditor.
79  * - Knotholder should be rewritten into one manipulator class per shape, using the control point
80  *   classes. Interesting features like dragging rectangle sides could be added along the way.
81  * - Better handling of clip and mask editing, particularly in response to undo.
82  * - High level refactoring of the event context hierarchy. All aspects of tools, like toolbox
83  *   controls, icons, event handling should be collected in one class, though each aspect
84  *   of a tool might be in an separate class for better modularity. The long term goal is to allow
85  *   tools to be defined in extensions or shared library plugins.
86  */
88 namespace {
89 SPCanvasGroup *create_control_group(SPDesktop *d);
90 void ink_node_tool_class_init(InkNodeToolClass *klass);
91 void ink_node_tool_init(InkNodeTool *node_context);
92 void ink_node_tool_dispose(GObject *object);
94 void ink_node_tool_setup(SPEventContext *ec);
95 gint ink_node_tool_root_handler(SPEventContext *event_context, GdkEvent *event);
96 gint ink_node_tool_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event);
97 void ink_node_tool_set(SPEventContext *ec, Inkscape::Preferences::Entry *value);
99 void ink_node_tool_update_tip(InkNodeTool *nt, GdkEvent *event);
100 void ink_node_tool_selection_changed(InkNodeTool *nt, Inkscape::Selection *sel);
101 void ink_node_tool_select_area(InkNodeTool *nt, Geom::Rect const &, GdkEventButton *);
102 void ink_node_tool_select_point(InkNodeTool *nt, Geom::Point const &, GdkEventButton *);
103 void ink_node_tool_mouseover_changed(InkNodeTool *nt, Inkscape::UI::ControlPoint *p);
104 } // anonymous namespace
106 GType ink_node_tool_get_type()
108     static GType type = 0;
109     if (!type) {
110         GTypeInfo info = {
111             sizeof(InkNodeToolClass),
112             NULL, NULL,
113             (GClassInitFunc) ink_node_tool_class_init,
114             NULL, NULL,
115             sizeof(InkNodeTool),
116             4,
117             (GInstanceInitFunc) ink_node_tool_init,
118             NULL,    /* value_table */
119         };
120         type = g_type_register_static(SP_TYPE_EVENT_CONTEXT, "InkNodeTool", &info, (GTypeFlags)0);
121     }
122     return type;
125 namespace {
127 SPCanvasGroup *create_control_group(SPDesktop *d)
129     return reinterpret_cast<SPCanvasGroup*>(sp_canvas_item_new(
130         sp_desktop_controls(d), SP_TYPE_CANVAS_GROUP, NULL));
133 void destroy_group(SPCanvasGroup *g)
135     gtk_object_destroy(GTK_OBJECT(g));
138 void ink_node_tool_class_init(InkNodeToolClass *klass)
140     GObjectClass *object_class = (GObjectClass *) klass;
141     SPEventContextClass *event_context_class = (SPEventContextClass *) klass;
143     object_class->dispose = ink_node_tool_dispose;
145     event_context_class->setup = ink_node_tool_setup;
146     event_context_class->set = ink_node_tool_set;
147     event_context_class->root_handler = ink_node_tool_root_handler;
148     event_context_class->item_handler = ink_node_tool_item_handler;
151 void ink_node_tool_init(InkNodeTool *nt)
153     SPEventContext *event_context = SP_EVENT_CONTEXT(nt);
155     event_context->cursor_shape = cursor_node_xpm;
156     event_context->hot_x = 1;
157     event_context->hot_y = 1;
159     new (&nt->_selection_changed_connection) sigc::connection();
160     new (&nt->_selection_modified_connection) sigc::connection();
161     new (&nt->_mouseover_changed_connection) sigc::connection();
162     //new (&nt->_mgroup) Inkscape::UI::ManipulatorGroup(nt->desktop);
163     new (&nt->_selected_nodes) CSelPtr();
164     new (&nt->_multipath) MultiPathPtr();
165     new (&nt->_selector) SelectorPtr();
166     new (&nt->_path_data) PathSharedDataPtr();
169 void ink_node_tool_dispose(GObject *object)
171     InkNodeTool *nt = INK_NODE_TOOL(object);
173     nt->enableGrDrag(false);
175     nt->_selection_changed_connection.disconnect();
176     nt->_selection_modified_connection.disconnect();
177     nt->_mouseover_changed_connection.disconnect();
178     nt->_multipath.~MultiPathPtr();
179     nt->_selected_nodes.~CSelPtr();
180     nt->_selector.~SelectorPtr();
181     
182     Inkscape::UI::PathSharedData &data = *nt->_path_data;
183     destroy_group(data.node_data.node_group);
184     destroy_group(data.node_data.handle_group);
185     destroy_group(data.node_data.handle_line_group);
186     destroy_group(data.outline_group);
187     destroy_group(data.dragpoint_group);
188     destroy_group(nt->_transform_handle_group);
189     
190     nt->_path_data.~PathSharedDataPtr();
191     nt->_selection_changed_connection.~connection();
192     nt->_selection_modified_connection.~connection();
193     nt->_mouseover_changed_connection.~connection();
195     if (nt->_node_message_context) {
196         delete nt->_node_message_context;
197     }
198     if (nt->shape_editor) {
199         nt->shape_editor->unset_item(SH_KNOTHOLDER);
200         delete nt->shape_editor;
201     }
203     G_OBJECT_CLASS(g_type_class_peek(g_type_parent(INK_TYPE_NODE_TOOL)))->dispose(object);
206 void ink_node_tool_setup(SPEventContext *ec)
208     InkNodeTool *nt = INK_NODE_TOOL(ec);
210     SPEventContextClass *parent = (SPEventContextClass *) g_type_class_peek(g_type_parent(INK_TYPE_NODE_TOOL));
211     if (parent->setup) parent->setup(ec);
213     nt->_node_message_context = new Inkscape::MessageContext((ec->desktop)->messageStack());
215     nt->_path_data.reset(new Inkscape::UI::PathSharedData());
216     Inkscape::UI::PathSharedData &data = *nt->_path_data;
217     data.node_data.desktop = nt->desktop;
219     // selector has to be created here, so that its hidden control point is on the bottom
220     nt->_selector.reset(new Inkscape::UI::Selector(nt->desktop));
222     // Prepare canvas groups for controls. This guarantees correct z-order, so that
223     // for example a dragpoint won't obscure a node
224     data.outline_group = create_control_group(nt->desktop);
225     data.node_data.handle_line_group = create_control_group(nt->desktop);
226     data.dragpoint_group = create_control_group(nt->desktop);
227     nt->_transform_handle_group = create_control_group(nt->desktop);
228     data.node_data.node_group = create_control_group(nt->desktop);
229     data.node_data.handle_group = create_control_group(nt->desktop);
231     Inkscape::Selection *selection = sp_desktop_selection (ec->desktop);
232     nt->_selection_changed_connection.disconnect();
233     nt->_selection_changed_connection =
234         selection->connectChanged(
235             sigc::bind<0>(
236                 sigc::ptr_fun(&ink_node_tool_selection_changed),
237                 nt));
238     /*nt->_selection_modified_connection.disconnect();
239     nt->_selection_modified_connection =
240         selection->connectModified(
241             sigc::hide(sigc::bind<0>(
242                 sigc::ptr_fun(&ink_node_tool_selection_modified),
243                 nt)));*/
244     nt->_mouseover_changed_connection.disconnect();
245     nt->_mouseover_changed_connection = 
246         Inkscape::UI::ControlPoint::signal_mouseover_change.connect(
247             sigc::bind<0>(
248                 sigc::ptr_fun(&ink_node_tool_mouseover_changed),
249                 nt));
250     
251     nt->_selected_nodes.reset(
252         new Inkscape::UI::ControlPointSelection(nt->desktop, nt->_transform_handle_group));
253     data.node_data.selection = nt->_selected_nodes.get();
254     nt->_multipath.reset(new Inkscape::UI::MultiPathManipulator(data,
255         nt->_selection_changed_connection));
257     nt->_selector->signal_point.connect(
258         sigc::bind<0>(
259             sigc::ptr_fun(&ink_node_tool_select_point),
260             nt));
261     nt->_selector->signal_area.connect(
262         sigc::bind<0>(
263             sigc::ptr_fun(&ink_node_tool_select_area),
264             nt));
266     nt->_multipath->signal_coords_changed.connect(
267         sigc::bind(
268             sigc::mem_fun(*nt->desktop, &SPDesktop::emitToolSubselectionChanged),
269             (void*) 0));
270     nt->_selected_nodes->signal_point_changed.connect(
271         sigc::hide( sigc::hide(
272             sigc::bind(
273                 sigc::bind(
274                     sigc::ptr_fun(ink_node_tool_update_tip),
275                     (GdkEvent*)0),
276                 nt))));
278     nt->cursor_drag = false;
279     nt->show_transform_handles = true;
280     nt->single_node_transform_handles = false;
281     nt->flash_tempitem = NULL;
282     nt->flashed_item = NULL;
283     // TODO remove this!
284     nt->shape_editor = new ShapeEditor(nt->desktop);
286     // read prefs before adding items to selection to prevent momentarily showing the outline
287     sp_event_context_read(nt, "show_handles");
288     sp_event_context_read(nt, "show_outline");
289     sp_event_context_read(nt, "live_outline");
290     sp_event_context_read(nt, "live_objects");
291     sp_event_context_read(nt, "show_path_direction");
292     sp_event_context_read(nt, "show_transform_handles");
293     sp_event_context_read(nt, "single_node_transform_handles");
294     sp_event_context_read(nt, "edit_clipping_paths");
295     sp_event_context_read(nt, "edit_masks");
297     ink_node_tool_selection_changed(nt, selection);
298     ink_node_tool_update_tip(nt, NULL);
300     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
301     if (prefs->getBool("/tools/nodes/selcue")) {
302         ec->enableSelectionCue();
303     }
304     if (prefs->getBool("/tools/nodes/gradientdrag")) {
305         ec->enableGrDrag();
306     }
308     nt->desktop->emitToolSubselectionChanged(NULL); // sets the coord entry fields to inactive
311 void ink_node_tool_set(SPEventContext *ec, Inkscape::Preferences::Entry *value)
313     InkNodeTool *nt = INK_NODE_TOOL(ec);
314     Glib::ustring entry_name = value->getEntryName();
316     if (entry_name == "show_handles") {
317         nt->_multipath->showHandles(value->getBool(true));
318     } else if (entry_name == "show_outline") {
319         nt->show_outline = value->getBool();
320         nt->_multipath->showOutline(nt->show_outline);
321     } else if (entry_name == "live_outline") {
322         nt->live_outline = value->getBool();
323         nt->_multipath->setLiveOutline(nt->live_outline);
324     } else if (entry_name == "live_objects") {
325         nt->live_objects = value->getBool();
326         nt->_multipath->setLiveObjects(nt->live_objects);
327     } else if (entry_name == "show_path_direction") {
328         nt->show_path_direction = value->getBool();
329         nt->_multipath->showPathDirection(nt->show_path_direction);
330     } else if (entry_name == "show_transform_handles") {
331         nt->show_transform_handles = value->getBool(true);
332         nt->_selected_nodes->showTransformHandles(
333             nt->show_transform_handles, nt->single_node_transform_handles);
334     } else if (entry_name == "single_node_transform_handles") {
335         nt->single_node_transform_handles = value->getBool();
336         nt->_selected_nodes->showTransformHandles(
337             nt->show_transform_handles, nt->single_node_transform_handles);
338     } else if (entry_name == "edit_clipping_paths") {
339         nt->edit_clipping_paths = value->getBool();
340         ink_node_tool_selection_changed(nt, nt->desktop->selection);
341     } else if (entry_name == "edit_masks") {
342         nt->edit_masks = value->getBool();
343         ink_node_tool_selection_changed(nt, nt->desktop->selection);
344     } else {
345         SPEventContextClass *parent_class =
346             (SPEventContextClass *) g_type_class_peek(g_type_parent(INK_TYPE_NODE_TOOL));
347         if (parent_class->set)
348             parent_class->set(ec, value);
349     }
352 /** Recursively collect ShapeRecords */
353 void gather_items(InkNodeTool *nt, SPItem *base, SPObject *obj, Inkscape::UI::ShapeRole role,
354     std::set<Inkscape::UI::ShapeRecord> &s)
356     using namespace Inkscape::UI;
357     if (!obj) return;
359     if (SP_IS_PATH(obj) && obj->repr->attribute("inkscape:original-d") != NULL) {
360         ShapeRecord r;
361         r.item = static_cast<SPItem*>(obj);
362         r.edit_transform = Geom::identity(); // TODO wrong?
363         r.role = SHAPE_ROLE_LPE_PARAM;
364         s.insert(r);
365     } else if (role != SHAPE_ROLE_NORMAL && (SP_IS_GROUP(obj) || SP_IS_OBJECTGROUP(obj))) {
366         for (SPObject *c = obj->children; c; c = c->next) {
367             gather_items(nt, base, c, role, s);
368         }
369     } else if (SP_IS_ITEM(obj)) {
370         SPItem *item = static_cast<SPItem*>(obj);
371         ShapeRecord r;
372         r.item = item;
373         // TODO add support for objectBoundingBox
374         r.edit_transform = base ? sp_item_i2doc_affine(base) : Geom::identity();
375         r.role = role;
376         if (s.insert(r).second) {
377             // this item was encountered the first time
378             if (nt->edit_clipping_paths && item->clip_ref) {
379                 gather_items(nt, item, item->clip_ref->getObject(), SHAPE_ROLE_CLIPPING_PATH, s);
380             }
381             if (nt->edit_masks && item->mask_ref) {
382                 gather_items(nt, item, item->mask_ref->getObject(), SHAPE_ROLE_MASK, s);
383             }
384         }
385     }
388 void ink_node_tool_selection_changed(InkNodeTool *nt, Inkscape::Selection *sel)
390     using namespace Inkscape::UI;
392     std::set<ShapeRecord> shapes;
394     GSList const *ilist = sel->itemList();
396     for (GSList *i = const_cast<GSList*>(ilist); i; i = i->next) {
397         SPObject *obj = static_cast<SPObject*>(i->data);
398         if (SP_IS_ITEM(obj)) {
399             gather_items(nt, NULL, static_cast<SPItem*>(obj), SHAPE_ROLE_NORMAL, shapes);
400         }
401     }
403     // ugly hack: set the first editable non-path item for knotholder
404     // maybe use multiple ShapeEditors for now, to allow editing many shapes at once?
405     bool something_set = false;
406     for (std::set<ShapeRecord>::iterator i = shapes.begin(); i != shapes.end(); ++i) {
407         ShapeRecord const &r = *i;
408         if (SP_IS_SHAPE(r.item) ||
409             (SP_IS_PATH(r.item) && r.item->repr->attribute("inkscape:original-d") != NULL))
410         {
411             nt->shape_editor->set_item(r.item, SH_KNOTHOLDER);
412             something_set = true;
413             break;
414         }
415     }
416     if (!something_set) {
417         nt->shape_editor->unset_item(SH_KNOTHOLDER);
418     }
420     nt->_multipath->setItems(shapes);
421     ink_node_tool_update_tip(nt, NULL);
422     nt->desktop->updateNow();
425 gint ink_node_tool_root_handler(SPEventContext *event_context, GdkEvent *event)
427     /* things to handle here:
428      * 1. selection of items
429      * 2. passing events to manipulators
430      * 3. some keybindings
431      */
432     using namespace Inkscape::UI; // pull in event helpers
433     
434     SPDesktop *desktop = event_context->desktop;
435     Inkscape::Selection *selection = desktop->selection;
436     InkNodeTool *nt = static_cast<InkNodeTool*>(event_context);
437     static Inkscape::Preferences *prefs = Inkscape::Preferences::get();
438     
439     if (nt->_multipath->event(event)) return true;
440     if (nt->_selector->event(event)) return true;
441     if (nt->_selected_nodes->event(event)) return true;
443     switch (event->type)
444     {
445     case GDK_MOTION_NOTIFY:
446         // create outline
447         if (prefs->getBool("/tools/nodes/pathflash_enabled")) {
448             SPItem *over_item = sp_event_context_find_item (desktop, event_point(event->button),
449                 FALSE, TRUE);
450             if (over_item == nt->flashed_item) break;
451             if (!prefs->getBool("/tools/nodes/pathflash_selected") && selection->includes(over_item)) break;
452             if (nt->flash_tempitem) {
453                 desktop->remove_temporary_canvasitem(nt->flash_tempitem);
454                 nt->flash_tempitem = NULL;
455                 nt->flashed_item = NULL;
456             }
457             if (!SP_IS_PATH(over_item)) break; // for now, handle only paths
459             nt->flashed_item = over_item;
460             SPCurve *c = sp_path_get_curve_for_edit(SP_PATH(over_item));
461             c->transform(sp_item_i2d_affine(over_item));
462             SPCanvasItem *flash = sp_canvas_bpath_new(sp_desktop_tempgroup(desktop), c);
463             sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(flash),
464                 prefs->getInt("/tools/nodes/highlight_color", 0xff0000ff), 1.0,
465                 SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT);
466             sp_canvas_bpath_set_fill(SP_CANVAS_BPATH(flash), 0, SP_WIND_RULE_NONZERO);
467             nt->flash_tempitem = desktop->add_temporary_canvasitem(flash,
468                 prefs->getInt("/tools/nodes/pathflash_timeout", 500));
469             c->unref();
470         }
471         return true;
472     case GDK_KEY_PRESS:
473         switch (get_group0_keyval(&event->key))
474         {
475         case GDK_Escape: // deselect everything
476             if (nt->_selected_nodes->empty()) {
477                 selection->clear();
478             } else {
479                 nt->_selected_nodes->clear();
480             }
481             ink_node_tool_update_tip(nt, event);
482             return TRUE;
483         case GDK_a:
484             if (held_control(event->key)) {
485                 if (held_alt(event->key)) {
486                     nt->_selected_nodes->selectAll();
487                 } else {
488                     // select all nodes in subpaths that have something selected
489                     // if nothing is selected, select everything
490                     nt->_multipath->selectSubpaths();
491                 }
492                 ink_node_tool_update_tip(nt, event);
493                 return TRUE;
494             }
495             break;
496         default:
497             break;
498         }
499         ink_node_tool_update_tip(nt, event);
500         break;
501     case GDK_KEY_RELEASE:
502         ink_node_tool_update_tip(nt, event);
503         break;
504     default: break;
505     }
506     
507     SPEventContextClass *parent_class = (SPEventContextClass *) g_type_class_peek(g_type_parent(INK_TYPE_NODE_TOOL));
508     if (parent_class->root_handler)
509         return parent_class->root_handler(event_context, event);
510     return FALSE;
513 void ink_node_tool_update_tip(InkNodeTool *nt, GdkEvent *event)
515     using namespace Inkscape::UI;
516     if (event && (event->type == GDK_KEY_PRESS || event->type == GDK_KEY_RELEASE)) {
517         unsigned new_state = state_after_event(event);
518         if (new_state == event->key.state) return;
519         if (state_held_shift(new_state)) {
520             nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE,
521                 C_("Node tool tip", "<b>Shift:</b> drag to add nodes to the selection, "
522                 "click to toggle object selection"));
523             return;
524         }
525     }
526     unsigned sz = nt->_selected_nodes->size();
527     if (sz != 0) {
528         char *dyntip = g_strdup_printf(C_("Node tool tip",
529             "Selected <b>%d nodes</b>. Drag to select nodes, click to select a single object "
530             "or unselect all objects"), sz);
531         nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE, dyntip);
532         g_free(dyntip);
533     } else if (nt->_multipath->empty()) {
534         nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE,
535             C_("Node tool tip", "Drag or click to select objects to edit"));
536     } else {
537         nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE,
538             C_("Node tool tip", "Drag to select nodes, click to select an object "
539             "or clear the selection"));
540     }
543 gint ink_node_tool_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event)
545     SPEventContextClass *parent_class =
546         (SPEventContextClass *) g_type_class_peek(g_type_parent(INK_TYPE_NODE_TOOL));
547     if (parent_class->item_handler)
548         return parent_class->item_handler(event_context, item, event);
549     return FALSE;
552 void ink_node_tool_select_area(InkNodeTool *nt, Geom::Rect const &sel, GdkEventButton *event)
554     using namespace Inkscape::UI;
555     if (nt->_multipath->empty()) {
556         // if multipath is empty, select rubberbanded items rather than nodes
557         Inkscape::Selection *selection = nt->desktop->selection;
558         GSList *items = sp_document_items_in_box(
559             sp_desktop_document(nt->desktop), nt->desktop->dkey, sel);
560         selection->setList(items);
561         g_slist_free(items);
562     } else {
563         if (!held_shift(*event)) nt->_selected_nodes->clear();
564         nt->_selected_nodes->selectArea(sel);
565     }
567 void ink_node_tool_select_point(InkNodeTool *nt, Geom::Point const &/*sel*/, GdkEventButton *event)
569     using namespace Inkscape::UI; // pull in event helpers
570     if (!event) return;
571     if (event->button != 1) return;
573     Inkscape::Selection *selection = nt->desktop->selection;
575     SPItem *item_clicked = sp_event_context_find_item (nt->desktop, event_point(*event),
576                     (event->state & GDK_MOD1_MASK) && !(event->state & GDK_CONTROL_MASK), TRUE);
578     if (item_clicked == NULL) { // nothing under cursor
579         // if no Shift, deselect
580         if (!(event->state & GDK_SHIFT_MASK)) {
581             selection->clear();
582         }
583     } else {
584         if (held_shift(*event)) {
585             selection->toggle(item_clicked);
586         } else {
587             selection->set(item_clicked);
588         }
589         nt->desktop->updateNow();
590     }
593 void ink_node_tool_mouseover_changed(InkNodeTool *nt, Inkscape::UI::ControlPoint *p)
595     using Inkscape::UI::CurveDragPoint;
596     CurveDragPoint *cdp = dynamic_cast<CurveDragPoint*>(p);
597     if (cdp && !nt->cursor_drag) {
598         nt->cursor_shape = cursor_node_d_xpm;
599         nt->hot_x = 1;
600         nt->hot_y = 1;
601         sp_event_context_update_cursor(nt);
602         nt->cursor_drag = true;
603     } else if (!cdp && nt->cursor_drag) {
604         nt->cursor_shape = cursor_node_xpm;
605         nt->hot_x = 1;
606         nt->hot_y = 1;
607         sp_event_context_update_cursor(nt);
608         nt->cursor_drag = false;
609     }
612 } // anonymous namespace
614 /*
615   Local Variables:
616   mode:c++
617   c-file-style:"stroustrup"
618   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
619   indent-tabs-mode:nil
620   fill-column:99
621   End:
622 */
623 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :