summaryrefslogtreecommitdiffstats
path: root/src/gradient-drag.h
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2014-03-28 15:13:33 +0000
committerMarkus Engel <markus.engel@tum.de>2014-03-28 15:13:33 +0000
commit24289d6eedbc912f228c21914176b82e8eecee51 (patch)
tree941df365b6e4d26c961715b41832cddf04a03dca /src/gradient-drag.h
parentMerge in pixelArt threading mechanism to stop blocking the UI when performing... (diff)
downloadinkscape-24289d6eedbc912f228c21914176b82e8eecee51.tar.gz
inkscape-24289d6eedbc912f228c21914176b82e8eecee51.zip
Further refactored SPKnot.
(bzr r13226)
Diffstat (limited to 'src/gradient-drag.h')
-rw-r--r--src/gradient-drag.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/gradient-drag.h b/src/gradient-drag.h
index e22b48e19..4ee59bb0f 100644
--- a/src/gradient-drag.h
+++ b/src/gradient-drag.h
@@ -86,15 +86,6 @@ struct GrDragger {
// position of the knot before it began to drag; updated when released
Geom::Point point_original;
- /** Connection to \a knot's "moved" signal, for blocking it (unused?). */
- //guint handler_id;
-
- sigc::connection _moved_connection;
- sigc::connection _clicked_connection;
- sigc::connection _doubleclicked_connection;
- sigc::connection _grabbed_connection;
- sigc::connection _ungrabbed_connection;
-
GSList *draggables;
void addDraggable(GrDraggable *draggable);
@@ -123,6 +114,13 @@ struct GrDragger {
bool isA(SPItem *item, GrPointType point_type, gint point_i, Inkscape::PaintTarget fill_or_stroke);
void fireDraggables(bool write_repr, bool scale_radial = false, bool merging_focus = false);
+
+private:
+ sigc::connection _moved_connection;
+ sigc::connection _clicked_connection;
+ sigc::connection _doubleclicked_connection;
+ sigc::connection _grabbed_connection;
+ sigc::connection _ungrabbed_connection;
};
/**