1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
#define __KNOT_HOLDER_C__
/*
* Container for SPKnot visual handles
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* bulia byak <buliabyak@users.sf.net>
* Maximilian Albert <maximilian.albert@gmail.com>
*
* Copyright (C) 2001-2008 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "document.h"
#include "sp-shape.h"
#include "knot.h"
#include "knotholder.h"
#include "rect-context.h"
#include "sp-rect.h"
#include "arc-context.h"
#include "sp-ellipse.h"
#include "star-context.h"
#include "sp-star.h"
#include "spiral-context.h"
#include "sp-spiral.h"
#include "sp-offset.h"
#include "box3d.h"
#include "sp-pattern.h"
#include "style.h"
#include "live_effects/lpeobject.h"
#include "xml/repr.h" // for debugging only
#include <libnr/nr-matrix-div.h>
#include <glibmm/i18n.h>
class SPDesktop;
KnotHolder::KnotHolder(SPDesktop *desktop, SPItem *item, SPKnotHolderReleasedFunc relhandler)
{
Inkscape::XML::Node *repr = SP_OBJECT(item)->repr;
if (!desktop || !item || !SP_IS_ITEM(item)) {
g_print ("Error! Throw an exception, please!\n");
}
this->desktop = desktop;
this->item = item;
g_object_ref(G_OBJECT(item)); // TODO: is this still needed after C++-ification?
this->released = relhandler;
this->repr = repr;
this->local_change = FALSE;
}
KnotHolder::~KnotHolder() {
g_object_unref(G_OBJECT(item));
for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) {
KnotHolderEntity* e = (*i);
if (!e->isLPEParam()) {
// knotholder entity may be deleted
delete (*i);
} else {
// we must not delete the entity since it's an LPE parameter,
// but the handle should be destroyed
g_object_unref(e->knot);
}
(*i) = NULL;
}
entity.clear(); // this shouldn't be necessary, though
}
/**
* \param p In desktop coordinates.
*/
void
KnotHolder::update_knots()
{
NR::Matrix const i2d(from_2geom(sp_item_i2d_affine(item)));
for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) {
KnotHolderEntity *e = *i;
e->update_knot();
}
}
void
KnotHolder::knot_clicked_handler(SPKnot *knot, guint state)
{
KnotHolder *knot_holder = this;
for(std::list<KnotHolderEntity *>::iterator i = knot_holder->entity.begin(); i != knot_holder->entity.end(); ++i) {
KnotHolderEntity *e = *i;
if (e->knot == knot) {
// no need to test whether knot_click exists since it's virtual now
e->knot_click(state);
break;
}
}
if (SP_IS_SHAPE(item)) {
sp_shape_set_shape(SP_SHAPE(item));
}
knot_holder->update_knots();
unsigned int object_verb = SP_VERB_NONE;
if (SP_IS_RECT(item))
object_verb = SP_VERB_CONTEXT_RECT;
else if (SP_IS_BOX3D(item))
object_verb = SP_VERB_CONTEXT_3DBOX;
else if (SP_IS_GENERICELLIPSE(item))
object_verb = SP_VERB_CONTEXT_ARC;
else if (SP_IS_STAR(item))
object_verb = SP_VERB_CONTEXT_STAR;
else if (SP_IS_SPIRAL(item))
object_verb = SP_VERB_CONTEXT_SPIRAL;
else if (SP_IS_OFFSET(item)) {
if (SP_OFFSET(item)->sourceHref)
object_verb = SP_VERB_SELECTION_LINKED_OFFSET;
else
object_verb = SP_VERB_SELECTION_DYNAMIC_OFFSET;
}
// for drag, this is done by ungrabbed_handler, but for click we must do it here
sp_document_done(SP_OBJECT_DOCUMENT(item), object_verb,
_("Change handle"));
}
void
KnotHolder::knot_moved_handler(SPKnot *knot, NR::Point const *p, guint state)
{
// this was a local change and the knotholder does not need to be recreated:
this->local_change = TRUE;
for(std::list<KnotHolderEntity *>::iterator i = this->entity.begin(); i != this->entity.end(); ++i) {
KnotHolderEntity *e = *i;
if (e->knot == knot) {
NR::Point const q = *p / from_2geom(sp_item_i2d_affine(item));
e->knot_set(q, e->knot->drag_origin / from_2geom(sp_item_i2d_affine(item)), state);
break;
}
}
if (SP_IS_SHAPE (item)) {
sp_shape_set_shape(SP_SHAPE (item));
}
this->update_knots();
}
void
KnotHolder::knot_ungrabbed_handler(SPKnot *knot)
{
if (this->released) {
this->released(this->item);
} else {
SPObject *object = (SPObject *) this->item;
object->updateRepr();
/* do cleanup tasks (e.g., for LPE items write the parameter values
* that were changed by dragging the handle to SVG)
*/
if (SP_IS_LPE_ITEM(item)) {
// This writes all parameters to SVG. Is this sufficiently efficient or should we only write
// the ones that were changed (e.g., via the individual handles' onKnotUngrabbed() method?
Inkscape::LivePathEffect::Effect *lpe = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item));
if (lpe) {
LivePathEffectObject *lpeobj = lpe->getLPEObj();
SP_OBJECT(lpeobj)->updateRepr();
}
}
// this was once used to write individual parameter values to SVG but this is now done globally above;
// we leave the calls to onKnotUngrabbed, anyway, in case any other cleanup tasks need to be done
for(std::list<KnotHolderEntity *>::iterator i = this->entity.begin(); i != this->entity.end(); ++i) {
KnotHolderEntity *e = *i;
if (e->knot == knot) {
e->onKnotUngrabbed(); // for most KnotHolderEntitys this does nothing
}
}
unsigned int object_verb = SP_VERB_NONE;
if (SP_IS_RECT(object))
object_verb = SP_VERB_CONTEXT_RECT;
else if (SP_IS_BOX3D(object))
object_verb = SP_VERB_CONTEXT_3DBOX;
else if (SP_IS_GENERICELLIPSE(object))
object_verb = SP_VERB_CONTEXT_ARC;
else if (SP_IS_STAR(object))
object_verb = SP_VERB_CONTEXT_STAR;
else if (SP_IS_SPIRAL(object))
object_verb = SP_VERB_CONTEXT_SPIRAL;
else if (SP_IS_OFFSET(object)) {
if (SP_OFFSET(object)->sourceHref)
object_verb = SP_VERB_SELECTION_LINKED_OFFSET;
else
object_verb = SP_VERB_SELECTION_DYNAMIC_OFFSET;
}
sp_document_done(SP_OBJECT_DOCUMENT (object), object_verb,
_("Move handle"));
}
}
void
KnotHolder::add(KnotHolderEntity *e)
{
entity.push_back(e);
}
void
KnotHolder::add_pattern_knotholder()
{
if ((SP_OBJECT(item)->style->fill.isPaintserver())
&& SP_IS_PATTERN(SP_STYLE_FILL_SERVER(SP_OBJECT(item)->style)))
{
PatternKnotHolderEntityXY *entity_xy = new PatternKnotHolderEntityXY();
PatternKnotHolderEntityAngle *entity_angle = new PatternKnotHolderEntityAngle();
PatternKnotHolderEntityScale *entity_scale = new PatternKnotHolderEntityScale();
entity_xy->create(desktop, item, this,
// TRANSLATORS: This refers to the pattern that's inside the object
_("<b>Move</b> the pattern fill inside the object"),
SP_KNOT_SHAPE_CROSS);
entity_angle->create(desktop, item, this,
_("<b>Scale</b> the pattern fill uniformly"),
SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR);
entity_scale->create(desktop, item, this,
_("<b>Rotate</b> the pattern fill; with <b>Ctrl</b> to snap angle"),
SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR);
entity.push_back(entity_xy);
entity.push_back(entity_angle);
entity.push_back(entity_scale);
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|