summaryrefslogtreecommitdiffstats
path: root/src/knot-holder-entity.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2012-05-03 02:06:15 +0000
committerJon A. Cruz <jon@joncruz.org>2012-05-03 02:06:15 +0000
commit3198928b491fb91cdd177505c051659f89aa4158 (patch)
tree8cf8b51a36ba7e865d3c41984746ae35a26c9e6a /src/knot-holder-entity.cpp
parentFind dialog: better user message (diff)
downloadinkscape-3198928b491fb91cdd177505c051659f89aa4158.tar.gz
inkscape-3198928b491fb91cdd177505c051659f89aa4158.zip
Adding base configurable sizing of controls/handles.
(bzr r11316)
Diffstat (limited to 'src/knot-holder-entity.cpp')
-rw-r--r--src/knot-holder-entity.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/knot-holder-entity.cpp b/src/knot-holder-entity.cpp
index c556195d6..9f072d8f5 100644
--- a/src/knot-holder-entity.cpp
+++ b/src/knot-holder-entity.cpp
@@ -29,9 +29,9 @@
int KnotHolderEntity::counter = 0;
-void
-KnotHolderEntity::create(SPDesktop *desktop, SPItem *item, KnotHolder *parent, const gchar *tip,
- SPKnotShapeType shape, SPKnotModeType mode, guint32 color)
+void KnotHolderEntity::create(SPDesktop *desktop, SPItem *item, KnotHolder *parent, Inkscape::ControlType type,
+ const gchar *tip,
+ SPKnotShapeType shape, SPKnotModeType mode, guint32 color)
{
knot = sp_knot_new(desktop, tip);
@@ -41,11 +41,14 @@ KnotHolderEntity::create(SPDesktop *desktop, SPItem *item, KnotHolder *parent, c
my_counter = KnotHolderEntity::counter++;
- g_object_set(G_OBJECT (knot->item), "shape", shape, NULL);
- g_object_set(G_OBJECT (knot->item), "mode", mode, NULL);
+ g_object_set(G_OBJECT(knot->item), "shape", shape, NULL);
+ g_object_set(G_OBJECT(knot->item), "mode", mode, NULL);
+
+ // TODO base more appearance from this type instead of passing in arbitrary values.
+ knot->item->ctrlType = type;
knot->fill [SP_KNOT_STATE_NORMAL] = color;
- g_object_set (G_OBJECT (knot->item), "fill_color", color, NULL);
+ g_object_set (G_OBJECT(knot->item), "fill_color", color, NULL);
update_knot();
sp_knot_show(knot);