Code

First stage of draggable vanishing points (no snapping/unsnapping yet)
[inkscape.git] / src / object-edit.cpp
1 #define __SP_OBJECT_EDIT_C__
3 /*
4  * Node editing extension to objects
5  *
6  * Authors:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   Mitsuru Oka
9  *
10  * Licensed under GNU GPL
11  */
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
19 #include "sp-item.h"
20 #include "sp-rect.h"
21 #include "box3d.h"
22 #include "sp-ellipse.h"
23 #include "sp-star.h"
24 #include "sp-spiral.h"
25 #include "sp-offset.h"
26 #include "sp-flowtext.h"
27 #include "prefs-utils.h"
28 #include "inkscape.h"
29 #include "snap.h"
30 #include "desktop-affine.h"
31 #include <style.h>
32 #include "desktop.h"
33 #include "sp-namedview.h"
35 #include "sp-pattern.h"
36 #include "sp-path.h"
38 #include <glibmm/i18n.h>
40 #include "object-edit.h"
42 #include <libnr/nr-scale-ops.h>
45 #include "xml/repr.h"
47 #include "isnan.h"
49 #define sp_round(v,m) (((v) < 0.0) ? ((ceil((v) / (m) - 0.5)) * (m)) : ((floor((v) / (m) + 0.5)) * (m)))
51 static SPKnotHolder *sp_rect_knot_holder(SPItem *item, SPDesktop *desktop);
52 //static 
53 SPKnotHolder *sp_3dbox_knot_holder(SPItem *item, SPDesktop *desktop, guint number_of_handles);
54 static SPKnotHolder *sp_arc_knot_holder(SPItem *item, SPDesktop *desktop);
55 static SPKnotHolder *sp_star_knot_holder(SPItem *item, SPDesktop *desktop);
56 static SPKnotHolder *sp_spiral_knot_holder(SPItem *item, SPDesktop *desktop);
57 static SPKnotHolder *sp_offset_knot_holder(SPItem *item, SPDesktop *desktop);
58 static SPKnotHolder *sp_misc_knot_holder(SPItem *item, SPDesktop *desktop);
59 static SPKnotHolder *sp_flowtext_knot_holder(SPItem *item, SPDesktop *desktop);
60 static void sp_pat_knot_holder(SPItem *item, SPKnotHolder *knot_holder);
62 SPKnotHolder *
63 sp_item_knot_holder(SPItem *item, SPDesktop *desktop)
64 {
65     if (SP_IS_RECT(item)) {
66         return sp_rect_knot_holder(item, desktop);
67     } else if (SP_IS_3DBOX(item)) {
68         return sp_3dbox_knot_holder(item, desktop, SP3DBoxContext::number_of_handles);
69     } else if (SP_IS_ARC(item)) {
70         return sp_arc_knot_holder(item, desktop);
71     } else if (SP_IS_STAR(item)) {
72         return sp_star_knot_holder(item, desktop);
73     } else if (SP_IS_SPIRAL(item)) {
74         return sp_spiral_knot_holder(item, desktop);
75     } else if (SP_IS_OFFSET(item)) {
76         return sp_offset_knot_holder(item, desktop);
77     } else if (SP_IS_FLOWTEXT(item) && SP_FLOWTEXT(item)->has_internal_frame()) {
78         return sp_flowtext_knot_holder(item, desktop);
79     } else {
80         return sp_misc_knot_holder(item, desktop);
81     }
83     return NULL;
84 }
87 /* Pattern manipulation */
89 static gdouble sp_pattern_extract_theta(SPPattern *pat, gdouble scale)
90 {
91     gdouble theta = asin(pat->patternTransform[1] / scale);
92     if (pat->patternTransform[0] < 0) theta = M_PI - theta ;
93     return theta;
94 }
96 static gdouble sp_pattern_extract_scale(SPPattern *pat)
97 {
98     gdouble s = pat->patternTransform[1];
99     gdouble c = pat->patternTransform[0];
100     gdouble xscale = sqrt(c * c + s * s);
101     return xscale;
104 static NR::Point sp_pattern_extract_trans(SPPattern const *pat)
106     return NR::Point(pat->patternTransform[4], pat->patternTransform[5]);
109 static void
110 sp_pattern_xy_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
112     SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
114     NR::Point p_snapped = p;
116     if ( state & GDK_CONTROL_MASK ) {
117         if (fabs((p - origin)[NR::X]) > fabs((p - origin)[NR::Y])) {
118             p_snapped[NR::Y] = origin[NR::Y];
119         } else {
120             p_snapped[NR::X] = origin[NR::X];
121         }
122     }
124     if (state)  {
125         NR::Point const q = p_snapped - sp_pattern_extract_trans(pat);
126         sp_item_adjust_pattern(item, NR::Matrix(NR::translate(q)));
127     }
129     item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
133 static NR::Point sp_pattern_xy_get(SPItem *item)
135     SPPattern const *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
136     return sp_pattern_extract_trans(pat);
139 static NR::Point sp_pattern_angle_get(SPItem *item)
141     SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
143     gdouble x = (pattern_width(pat)*0.5);
144     gdouble y = 0;
145     NR::Point delta = NR::Point(x,y);
146     gdouble scale = sp_pattern_extract_scale(pat);
147     gdouble theta = sp_pattern_extract_theta(pat, scale);
148     delta = delta * NR::Matrix(NR::rotate(theta))*NR::Matrix(NR::scale(scale,scale));
149     delta = delta + sp_pattern_extract_trans(pat);
150     return delta;
153 static void
154 sp_pattern_angle_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
156     int const snaps = prefs_get_int_attribute("options.rotationsnapsperpi", "value", 12);
158     SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
160     // get the angle from pattern 0,0 to the cursor pos
161     NR::Point delta = p - sp_pattern_extract_trans(pat);
162     gdouble theta = atan2(delta);
164     if ( state & GDK_CONTROL_MASK ) {
165         theta = sp_round(theta, M_PI/snaps);
166     }
168     // get the scale from the current transform so we can keep it.
169     gdouble scl = sp_pattern_extract_scale(pat);
170     NR::Matrix rot =  NR::Matrix(NR::rotate(theta)) * NR::Matrix(NR::scale(scl,scl));
171     NR::Point const t = sp_pattern_extract_trans(pat);
172     rot[4] = t[NR::X];
173     rot[5] = t[NR::Y];
174     sp_item_adjust_pattern(item, rot, true);
175     item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
178 static void
179 sp_pattern_scale_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
181     SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
183     // Get the scale from the position of the knotholder,
184     NR::Point d = p - sp_pattern_extract_trans(pat);
185     gdouble s = NR::L2(d);
186     gdouble pat_x = pattern_width(pat) * 0.5;
187     gdouble pat_y = pattern_height(pat) * 0.5;
188     gdouble pat_h = hypot(pat_x, pat_y);
189     gdouble scl = s / pat_h;
191     // get angle from current transform, (need get current scale first to calculate angle)
192     gdouble oldscale = sp_pattern_extract_scale(pat);
193     gdouble theta = sp_pattern_extract_theta(pat,oldscale);
195     NR::Matrix rot =  NR::Matrix(NR::rotate(theta)) * NR::Matrix(NR::scale(scl,scl));
196     NR::Point const t = sp_pattern_extract_trans(pat);
197     rot[4] = t[NR::X];
198     rot[5] = t[NR::Y];
199     sp_item_adjust_pattern(item, rot, true);
200     item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
204 static NR::Point sp_pattern_scale_get(SPItem *item)
206     SPPattern *pat = SP_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style));
208     gdouble x = pattern_width(pat)*0.5;
209     gdouble y = pattern_height(pat)*0.5;
210     NR::Point delta = NR::Point(x,y);
211     NR::Matrix a = pat->patternTransform;
212     a[4] = 0;
213     a[5] = 0;
214     delta = delta * a;
215     delta = delta + sp_pattern_extract_trans(pat);
216     return delta;
219 /* SPRect */
221 static NR::Point snap_knot_position(SPItem *item, NR::Point const &p)
223     SPDesktop const *desktop = inkscape_active_desktop();
224     NR::Matrix const i2d (sp_item_i2d_affine (item));
225     NR::Point s = p * i2d;    
226     SnapManager const &m = desktop->namedview->snap_manager;
227     s = m.freeSnap(Inkscape::Snapper::SNAPPOINT_BBOX | Inkscape::Snapper::SNAPPOINT_NODE, s, item).getPoint();
228     return s * i2d.inverse();
231 static NR::Point sp_rect_rx_get(SPItem *item)
233     SPRect *rect = SP_RECT(item);
235     return NR::Point(rect->x.computed + rect->width.computed - rect->rx.computed, rect->y.computed);
238 static void sp_rect_rx_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
240     SPRect *rect = SP_RECT(item);
241     
242     //In general we cannot just snap this radius to an arbitrary point, as we have only a single
243     //degree of freedom. For snapping to an arbitrary point we need two DOF. If we're going to snap
244     //the radius then we should have a constrained snap. snap_knot_position() is unconstrained
246     if (state & GDK_CONTROL_MASK) {
247         gdouble temp = MIN(rect->height.computed, rect->width.computed) / 2.0;
248         rect->rx.computed = rect->ry.computed = CLAMP(rect->x.computed + rect->width.computed - p[NR::X], 0.0, temp);
249         rect->rx._set = rect->ry._set = true;
251     } else {
252         rect->rx.computed = CLAMP(rect->x.computed + rect->width.computed - p[NR::X], 0.0, rect->width.computed / 2.0);
253         rect->rx._set = true;
254     }
256     ((SPObject*)rect)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
260 static NR::Point sp_rect_ry_get(SPItem *item)
262     SPRect *rect = SP_RECT(item);
264     return NR::Point(rect->x.computed + rect->width.computed, rect->y.computed + rect->ry.computed);
267 static void sp_rect_ry_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
269     SPRect *rect = SP_RECT(item);
270     
271     //In general we cannot just snap this radius to an arbitrary point, as we have only a single
272     //degree of freedom. For snapping to an arbitrary point we need two DOF. If we're going to snap
273     //the radius then we should have a constrained snap. snap_knot_position() is unconstrained
275     if (state & GDK_CONTROL_MASK) {
276         gdouble temp = MIN(rect->height.computed, rect->width.computed) / 2.0;
277         rect->rx.computed = rect->ry.computed = CLAMP(p[NR::Y] - rect->y.computed, 0.0, temp);
278         rect->ry._set = rect->rx._set = true;
279     } else {
280         if (!rect->rx._set || rect->rx.computed == 0) {
281             rect->ry.computed = CLAMP(p[NR::Y] - rect->y.computed,
282                                       0.0,
283                                       MIN(rect->height.computed / 2.0, rect->width.computed / 2.0));
284         } else {
285             rect->ry.computed = CLAMP(p[NR::Y] - rect->y.computed,
286                                       0.0,
287                                       rect->height.computed / 2.0);
288         }
290         rect->ry._set = true;
291     }
293     ((SPObject *)rect)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
296 /**
297  *  Remove rounding from a rectangle.
298  */
299 static void rect_remove_rounding(SPRect *rect)
301     SP_OBJECT_REPR(rect)->setAttribute("rx", NULL);
302     SP_OBJECT_REPR(rect)->setAttribute("ry", NULL);
305 /**
306  *  Called when the horizontal rounding radius knot is clicked.
307  */
308 static void sp_rect_rx_knot_click(SPItem *item, guint state)
310     SPRect *rect = SP_RECT(item);
312     if (state & GDK_SHIFT_MASK) {
313         rect_remove_rounding(rect);
314     } else if (state & GDK_CONTROL_MASK) {
315         /* Ctrl-click sets the vertical rounding to be the same as the horizontal */
316         SP_OBJECT_REPR(rect)->setAttribute("ry", SP_OBJECT_REPR(rect)->attribute("rx"));
317     }
320 /**
321  *  Called when the vertical rounding radius knot is clicked.
322  */
323 static void sp_rect_ry_knot_click(SPItem *item, guint state)
325     SPRect *rect = SP_RECT(item);
327     if (state & GDK_SHIFT_MASK) {
328         rect_remove_rounding(rect);
329     } else if (state & GDK_CONTROL_MASK) {
330         /* Ctrl-click sets the vertical rounding to be the same as the horizontal */
331         SP_OBJECT_REPR(rect)->setAttribute("rx", SP_OBJECT_REPR(rect)->attribute("ry"));
332     }
335 #define SGN(x) ((x)>0?1:((x)<0?-1:0))
337 static void sp_rect_clamp_radii(SPRect *rect)
339     // clamp rounding radii so that they do not exceed width/height
340     if (2 * rect->rx.computed > rect->width.computed) {
341         rect->rx.computed = 0.5 * rect->width.computed;
342         rect->rx._set = true;
343     }
344     if (2 * rect->ry.computed > rect->height.computed) {
345         rect->ry.computed = 0.5 * rect->height.computed;
346         rect->ry._set = true;
347     }
350 static NR::Point sp_rect_wh_get(SPItem *item)
352     SPRect *rect = SP_RECT(item);
354     return NR::Point(rect->x.computed + rect->width.computed, rect->y.computed + rect->height.computed);
357 static void sp_rect_wh_set_internal(SPRect *rect, NR::Point const &p, NR::Point const &origin, guint state)
359     NR::Point const s = snap_knot_position(rect, p);
361     if (state & GDK_CONTROL_MASK) {
362         // original width/height when drag started
363         gdouble const w_orig = (origin[NR::X] - rect->x.computed);
364         gdouble const h_orig = (origin[NR::Y] - rect->y.computed);
366         //original ratio
367         gdouble const ratio = (w_orig / h_orig);
369         // mouse displacement since drag started
370         gdouble const minx = s[NR::X] - origin[NR::X];
371         gdouble const miny = s[NR::Y] - origin[NR::Y];
373         if (fabs(minx) > fabs(miny)) {
375             // snap to horizontal or diagonal
376             rect->width.computed = MAX(w_orig + minx, 0);
377             if (minx != 0 && fabs(miny/minx) > 0.5 * 1/ratio && (SGN(minx) == SGN(miny))) {
378                 // closer to the diagonal and in same-sign quarters, change both using ratio
379                 rect->height.computed = MAX(h_orig + minx / ratio, 0);
380             } else {
381                 // closer to the horizontal, change only width, height is h_orig
382                 rect->height.computed = MAX(h_orig, 0);
383             }
385         } else {
386             // snap to vertical or diagonal
387             rect->height.computed = MAX(h_orig + miny, 0);
388             if (miny != 0 && fabs(minx/miny) > 0.5 * ratio && (SGN(minx) == SGN(miny))) {
389                 // closer to the diagonal and in same-sign quarters, change both using ratio
390                 rect->width.computed = MAX(w_orig + miny * ratio, 0);
391             } else {
392                 // closer to the vertical, change only height, width is w_orig
393                 rect->width.computed = MAX(w_orig, 0);
394             }
395         }
397         rect->width._set = rect->height._set = true;
399     } else {
400         // move freely
401         rect->width.computed = MAX(s[NR::X] - rect->x.computed, 0);
402         rect->height.computed = MAX(s[NR::Y] - rect->y.computed, 0);
403         rect->width._set = rect->height._set = true;
404     }
406     sp_rect_clamp_radii(rect);
408     ((SPObject *)rect)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
411 static void sp_rect_wh_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
413     SPRect *rect = SP_RECT(item);
415     sp_rect_wh_set_internal(rect, p, origin, state);
418 static NR::Point sp_rect_xy_get(SPItem *item)
420     SPRect *rect = SP_RECT(item);
422     return NR::Point(rect->x.computed, rect->y.computed);
425 static void sp_rect_xy_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
427     SPRect *rect = SP_RECT(item);
429     // opposite corner (unmoved)
430     gdouble opposite_x = (rect->x.computed + rect->width.computed);
431     gdouble opposite_y = (rect->y.computed + rect->height.computed);
433     // original width/height when drag started
434     gdouble w_orig = opposite_x - origin[NR::X];
435     gdouble h_orig = opposite_y - origin[NR::Y];
437     NR::Point const s = snap_knot_position(rect, p);
439     // mouse displacement since drag started
440     gdouble minx = s[NR::X] - origin[NR::X];
441     gdouble miny = s[NR::Y] - origin[NR::Y];
443     if (state & GDK_CONTROL_MASK) {
444         //original ratio
445         gdouble ratio = (w_orig / h_orig);
447         if (fabs(minx) > fabs(miny)) {
449             // snap to horizontal or diagonal
450             rect->x.computed = MIN(s[NR::X], opposite_x);
451             rect->width.computed = MAX(w_orig - minx, 0);
452             if (minx != 0 && fabs(miny/minx) > 0.5 * 1/ratio && (SGN(minx) == SGN(miny))) {
453                 // closer to the diagonal and in same-sign quarters, change both using ratio
454                 rect->y.computed = MIN(origin[NR::Y] + minx / ratio, opposite_y);
455                 rect->height.computed = MAX(h_orig - minx / ratio, 0);
456             } else {
457                 // closer to the horizontal, change only width, height is h_orig
458                 rect->y.computed = MIN(origin[NR::Y], opposite_y);
459                 rect->height.computed = MAX(h_orig, 0);
460             }
462         } else {
464             // snap to vertical or diagonal
465             rect->y.computed = MIN(s[NR::Y], opposite_y);
466             rect->height.computed = MAX(h_orig - miny, 0);
467             if (miny != 0 && fabs(minx/miny) > 0.5 *ratio && (SGN(minx) == SGN(miny))) {
468                 // closer to the diagonal and in same-sign quarters, change both using ratio
469                 rect->x.computed = MIN(origin[NR::X] + miny * ratio, opposite_x);
470                 rect->width.computed = MAX(w_orig - miny * ratio, 0);
471             } else {
472                 // closer to the vertical, change only height, width is w_orig
473                 rect->x.computed = MIN(origin[NR::X], opposite_x);
474                 rect->width.computed = MAX(w_orig, 0);
475             }
477         }
479         rect->width._set = rect->height._set = rect->x._set = rect->y._set = true;
481     } else {
482         // move freely
483         rect->x.computed = MIN(s[NR::X], opposite_x);
484         rect->width.computed = MAX(w_orig - minx, 0);
485         rect->y.computed = MIN(s[NR::Y], opposite_y);
486         rect->height.computed = MAX(h_orig - miny, 0);
487         rect->width._set = rect->height._set = rect->x._set = rect->y._set = true;
488     }
490     sp_rect_clamp_radii(rect);
492     ((SPObject *)rect)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
495 static SPKnotHolder *sp_rect_knot_holder(SPItem *item, SPDesktop *desktop)
497     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
499     sp_knot_holder_add_full(
500       knot_holder, sp_rect_rx_set, sp_rect_rx_get, sp_rect_rx_knot_click,
501       SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR,
502       _("Adjust the <b>horizontal rounding</b> radius; with <b>Ctrl</b> to make the vertical "
503         "radius the same"));
505     sp_knot_holder_add_full(
506       knot_holder, sp_rect_ry_set, sp_rect_ry_get, sp_rect_ry_knot_click,
507       SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR,
508       _("Adjust the <b>vertical rounding</b> radius; with <b>Ctrl</b> to make the horizontal "
509         "radius the same")
510       );
512     sp_knot_holder_add_full(
513       knot_holder, sp_rect_wh_set, sp_rect_wh_get, NULL,
514       SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR,
515       _("Adjust the <b>width and height</b> of the rectangle; with <b>Ctrl</b> to lock ratio "
516         "or stretch in one dimension only")
517       );
519     sp_knot_holder_add_full(
520       knot_holder, sp_rect_xy_set, sp_rect_xy_get, NULL,
521       SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR,
522       _("Adjust the <b>width and height</b> of the rectangle; with <b>Ctrl</b> to lock ratio "
523         "or stretch in one dimension only")
524       );
526     sp_pat_knot_holder(item, knot_holder);
527     return knot_holder;
530 /* 3D Box */
532 static void sp_3dbox_knot_set(SPItem *item, guint knot_id, Box3D::Axis direction,
533                               NR::Point const &new_pos, NR::Point const &origin, guint state)
535     g_assert(item != NULL);
536     SP3DBox *box = SP_3DBOX(item);
538     // FIXME: Why must the coordinates be flipped vertically???
539     SPDocument *doc = SP_OBJECT_DOCUMENT(box);
540     gdouble height = sp_document_height(doc);
542     NR::Matrix const i2d (sp_item_i2d_affine (item));
543     if (direction == Box3D::Z) {
544          sp_3dbox_move_corner_in_Z_direction (box, knot_id, new_pos * i2d, !(state & GDK_SHIFT_MASK));
545     } else {
546         sp_3dbox_move_corner_in_XY_plane (box, knot_id, new_pos * i2d, (state & GDK_SHIFT_MASK) ? direction : Box3D::XY);
547     }
548     sp_3dbox_update_curves (box);
549     sp_3dbox_set_ratios (box);
552 static NR::Point sp_3dbox_knot_get(SPItem *item, guint knot_id)
554     g_assert(item != NULL);
555     SP3DBox *box = SP_3DBOX(item);
557     NR::Matrix const i2d (sp_item_i2d_affine (item));
558     return sp_3dbox_get_corner(box, knot_id) * i2d;
561 static void sp_3dbox_knot1_set(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
563     sp_3dbox_knot_set (item, 1, Box3D::Y, new_pos, origin, state);
566 /*
567 static void sp_3dbox_knot1_set_constrained(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
569     sp_3dbox_knot_set (item, 1, Box3D::Y, new_pos, origin, state ^ GDK_SHIFT_MASK);
571 */
573 static void sp_3dbox_knot2_set(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
575     sp_3dbox_knot_set (item, 2, Box3D::X, new_pos, origin, state);
578 /*
579 static void sp_3dbox_knot2_set_constrained(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
581     sp_3dbox_knot_set (item, 2, Box3D::X, new_pos, origin, state ^ GDK_SHIFT_MASK);
584 static void sp_3dbox_knot3_set(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
586     if (!(state & GDK_SHIFT_MASK)) {
587         sp_3dbox_knot_set (item, 3, Box3D::Y, new_pos, origin, state);
588     } else {
589         sp_3dbox_knot_set (item, 3, Box3D::Z, new_pos, origin, state ^ GDK_SHIFT_MASK);
590     }
592 */
594 static void sp_3dbox_knot5_set(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
596     sp_3dbox_knot_set (item, 5, Box3D::Z, new_pos, origin, state);
599 /*
600 static void sp_3dbox_knot7_set(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
602     sp_3dbox_knot_set (item, 7, Box3D::Z, new_pos, origin, state);
604 */
606 // defined a uniform behaviour for all knots
607 static void sp_3dbox_knot_set_uniformly(SPItem *item, guint knot_id, Box3D::Axis direction, NR::Point const &new_pos, NR::Point const &origin, guint state)
609     g_assert(item != NULL);
610     SP3DBox *box = SP_3DBOX(item);
612     NR::Matrix const i2d (sp_item_i2d_affine (item));
613     if (direction == Box3D::Z) {
614         sp_3dbox_move_corner_in_Z_direction (box, knot_id, new_pos * i2d, !(state & GDK_SHIFT_MASK));
615     } else {
616         sp_3dbox_move_corner_in_Z_direction (box, knot_id, new_pos * i2d,  (state & GDK_SHIFT_MASK));
617     }
618     sp_3dbox_update_curves (box);
619     sp_3dbox_set_ratios (box);
622 static void sp_3dbox_knot0_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
624     sp_3dbox_knot_set_uniformly(item, 0, Box3D::XY, new_pos, origin, state);
627 static void sp_3dbox_knot1_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
629     sp_3dbox_knot_set_uniformly(item, 1, Box3D::XY, new_pos, origin, state);
632 static void sp_3dbox_knot2_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
634     sp_3dbox_knot_set_uniformly(item, 2, Box3D::XY, new_pos, origin, state);
637 static void sp_3dbox_knot3_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
639     sp_3dbox_knot_set_uniformly(item, 3, Box3D::XY, new_pos, origin, state);
642 static void sp_3dbox_knot4_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
644     sp_3dbox_knot_set_uniformly(item, 4, Box3D::Z, new_pos, origin, state);
647 static void sp_3dbox_knot5_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
649     sp_3dbox_knot_set_uniformly(item, 5, Box3D::Z, new_pos, origin, state);
652 static void sp_3dbox_knot6_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
654     sp_3dbox_knot_set_uniformly(item, 6, Box3D::Z, new_pos, origin, state);
657 static void sp_3dbox_knot7_set_uniformly(SPItem *item, NR::Point const &new_pos, NR::Point const &origin, guint state)
659     sp_3dbox_knot_set_uniformly(item, 7, Box3D::Z, new_pos, origin, state);
662 static NR::Point sp_3dbox_knot0_get(SPItem *item)
664     return sp_3dbox_knot_get(item, 0);
667 static NR::Point sp_3dbox_knot1_get(SPItem *item)
669     return sp_3dbox_knot_get(item, 1);
672 static NR::Point sp_3dbox_knot2_get(SPItem *item)
674     return sp_3dbox_knot_get(item, 2);
677 static NR::Point sp_3dbox_knot3_get(SPItem *item)
679     return sp_3dbox_knot_get(item, 3);
682 static NR::Point sp_3dbox_knot4_get(SPItem *item)
684     return sp_3dbox_knot_get(item, 4);
687 static NR::Point sp_3dbox_knot5_get(SPItem *item)
689     return sp_3dbox_knot_get(item, 5);
692 static NR::Point sp_3dbox_knot6_get(SPItem *item)
694     return sp_3dbox_knot_get(item, 6);
697 static NR::Point sp_3dbox_knot7_get(SPItem *item)
699     return sp_3dbox_knot_get(item, 7);
703 //static
704 SPKnotHolder *
705 sp_3dbox_knot_holder(SPItem *item, SPDesktop *desktop, guint number_of_handles)
707     g_assert(item != NULL);
708     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
710     switch (number_of_handles) {
711     case 3:
712         sp_knot_holder_add(knot_holder, sp_3dbox_knot1_set, sp_3dbox_knot1_get, NULL,_("Resize box in X/Y direction"));
713         sp_knot_holder_add(knot_holder, sp_3dbox_knot2_set, sp_3dbox_knot2_get, NULL,_("Resize box in X/Y direction"));
714         sp_knot_holder_add(knot_holder, sp_3dbox_knot5_set, sp_3dbox_knot5_get, NULL,_("Resize box in Z direction"));
715         sp_pat_knot_holder(item, knot_holder);
716         break;
717     case 4:
718         /***
719         sp_knot_holder_add(knot_holder, sp_3dbox_knot1_set_constrained, sp_3dbox_knot1_get, NULL,_("Resize box in X/Y direction"));
720         sp_knot_holder_add(knot_holder, sp_3dbox_knot2_set_constrained, sp_3dbox_knot2_get, NULL,_("Resize box in X/Y direction"));
721         sp_knot_holder_add_full(knot_holder, sp_3dbox_knot3_set, sp_3dbox_knot3_get, NULL,
722                                 SP_KNOT_SHAPE_CIRCLE,  SP_KNOT_MODE_XOR, _("Resize box in Y direction"));
723         sp_knot_holder_add(knot_holder, sp_3dbox_knot7_set, sp_3dbox_knot7_get, NULL,_("Resize box in Z direction"));
724         ***/
725         sp_knot_holder_add(knot_holder, sp_3dbox_knot0_set_uniformly, sp_3dbox_knot0_get, NULL,
726                            _("Resize box in X/Y direction; with <b>Shift</b> along the Z axis"));
727         sp_knot_holder_add(knot_holder, sp_3dbox_knot1_set_uniformly, sp_3dbox_knot1_get, NULL,
728                            _("Resize box in X/Y direction; with <b>Shift</b> along the Z axis"));
729         sp_knot_holder_add(knot_holder, sp_3dbox_knot2_set_uniformly, sp_3dbox_knot2_get, NULL,
730                            _("Resize box in X/Y direction; with <b>Shift</b> along the Z axis"));
731         sp_knot_holder_add(knot_holder, sp_3dbox_knot3_set_uniformly, sp_3dbox_knot3_get, NULL,
732                            _("Resize box in X/Y direction; with <b>Shift</b> along the Z axis"));
733         sp_knot_holder_add(knot_holder, sp_3dbox_knot4_set_uniformly, sp_3dbox_knot4_get, NULL,
734                            _("Resize box along the Z axis; with <b>Shift</b> in X/Y direction"));
735         sp_knot_holder_add(knot_holder, sp_3dbox_knot5_set_uniformly, sp_3dbox_knot5_get, NULL,
736                            _("Resize box along the Z axis; with <b>Shift</b> in X/Y direction"));
737         sp_knot_holder_add(knot_holder, sp_3dbox_knot6_set_uniformly, sp_3dbox_knot6_get, NULL,
738                            _("Resize box along the Z axis; with <b>Shift</b> in X/Y direction"));
739         sp_knot_holder_add(knot_holder, sp_3dbox_knot7_set_uniformly, sp_3dbox_knot7_get, NULL,
740                            _("Resize box along the Z axis; with <b>Shift</b> in X/Y direction"));
741         sp_pat_knot_holder(item, knot_holder);
742         break;
743     default:
744         g_print ("Wrong number of handles (%d): Not implemented yet.\n", number_of_handles);
745         break;
746     }
748     return knot_holder;
751 /* SPArc */
753 /*
754  * return values:
755  *   1  : inside
756  *   0  : on the curves
757  *   -1 : outside
758  */
759 static gint
760 sp_genericellipse_side(SPGenericEllipse *ellipse, NR::Point const &p)
762     gdouble dx = (p[NR::X] - ellipse->cx.computed) / ellipse->rx.computed;
763     gdouble dy = (p[NR::Y] - ellipse->cy.computed) / ellipse->ry.computed;
765     gdouble s = dx * dx + dy * dy;
766     if (s < 1.0) return 1;
767     if (s > 1.0) return -1;
768     return 0;
771 static void
772 sp_arc_start_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
774     int snaps = prefs_get_int_attribute("options.rotationsnapsperpi", "value", 12);
776     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
777     SPArc *arc = SP_ARC(item);
779     ge->closed = (sp_genericellipse_side(ge, p) == -1) ? TRUE : FALSE;
781     NR::Point delta = p - NR::Point(ge->cx.computed, ge->cy.computed);
782     NR::scale sc(ge->rx.computed, ge->ry.computed);
783     ge->start = atan2(delta * sc.inverse());
784     if ( ( state & GDK_CONTROL_MASK )
785          && snaps )
786     {
787         ge->start = sp_round(ge->start, M_PI/snaps);
788     }
789     sp_genericellipse_normalize(ge);
790     ((SPObject *)arc)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
793 static NR::Point sp_arc_start_get(SPItem *item)
795     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
796     SPArc *arc = SP_ARC(item);
798     return sp_arc_get_xy(arc, ge->start);
801 static void
802 sp_arc_end_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
804     int snaps = prefs_get_int_attribute("options.rotationsnapsperpi", "value", 12);
806     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
807     SPArc *arc = SP_ARC(item);
809     ge->closed = (sp_genericellipse_side(ge, p) == -1) ? TRUE : FALSE;
811     NR::Point delta = p - NR::Point(ge->cx.computed, ge->cy.computed);
812     NR::scale sc(ge->rx.computed, ge->ry.computed);
813     ge->end = atan2(delta * sc.inverse());
814     if ( ( state & GDK_CONTROL_MASK )
815          && snaps )
816     {
817         ge->end = sp_round(ge->end, M_PI/snaps);
818     }
819     sp_genericellipse_normalize(ge);
820     ((SPObject *)arc)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
823 static NR::Point sp_arc_end_get(SPItem *item)
825     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
826     SPArc *arc = SP_ARC(item);
828     return sp_arc_get_xy(arc, ge->end);
831 static void
832 sp_arc_startend_click(SPItem *item, guint state)
834     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
836     if (state & GDK_SHIFT_MASK) {
837         ge->end = ge->start = 0;
838         ((SPObject *)ge)->updateRepr();
839     }
843 static void
844 sp_arc_rx_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
846     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
847     SPArc *arc = SP_ARC(item);
848     
849     NR::Point const s = snap_knot_position(arc, p);
851     ge->rx.computed = fabs( ge->cx.computed - s[NR::X] );
853     if ( state & GDK_CONTROL_MASK ) {
854         ge->ry.computed = ge->rx.computed;
855     }
857     ((SPObject *)arc)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
860 static NR::Point sp_arc_rx_get(SPItem *item)
862     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
864     return (NR::Point(ge->cx.computed, ge->cy.computed) -  NR::Point(ge->rx.computed, 0));
867 static void
868 sp_arc_ry_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
870     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
871     SPArc *arc = SP_ARC(item);
872     
873     NR::Point const s = snap_knot_position(arc, p);
875     ge->ry.computed = fabs( ge->cy.computed - s[NR::Y] );
877     if ( state & GDK_CONTROL_MASK ) {
878         ge->rx.computed = ge->ry.computed;
879     }
881     ((SPObject *)arc)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
884 static NR::Point sp_arc_ry_get(SPItem *item)
886     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
888     return (NR::Point(ge->cx.computed, ge->cy.computed) -  NR::Point(0, ge->ry.computed));
891 static void
892 sp_arc_rx_click(SPItem *item, guint state)
894     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
896     if (state & GDK_CONTROL_MASK) {
897         ge->ry.computed = ge->rx.computed;
898         ((SPObject *)ge)->updateRepr();
899     }
902 static void
903 sp_arc_ry_click(SPItem *item, guint state)
905     SPGenericEllipse *ge = SP_GENERICELLIPSE(item);
907     if (state & GDK_CONTROL_MASK) {
908         ge->rx.computed = ge->ry.computed;
909         ((SPObject *)ge)->updateRepr();
910     }
913 static SPKnotHolder *
914 sp_arc_knot_holder(SPItem *item, SPDesktop *desktop)
916     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
918     sp_knot_holder_add_full(knot_holder, sp_arc_rx_set, sp_arc_rx_get, sp_arc_rx_click,
919                             SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR,
920                             _("Adjust ellipse <b>width</b>, with <b>Ctrl</b> to make circle"));
921     sp_knot_holder_add_full(knot_holder, sp_arc_ry_set, sp_arc_ry_get, sp_arc_ry_click,
922                             SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR,
923                             _("Adjust ellipse <b>height</b>, with <b>Ctrl</b> to make circle"));
924     sp_knot_holder_add_full(knot_holder, sp_arc_start_set, sp_arc_start_get, sp_arc_startend_click,
925                             SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR,
926                             _("Position the <b>start point</b> of the arc or segment; with <b>Ctrl</b> to snap angle; drag <b>inside</b> the ellipse for arc, <b>outside</b> for segment"));
927     sp_knot_holder_add_full(knot_holder, sp_arc_end_set, sp_arc_end_get, sp_arc_startend_click,
928                             SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR,
929                             _("Position the <b>end point</b> of the arc or segment; with <b>Ctrl</b> to snap angle; drag <b>inside</b> the ellipse for arc, <b>outside</b> for segment"));
931     sp_pat_knot_holder(item, knot_holder);
933     return knot_holder;
936 /* SPStar */
938 static void
939 sp_star_knot1_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
941     SPStar *star = SP_STAR(item);
942     
943     NR::Point const s = snap_knot_position(star, p);
945     NR::Point d = s - star->center;
947     double arg1 = atan2(d);
948     double darg1 = arg1 - star->arg[0];
950     if (state & GDK_MOD1_MASK) {
951         star->randomized = darg1/(star->arg[0] - star->arg[1]);
952     } else if (state & GDK_SHIFT_MASK) {
953         star->rounded = darg1/(star->arg[0] - star->arg[1]);
954     } else if (state & GDK_CONTROL_MASK) {
955         star->r[0]    = L2(d);
956     } else {
957         star->r[0]    = L2(d);
958         star->arg[0]  = arg1;
959         star->arg[1] += darg1;
960     }
961     ((SPObject *)star)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
964 static void
965 sp_star_knot2_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
967     SPStar *star = SP_STAR(item);
968     
969     NR::Point const s = snap_knot_position(star, p);
970     
971     if (star->flatsided == false) {
972         NR::Point d = s - star->center;
974         double arg1 = atan2(d);
975         double darg1 = arg1 - star->arg[1];
977         if (state & GDK_MOD1_MASK) {
978             star->randomized = darg1/(star->arg[0] - star->arg[1]);
979         } else if (state & GDK_SHIFT_MASK) {
980             star->rounded = fabs(darg1/(star->arg[0] - star->arg[1]));
981         } else if (state & GDK_CONTROL_MASK) {
982             star->r[1]   = L2(d);
983             star->arg[1] = star->arg[0] + M_PI / star->sides;
984         }
985         else {
986             star->r[1]   = L2(d);
987             star->arg[1] = atan2(d);
988         }
989         ((SPObject *)star)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
990     }
993 static NR::Point sp_star_knot1_get(SPItem *item)
995     g_assert(item != NULL);
997     SPStar *star = SP_STAR(item);
999     return sp_star_get_xy(star, SP_STAR_POINT_KNOT1, 0);
1003 static NR::Point sp_star_knot2_get(SPItem *item)
1005     g_assert(item != NULL);
1007     SPStar *star = SP_STAR(item);
1009     return sp_star_get_xy(star, SP_STAR_POINT_KNOT2, 0);
1012 static void
1013 sp_star_knot_click(SPItem *item, guint state)
1015     SPStar *star = SP_STAR(item);
1017     if (state & GDK_MOD1_MASK) {
1018         star->randomized = 0;
1019         ((SPObject *)star)->updateRepr();
1020     } else if (state & GDK_SHIFT_MASK) {
1021         star->rounded = 0;
1022         ((SPObject *)star)->updateRepr();
1023     } else if (state & GDK_CONTROL_MASK) {
1024         star->arg[1] = star->arg[0] + M_PI / star->sides;
1025         ((SPObject *)star)->updateRepr();
1026     }
1029 static SPKnotHolder *
1030 sp_star_knot_holder(SPItem *item, SPDesktop *desktop)
1032     /* we don't need to get parent knot_holder */
1033     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
1034     g_assert(item != NULL);
1036     SPStar *star = SP_STAR(item);
1038     sp_knot_holder_add(knot_holder, sp_star_knot1_set, sp_star_knot1_get, sp_star_knot_click,
1039                        _("Adjust the <b>tip radius</b> of the star or polygon; with <b>Shift</b> to round; with <b>Alt</b> to randomize"));
1040     if (star->flatsided == false)
1041         sp_knot_holder_add(knot_holder, sp_star_knot2_set, sp_star_knot2_get, sp_star_knot_click,
1042                            _("Adjust the <b>base radius</b> of the star; with <b>Ctrl</b> to keep star rays radial (no skew); with <b>Shift</b> to round; with <b>Alt</b> to randomize"));
1044     sp_pat_knot_holder(item, knot_holder);
1046     return knot_holder;
1049 /* SPSpiral */
1051 /*
1052  * set attributes via inner (t=t0) knot point:
1053  *   [default] increase/decrease inner point
1054  *   [shift]   increase/decrease inner and outer arg synchronizely
1055  *   [control] constrain inner arg to round per PI/4
1056  */
1057 static void
1058 sp_spiral_inner_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
1060     int snaps = prefs_get_int_attribute("options.rotationsnapsperpi", "value", 12);
1062     SPSpiral *spiral = SP_SPIRAL(item);
1064     gdouble   dx = p[NR::X] - spiral->cx;
1065     gdouble   dy = p[NR::Y] - spiral->cy;
1067     if (state & GDK_MOD1_MASK) {
1068         // adjust divergence by vertical drag, relative to rad
1069         double new_exp = (spiral->rad + dy)/(spiral->rad);
1070         spiral->exp = new_exp > 0? new_exp : 0;
1071     } else {
1072         // roll/unroll from inside
1073         gdouble   arg_t0;
1074         sp_spiral_get_polar(spiral, spiral->t0, NULL, &arg_t0);
1076         gdouble   arg_tmp = atan2(dy, dx) - arg_t0;
1077         gdouble   arg_t0_new = arg_tmp - floor((arg_tmp+M_PI)/(2.0*M_PI))*2.0*M_PI + arg_t0;
1078         spiral->t0 = (arg_t0_new - spiral->arg) / (2.0*M_PI*spiral->revo);
1080         /* round inner arg per PI/snaps, if CTRL is pressed */
1081         if ( ( state & GDK_CONTROL_MASK )
1082              && ( fabs(spiral->revo) > SP_EPSILON_2 )
1083              && ( snaps != 0 ) ) {
1084             gdouble arg = 2.0*M_PI*spiral->revo*spiral->t0 + spiral->arg;
1085             spiral->t0 = (sp_round(arg, M_PI/snaps) - spiral->arg)/(2.0*M_PI*spiral->revo);
1086         }
1088         spiral->t0 = CLAMP(spiral->t0, 0.0, 0.999);
1089     }
1091     ((SPObject *)spiral)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
1094 /*
1095  * set attributes via outer (t=1) knot point:
1096  *   [default] increase/decrease revolution factor
1097  *   [control] constrain inner arg to round per PI/4
1098  */
1099 static void
1100 sp_spiral_outer_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
1102     int snaps = prefs_get_int_attribute("options.rotationsnapsperpi", "value", 12);
1104     SPSpiral *spiral = SP_SPIRAL(item);
1106     gdouble  dx = p[NR::X] - spiral->cx;
1107     gdouble  dy = p[NR::Y] - spiral->cy;
1109     if (state & GDK_SHIFT_MASK) { // rotate without roll/unroll
1110         spiral->arg = atan2(dy, dx) - 2.0*M_PI*spiral->revo;
1111         if (!(state & GDK_MOD1_MASK)) {
1112             // if alt not pressed, change also rad; otherwise it is locked
1113             spiral->rad = MAX(hypot(dx, dy), 0.001);
1114         }
1115         if ( ( state & GDK_CONTROL_MASK )
1116              && snaps ) {
1117             spiral->arg = sp_round(spiral->arg, M_PI/snaps);
1118         }
1119     } else { // roll/unroll
1120         // arg of the spiral outer end
1121         double arg_1;
1122         sp_spiral_get_polar(spiral, 1, NULL, &arg_1);
1124         // its fractional part after the whole turns are subtracted
1125         double arg_r = arg_1 - sp_round(arg_1, 2.0*M_PI);
1127         // arg of the mouse point relative to spiral center
1128         double mouse_angle = atan2(dy, dx);
1129         if (mouse_angle < 0)
1130             mouse_angle += 2*M_PI;
1132         // snap if ctrl
1133         if ( ( state & GDK_CONTROL_MASK ) && snaps ) {
1134             mouse_angle = sp_round(mouse_angle, M_PI/snaps);
1135         }
1137         // by how much we want to rotate the outer point
1138         double diff = mouse_angle - arg_r;
1139         if (diff > M_PI)
1140             diff -= 2*M_PI;
1141         else if (diff < -M_PI)
1142             diff += 2*M_PI;
1144         // calculate the new rad;
1145         // the value of t corresponding to the angle arg_1 + diff:
1146         double t_temp = ((arg_1 + diff) - spiral->arg)/(2*M_PI*spiral->revo);
1147         // the rad at that t:
1148         double rad_new = 0;
1149         if (t_temp > spiral->t0)
1150             sp_spiral_get_polar(spiral, t_temp, &rad_new, NULL);
1152         // change the revo (converting diff from radians to the number of turns)
1153         spiral->revo += diff/(2*M_PI);
1154         if (spiral->revo < 1e-3)
1155             spiral->revo = 1e-3;
1157         // if alt not pressed and the values are sane, change the rad
1158         if (!(state & GDK_MOD1_MASK) && rad_new > 1e-3 && rad_new/spiral->rad < 2) {
1159             // adjust t0 too so that the inner point stays unmoved
1160             double r0;
1161             sp_spiral_get_polar(spiral, spiral->t0, &r0, NULL);
1162             spiral->rad = rad_new;
1163             spiral->t0 = pow(r0 / spiral->rad, 1.0/spiral->exp);
1164         }
1165         if (!isFinite(spiral->t0)) spiral->t0 = 0.0;
1166         spiral->t0 = CLAMP(spiral->t0, 0.0, 0.999);
1167     }
1169     ((SPObject *)spiral)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
1172 static NR::Point sp_spiral_inner_get(SPItem *item)
1174     SPSpiral *spiral = SP_SPIRAL(item);
1176     return sp_spiral_get_xy(spiral, spiral->t0);
1179 static NR::Point sp_spiral_outer_get(SPItem *item)
1181     SPSpiral *spiral = SP_SPIRAL(item);
1183     return sp_spiral_get_xy(spiral, 1.0);
1186 static void
1187 sp_spiral_inner_click(SPItem *item, guint state)
1189     SPSpiral *spiral = SP_SPIRAL(item);
1191     if (state & GDK_MOD1_MASK) {
1192         spiral->exp = 1;
1193         ((SPObject *)spiral)->updateRepr();
1194     } else if (state & GDK_SHIFT_MASK) {
1195         spiral->t0 = 0;
1196         ((SPObject *)spiral)->updateRepr();
1197     }
1200 static SPKnotHolder *
1201 sp_spiral_knot_holder(SPItem *item, SPDesktop *desktop)
1203     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
1205     sp_knot_holder_add(knot_holder, sp_spiral_inner_set, sp_spiral_inner_get, sp_spiral_inner_click,
1206                        _("Roll/unroll the spiral from <b>inside</b>; with <b>Ctrl</b> to snap angle; with <b>Alt</b> to converge/diverge"));
1207     sp_knot_holder_add(knot_holder, sp_spiral_outer_set, sp_spiral_outer_get, NULL,
1208                        _("Roll/unroll the spiral from <b>outside</b>; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to scale/rotate"));
1210     sp_pat_knot_holder(item, knot_holder);
1212     return knot_holder;
1215 /* SPOffset */
1217 static void
1218 sp_offset_offset_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
1220     SPOffset *offset = SP_OFFSET(item);
1222     offset->rad = sp_offset_distance_to_original(offset, p);
1223     offset->knot = p;
1224     offset->knotSet = true;
1226     ((SPObject *)offset)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
1230 static NR::Point sp_offset_offset_get(SPItem *item)
1232     SPOffset *offset = SP_OFFSET(item);
1234     NR::Point np;
1235     sp_offset_top_point(offset,&np);
1236     return np;
1239 static SPKnotHolder *
1240 sp_offset_knot_holder(SPItem *item, SPDesktop *desktop)
1242     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
1244     sp_knot_holder_add(knot_holder, sp_offset_offset_set, sp_offset_offset_get, NULL,
1245                        _("Adjust the <b>offset distance</b>"));
1247     sp_pat_knot_holder(item, knot_holder);
1249     return knot_holder;
1252 static SPKnotHolder *
1253 sp_misc_knot_holder(SPItem *item, SPDesktop *desktop) // FIXME: eliminate, instead make a pattern-drag similar to gradient-drag
1255     if ((SP_OBJECT(item)->style->fill.type == SP_PAINT_TYPE_PAINTSERVER)
1256         && SP_IS_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style)))
1257     {
1258         SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, item, NULL);
1260         sp_pat_knot_holder(item, knot_holder);
1262         return knot_holder;
1263     }
1264     return NULL;
1267 static void
1268 sp_pat_knot_holder(SPItem *item, SPKnotHolder *knot_holder)
1270     if ((SP_OBJECT(item)->style->fill.type == SP_PAINT_TYPE_PAINTSERVER)
1271         && SP_IS_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style)))
1272     {
1273         sp_knot_holder_add_full(knot_holder, sp_pattern_xy_set, sp_pattern_xy_get, NULL, SP_KNOT_SHAPE_CROSS, SP_KNOT_MODE_XOR,
1274                                 // TRANSLATORS: This refers to the pattern that's inside the object
1275                                 _("<b>Move</b> the pattern fill inside the object"));
1276         sp_knot_holder_add_full(knot_holder, sp_pattern_scale_set, sp_pattern_scale_get, NULL, SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR,
1277                                 _("<b>Scale</b> the pattern fill uniformly"));
1278         sp_knot_holder_add_full(knot_holder, sp_pattern_angle_set, sp_pattern_angle_get, NULL, SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR,
1279                                 _("<b>Rotate</b> the pattern fill; with <b>Ctrl</b> to snap angle"));
1280     }
1283 static NR::Point sp_flowtext_corner_get(SPItem *item)
1285     SPRect *rect = SP_RECT(item);
1287     return NR::Point(rect->x.computed + rect->width.computed, rect->y.computed + rect->height.computed);
1290 static void
1291 sp_flowtext_corner_set(SPItem *item, NR::Point const &p, NR::Point const &origin, guint state)
1293     SPRect *rect = SP_RECT(item);
1295     sp_rect_wh_set_internal(rect, p, origin, state);
1298 static SPKnotHolder *
1299 sp_flowtext_knot_holder(SPItem *item, SPDesktop *desktop)
1301     SPKnotHolder *knot_holder = sp_knot_holder_new(desktop, SP_FLOWTEXT(item)->get_frame(NULL), NULL);
1303     sp_knot_holder_add(knot_holder, sp_flowtext_corner_set, sp_flowtext_corner_get, NULL,
1304                        _("Drag to resize the <b>flowed text frame</b>"));
1306     return knot_holder;
1310 /*
1311   Local Variables:
1312   mode:c++
1313   c-file-style:"stroustrup"
1314   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1315   indent-tabs-mode:nil
1316   fill-column:99
1317   End:
1318 */
1319 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :