1 #define __KNOT_HOLDER_ENTITY_C__
3 /** \file
4 * KnotHolderEntity definition.
5 *
6 * Authors:
7 * Mitsuru Oka <oka326@parkcity.ne.jp>
8 * Maximilian Albert <maximilian.albert@gmail.com>
9 *
10 * Copyright (C) 1999-2001 Lauris Kaplinski
11 * Copyright (C) 2000-2001 Ximian, Inc.
12 * Copyright (C) 2001 Mitsuru Oka
13 * Copyright (C) 2004 Monash University
14 * Copyright (C) 2008 Maximilian Albert
15 *
16 * Released under GNU GPL
17 */
19 #include "knotholder.h"
20 #include "sp-item.h"
21 #include "style.h"
22 #include "preferences.h"
23 #include "macros.h"
24 #include <libnr/nr-matrix-ops.h>
25 #include "sp-pattern.h"
26 #include "snap.h"
27 #include "desktop.h"
28 #include "sp-namedview.h"
29 #include <2geom/matrix.h>
30 #include <2geom/transforms.h>
32 int KnotHolderEntity::counter = 0;
34 void
35 KnotHolderEntity::create(SPDesktop *desktop, SPItem *item, KnotHolder *parent, const gchar *tip,
36 SPKnotShapeType shape, SPKnotModeType mode, guint32 color)
37 {
38 knot = sp_knot_new(desktop, tip);
40 this->parent_holder = parent;
41 this->item = item; // TODO: remove the item either from here or from knotholder.cpp
42 this->desktop = desktop;
44 my_counter = KnotHolderEntity::counter++;
46 g_object_set(G_OBJECT (knot->item), "shape", shape, NULL);
47 g_object_set(G_OBJECT (knot->item), "mode", mode, NULL);
49 knot->fill [SP_KNOT_STATE_NORMAL] = color;
50 g_object_set (G_OBJECT (knot->item), "fill_color", color, NULL);
52 update_knot();
53 sp_knot_show(knot);
55 _moved_connection = knot->_moved_signal.connect(sigc::mem_fun(*parent_holder, &KnotHolder::knot_moved_handler));
56 _click_connection = knot->_click_signal.connect(sigc::mem_fun(*parent_holder, &KnotHolder::knot_clicked_handler));
57 _ungrabbed_connection = knot->_ungrabbed_signal.connect(sigc::mem_fun(*parent_holder, &KnotHolder::knot_ungrabbed_handler));
58 }
61 KnotHolderEntity::~KnotHolderEntity()
62 {
63 _moved_connection.disconnect();
64 _click_connection.disconnect();
65 _ungrabbed_connection.disconnect();
67 /* unref should call destroy */
68 if (knot) {
69 g_object_unref(knot);
70 } else {
71 // FIXME: This shouldn't occur. Perhaps it is caused by LPE PointParams being knotholder entities, too
72 // If so, it will likely be fixed with upcoming refactoring efforts.
73 g_return_if_fail(knot);
74 }
75 }
77 void
78 KnotHolderEntity::update_knot()
79 {
80 Geom::Matrix const i2d(sp_item_i2d_affine(item));
82 Geom::Point dp(knot_get() * i2d);
84 _moved_connection.block();
85 sp_knot_set_position(knot, dp, SP_KNOT_STATE_NORMAL);
86 _moved_connection.unblock();
87 }
89 Geom::Point
90 KnotHolderEntity::snap_knot_position(Geom::Point const &p)
91 {
92 Geom::Matrix const i2d (sp_item_i2d_affine(item));
93 Geom::Point s = p * i2d;
95 SnapManager &m = desktop->namedview->snap_manager;
96 m.setup(desktop, true, item);
98 m.freeSnapReturnByRef(s, Inkscape::SNAPSOURCE_NODE_HANDLE);
100 return s * i2d.inverse();
101 }
103 Geom::Point
104 KnotHolderEntity::snap_knot_position_constrained(Geom::Point const &p, Inkscape::Snapper::ConstraintLine const &constraint)
105 {
106 Geom::Matrix const i2d (sp_item_i2d_affine(item));
107 Geom::Point s = p * i2d;
109 SnapManager &m = desktop->namedview->snap_manager;
110 m.setup(desktop, true, item);
112 Inkscape::Preferences *prefs = Inkscape::Preferences::get();
113 if ((prefs->getBool("/options/snapmousepointer/value", false))) { // legacy behavior (pre v0.47)
114 // Snapping the mouse pointer instead of the constrained position of the knot allows to snap to
115 // things which don't intersect with the constraint line. This should be handled by the
116 // smart dynamic guides which are yet to be implemented, making this behavior more clean and
117 // transparent. With the current implementation it leads to unexpected results, and it doesn't
118 // allow accurately controlling what is being snapped to.
120 // freeSnap() will try snapping point p. This will not take into account the constraint, which
121 // is therefore to be enforced after snap_knot_position_constrained() has finished
122 m.freeSnapReturnByRef(s, Inkscape::SNAPSOURCE_NODE_HANDLE);
123 } else {
124 // constrainedSnap() will first project the point p onto the constraint line and then try to snap along that line.
125 // This way the constraint is already enforced, no need to worry about that later on
126 Inkscape::Snapper::ConstraintLine transformed_constraint = Inkscape::Snapper::ConstraintLine(constraint.getPoint() * i2d, (constraint.getPoint() + constraint.getDirection()) * i2d - constraint.getPoint() * i2d);
127 m.constrainedSnapReturnByRef(s, Inkscape::SNAPSOURCE_NODE_HANDLE, transformed_constraint);
128 }
130 return s * i2d.inverse();
131 }
134 /* Pattern manipulation */
136 /* TODO: this pattern manipulation is not able to handle general transformation matrices. Only matrices that are the result of a pure scale times a pure rotation. */
138 static gdouble sp_pattern_extract_theta(SPPattern *pat)
139 {
140 Geom::Matrix transf = pat->patternTransform;
141 return Geom::atan2(transf.xAxis());
142 }
144 static Geom::Point sp_pattern_extract_scale(SPPattern *pat)
145 {
146 Geom::Matrix transf = pat->patternTransform;
147 return Geom::Point( transf.expansionX(), transf.expansionY() );
148 }
150 static Geom::Point sp_pattern_extract_trans(SPPattern const *pat)
151 {
152 return Geom::Point(pat->patternTransform[4], pat->patternTransform[5]);
153 }
155 void
156 PatternKnotHolderEntityXY::knot_set(Geom::Point const &p, Geom::Point const &origin, guint state)
157 {
158 SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
160 // FIXME: this snapping should be done together with knowing whether control was pressed. If GDK_CONTROL_MASK, then constrained snapping should be used.
161 Geom::Point p_snapped = snap_knot_position(p);
163 if ( state & GDK_CONTROL_MASK ) {
164 if (fabs((p - origin)[Geom::X]) > fabs((p - origin)[Geom::Y])) {
165 p_snapped[Geom::Y] = origin[Geom::Y];
166 } else {
167 p_snapped[Geom::X] = origin[Geom::X];
168 }
169 }
171 if (state) {
172 Geom::Point const q = p_snapped - sp_pattern_extract_trans(pat);
173 sp_item_adjust_pattern(item, Geom::Matrix(Geom::Translate(q)));
174 }
176 item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
177 }
179 Geom::Point
180 PatternKnotHolderEntityXY::knot_get()
181 {
182 SPPattern const *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
183 return sp_pattern_extract_trans(pat);
184 }
186 Geom::Point
187 PatternKnotHolderEntityAngle::knot_get()
188 {
189 SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
191 gdouble x = (pattern_width(pat));
192 gdouble y = 0;
193 Geom::Point delta = Geom::Point(x,y);
194 Geom::Point scale = sp_pattern_extract_scale(pat);
195 gdouble theta = sp_pattern_extract_theta(pat);
196 delta = delta * Geom::Matrix(Geom::Scale(scale))*Geom::Matrix(Geom::Rotate(theta));
197 delta = delta + sp_pattern_extract_trans(pat);
198 return delta;
199 }
201 void
202 PatternKnotHolderEntityAngle::knot_set(Geom::Point const &p, Geom::Point const &/*origin*/, guint state)
203 {
204 Inkscape::Preferences *prefs = Inkscape::Preferences::get();
205 int const snaps = prefs->getInt("/options/rotationsnapsperpi/value", 12);
207 SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
209 // get the angle from pattern 0,0 to the cursor pos
210 Geom::Point delta = p - sp_pattern_extract_trans(pat);
211 gdouble theta = atan2(delta);
213 if ( state & GDK_CONTROL_MASK ) {
214 theta = sp_round(theta, M_PI/snaps);
215 }
217 // get the scale from the current transform so we can keep it.
218 Geom::Point scl = sp_pattern_extract_scale(pat);
219 Geom::Matrix rot = Geom::Matrix(Geom::Scale(scl)) * Geom::Matrix(Geom::Rotate(theta));
220 Geom::Point const t = sp_pattern_extract_trans(pat);
221 rot[4] = t[Geom::X];
222 rot[5] = t[Geom::Y];
223 sp_item_adjust_pattern(item, rot, true);
224 item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
225 }
227 void
228 PatternKnotHolderEntityScale::knot_set(Geom::Point const &p, Geom::Point const &/*origin*/, guint state)
229 {
230 SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
232 // FIXME: this snapping should be done together with knowing whether control was pressed. If GDK_CONTROL_MASK, then constrained snapping should be used.
233 Geom::Point p_snapped = snap_knot_position(p);
235 // get angle from current transform
236 gdouble theta = sp_pattern_extract_theta(pat);
238 // Get the new scale from the position of the knotholder
239 Geom::Point d = p_snapped - sp_pattern_extract_trans(pat);
240 gdouble pat_x = pattern_width(pat);
241 gdouble pat_y = pattern_height(pat);
242 Geom::Scale scl(1);
243 if ( state & GDK_CONTROL_MASK ) {
244 // if ctrl is pressed: use 1:1 scaling
245 gdouble pat_h = hypot(pat_x, pat_y);
246 scl = Geom::Scale(d.length() / pat_h);
247 } else {
248 d *= Geom::Rotate(-theta);
249 scl = Geom::Scale(d[Geom::X] / pat_x, d[Geom::Y] / pat_y);
250 }
252 Geom::Matrix rot = (Geom::Matrix)scl * Geom::Rotate(theta);
254 Geom::Point const t = sp_pattern_extract_trans(pat);
255 rot[4] = t[Geom::X];
256 rot[5] = t[Geom::Y];
257 sp_item_adjust_pattern(item, rot, true);
258 item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
259 }
262 Geom::Point
263 PatternKnotHolderEntityScale::knot_get()
264 {
265 SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
267 gdouble x = pattern_width(pat);
268 gdouble y = pattern_height(pat);
269 Geom::Point delta = Geom::Point(x,y);
270 Geom::Matrix a = pat->patternTransform;
271 a[4] = 0;
272 a[5] = 0;
273 delta = delta * a;
274 delta = delta + sp_pattern_extract_trans(pat);
275 return delta;
276 }
278 /*
279 Local Variables:
280 mode:c++
281 c-file-style:"stroustrup"
282 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
283 indent-tabs-mode:nil
284 fill-column:99
285 End:
286 */
287 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :