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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
/*
* LPEToolContext: a context for a generic tool composed of subtools that are given by LPEs
*
* Authors:
* Maximilian Albert <maximilian.albert@gmail.com>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1998 The Free Software Foundation
* Copyright (C) 1999-2005 authors
* Copyright (C) 2001-2002 Ximian, Inc.
* Copyright (C) 2008 Maximilian Albert
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "config.h"
#include "forward.h"
#include "pixmaps/cursor-node.xpm"
#include "pixmaps/cursor-crosshairs.xpm"
#include <gtk/gtk.h>
#include "desktop.h"
#include "message-context.h"
#include "prefs-utils.h"
#include "shape-editor.h"
#include "selection.h"
#include "desktop-handles.h"
/**
#include <gdk/gdkkeysyms.h>
#include <glibmm/i18n.h>
#include <string>
#include <cstring>
#include <numeric>
#include "svg/svg.h"
#include "display/canvas-bpath.h"
#include "display/bezier-utils.h"
#include <glib/gmem.h>
#include "macros.h"
#include "document.h"
#include "selection.h"
#include "desktop-events.h"
#include "desktop-handles.h"
#include "desktop-affine.h"
#include "desktop-style.h"
#include "xml/repr.h"
#include "context-fns.h"
#include "sp-item.h"
#include "inkscape.h"
#include "color.h"
#include "rubberband.h"
#include "splivarot.h"
#include "sp-item-group.h"
#include "sp-shape.h"
#include "sp-path.h"
#include "sp-text.h"
#include "display/canvas-bpath.h"
#include "display/canvas-arena.h"
#include "livarot/Shape.h"
#include <2geom/isnan.h>
#include <2geom/pathvector.h>
**/
#include "lpe-tool-context.h"
static void sp_lpetool_context_class_init(SPLPEToolContextClass *klass);
static void sp_lpetool_context_init(SPLPEToolContext *erc);
static void sp_lpetool_context_dispose(GObject *object);
static void sp_lpetool_context_setup(SPEventContext *ec);
static void sp_lpetool_context_set(SPEventContext *ec, gchar const *key, gchar const *val);
static gint sp_lpetool_context_root_handler(SPEventContext *ec, GdkEvent *event);
void sp_lpetool_context_selection_changed(Inkscape::Selection *selection, gpointer data);
const int num_subtools = 4;
Inkscape::LivePathEffect::EffectType lpesubtools[] = {
Inkscape::LivePathEffect::LINE_SEGMENT,
Inkscape::LivePathEffect::ANGLE_BISECTOR,
Inkscape::LivePathEffect::CIRCLE_3PTS,
Inkscape::LivePathEffect::PERP_BISECTOR,
};
static SPPenContextClass *lpetool_parent_class = 0;
GType sp_lpetool_context_get_type(void)
{
static GType type = 0;
if (!type) {
GTypeInfo info = {
sizeof(SPLPEToolContextClass),
0, // base_init
0, // base_finalize
(GClassInitFunc)sp_lpetool_context_class_init,
0, // class_finalize
0, // class_data
sizeof(SPLPEToolContext),
0, // n_preallocs
(GInstanceInitFunc)sp_lpetool_context_init,
0 // value_table
};
type = g_type_register_static(SP_TYPE_PEN_CONTEXT, "SPLPEToolContext", &info, static_cast<GTypeFlags>(0));
}
return type;
}
static void
sp_lpetool_context_class_init(SPLPEToolContextClass *klass)
{
GObjectClass *object_class = (GObjectClass *) klass;
SPEventContextClass *event_context_class = (SPEventContextClass *) klass;
lpetool_parent_class = (SPPenContextClass*)g_type_class_peek_parent(klass);
object_class->dispose = sp_lpetool_context_dispose;
event_context_class->setup = sp_lpetool_context_setup;
event_context_class->set = sp_lpetool_context_set;
event_context_class->root_handler = sp_lpetool_context_root_handler;
}
static void
sp_lpetool_context_init(SPLPEToolContext *lc)
{
lc->cursor_shape = cursor_crosshairs_xpm;
lc->hot_x = 7;
lc->hot_y = 7;
new (&lc->sel_changed_connection) sigc::connection();
//lc->tool_state = LPETOOL_STATE_NODE;
}
static void
sp_lpetool_context_dispose(GObject *object)
{
SPLPEToolContext *lc = SP_LPETOOL_CONTEXT(object);
delete lc->shape_editor;
lc->sel_changed_connection.disconnect();
lc->sel_changed_connection.~connection();
G_OBJECT_CLASS(lpetool_parent_class)->dispose(object);
}
static void
sp_lpetool_context_setup(SPEventContext *ec)
{
SPLPEToolContext *lc = SP_LPETOOL_CONTEXT(ec);
if (((SPEventContextClass *) lpetool_parent_class)->setup)
((SPEventContextClass *) lpetool_parent_class)->setup(ec);
Inkscape::Selection *selection = sp_desktop_selection (ec->desktop);
SPItem *item = selection->singleItem();
lc->sel_changed_connection.disconnect();
lc->sel_changed_connection =
selection->connectChanged(sigc::bind(sigc::ptr_fun(&sp_lpetool_context_selection_changed), (gpointer)lc));
//lc->my_nc = new NodeContextCpp(lc->desktop, lc->prefs_repr, lc->key);
lc->shape_editor = new ShapeEditor(ec->desktop);
// TODO temp force:
ec->enableSelectionCue();
if (item) {
lc->shape_editor->set_item(item, SH_NODEPATH);
lc->shape_editor->set_item(item, SH_KNOTHOLDER);
}
if (prefs_get_int_attribute("tools.lpetool", "selcue", 0) != 0) {
ec->enableSelectionCue();
}
lc->_message_context = new Inkscape::MessageContext((ec->desktop)->messageStack());
lc->shape_editor->update_statusbar();
}
/**
\brief Callback that processes the "changed" signal on the selection;
destroys old and creates new nodepath and reassigns listeners to the new selected item's repr
*/
void
sp_lpetool_context_selection_changed(Inkscape::Selection *selection, gpointer data)
{
SPLPEToolContext *lc = SP_LPETOOL_CONTEXT(data);
// TODO: update ShapeEditorsCollective instead
lc->shape_editor->unset_item(SH_NODEPATH);
lc->shape_editor->unset_item(SH_KNOTHOLDER);
SPItem *item = selection->singleItem();
lc->shape_editor->set_item(item, SH_NODEPATH);
lc->shape_editor->set_item(item, SH_KNOTHOLDER);
lc->shape_editor->update_statusbar();
}
static void
sp_lpetool_context_set(SPEventContext *ec, gchar const *key, gchar const *val)
{
// FIXME: how to set this correcly? the value from preferences-skeleton.h doesn't seem to get
// read (it wants to set drag = 1)
lpetool_parent_class->set(ec, key, "drag");
/**
//pass on up to parent class to handle common attributes.
if ( lpetool_parent_class->set ) {
lpetool_parent_class->set(ec, key, val);
}
**/
}
/**
void
sp_erc_update_toolbox (SPDesktop *desktop, const gchar *id, double value)
{
desktop->setToolboxAdjustmentValue (id, value);
}
**/
gint
sp_lpetool_context_root_handler(SPEventContext *event_context, GdkEvent *event)
{
//g_print ("sp_lpetool_context_root_handler()\n");
SPLPEToolContext *lc = SP_LPETOOL_CONTEXT(event_context);
SPDesktop *desktop = event_context->desktop;
Inkscape::Selection *selection = sp_desktop_selection (desktop);
//gint ret = FALSE;
bool ret = false;
if (sp_pen_context_has_waiting_LPE(lc)) {
// quit when we are waiting for a LPE to be applied
g_print ("LPETool has waiting LPE. We call the pen tool parent context and return\n");
ret = ((SPEventContextClass *) lpetool_parent_class)->root_handler(event_context, event);
return ret;
}
switch (event->type) {
case GDK_BUTTON_PRESS:
g_print ("GDK_BUTTON_PRESS\n");
if (event->button.button == 1 && !event_context->space_panning) {
g_print (" ... (passed if construct)\n");
// save drag origin
event_context->xp = (gint) event->button.x;
event_context->yp = (gint) event->button.y;
event_context->within_tolerance = true;
lc->shape_editor->cancel_hit();
using namespace Inkscape::LivePathEffect;
int mode = prefs_get_int_attribute("tools.lpetool", "mode", 0);
EffectType type = lpesubtools[mode];
g_print ("Activating mode %d\n", mode);
// save drag origin
bool over_stroke = lc->shape_editor->is_over_stroke(NR::Point(event->button.x, event->button.y), true);
g_print ("over_stroke: %s\n", over_stroke ? "true" : "false");
sp_pen_context_wait_for_LPE_mouse_clicks(lc, type, Effect::acceptsNumClicks(type));
// we pass the mouse click on to pen tool as the first click which it should collect
ret = ((SPEventContextClass *) lpetool_parent_class)->root_handler(event_context, event);
/**
SPDesktop *desktop = SP_EVENT_CONTEXT_DESKTOP(dc);
NR::Point const button_w(event->button.x,
event->button.y);
NR::Point const button_dt(desktop->w2d(button_w));
if (Inkscape::have_viable_layer(desktop, dc->_message_context) == false) {
return TRUE;
}
sp_lpetool_reset(dc, button_dt);
sp_lpetool_extinput(dc, event);
sp_lpetool_apply(dc, button_dt);
dc->accumulated->reset();
if (dc->repr) {
dc->repr = NULL;
}
Inkscape::Rubberband::get()->start(desktop, button_dt);
Inkscape::Rubberband::get()->setMode(RUBBERBAND_MODE_TOUCHPATH);
// initialize first point
dc->npoints = 0;
sp_canvas_item_grab(SP_CANVAS_ITEM(desktop->acetate),
( GDK_KEY_PRESS_MASK |
GDK_BUTTON_RELEASE_MASK |
GDK_POINTER_MOTION_MASK |
GDK_BUTTON_PRESS_MASK ),
NULL,
event->button.time);
ret = TRUE;
sp_canvas_force_full_redraw_after_interruptions(desktop->canvas, 3);
dc->is_drawing = true;
**/
}
break;
case GDK_MOTION_NOTIFY:
{
if (!lc->shape_editor->has_nodepath() || selection->singleItem() == NULL) {
break;
}
bool over_stroke = false;
over_stroke = lc->shape_editor->is_over_stroke(NR::Point(event->motion.x, event->motion.y), false);
if (over_stroke) {
event_context->cursor_shape = cursor_node_xpm;
event_context->hot_x = 1;
event_context->hot_y = 1;
sp_event_context_update_cursor(event_context);
} else {
lc->cursor_shape = cursor_crosshairs_xpm;
lc->hot_x = 7;
lc->hot_y = 7;
sp_event_context_update_cursor(event_context);
}
/**
{
NR::Point const motion_w(event->motion.x,
event->motion.y);
NR::Point motion_dt(desktop->w2d(motion_w));
sp_lpetool_extinput(dc, event);
dc->_message_context->clear();
if ( dc->is_drawing && (event->motion.state & GDK_BUTTON1_MASK) && !event_context->space_panning) {
dc->dragging = TRUE;
dc->_message_context->set(Inkscape::NORMAL_MESSAGE, _("<b>Drawing</b> an lpetool stroke"));
if (!sp_lpetool_apply(dc, motion_dt)) {
ret = TRUE;
break;
}
if ( dc->cur != dc->last ) {
sp_lpetool_brush(dc);
g_assert( dc->npoints > 0 );
fit_and_split(dc, FALSE);
}
ret = TRUE;
}
Inkscape::Rubberband::get()->move(motion_dt);
}
**/
}
break;
case GDK_BUTTON_RELEASE:
/**
{
NR::Point const motion_w(event->button.x, event->button.y);
NR::Point const motion_dt(desktop->w2d(motion_w));
sp_canvas_item_ungrab(SP_CANVAS_ITEM(desktop->acetate), event->button.time);
sp_canvas_end_forced_full_redraws(desktop->canvas);
dc->is_drawing = false;
if (dc->dragging && event->button.button == 1 && !event_context->space_panning) {
dc->dragging = FALSE;
NR::Maybe<NR::Rect> const b = Inkscape::Rubberband::get()->getRectangle();
sp_lpetool_apply(dc, motion_dt);
// Remove all temporary line segments
while (dc->segments) {
gtk_object_destroy(GTK_OBJECT(dc->segments->data));
dc->segments = g_slist_remove(dc->segments, dc->segments->data);
}
// Create object
fit_and_split(dc, TRUE);
accumulate_lpetool(dc);
set_to_accumulated(dc); // performs document_done
// reset accumulated curve
dc->accumulated->reset();
clear_current(dc);
if (dc->repr) {
dc->repr = NULL;
}
Inkscape::Rubberband::get()->stop();
dc->_message_context->clear();
ret = TRUE;
}
break;
}
**/
case GDK_KEY_PRESS:
/**
switch (get_group0_keyval (&event->key)) {
case GDK_Up:
case GDK_KP_Up:
if (!MOD__CTRL_ONLY) {
dc->angle += 5.0;
if (dc->angle > 90.0)
dc->angle = 90.0;
sp_erc_update_toolbox (desktop, "lpetool-angle", dc->angle);
ret = TRUE;
}
break;
case GDK_Down:
case GDK_KP_Down:
if (!MOD__CTRL_ONLY) {
dc->angle -= 5.0;
if (dc->angle < -90.0)
dc->angle = -90.0;
sp_erc_update_toolbox (desktop, "lpetool-angle", dc->angle);
ret = TRUE;
}
break;
case GDK_Right:
case GDK_KP_Right:
if (!MOD__CTRL_ONLY) {
dc->width += 0.01;
if (dc->width > 1.0)
dc->width = 1.0;
sp_erc_update_toolbox (desktop, "altx-lpetool", dc->width * 100); // the same spinbutton is for alt+x
ret = TRUE;
}
break;
case GDK_Left:
case GDK_KP_Left:
if (!MOD__CTRL_ONLY) {
dc->width -= 0.01;
if (dc->width < 0.01)
dc->width = 0.01;
sp_erc_update_toolbox (desktop, "altx-lpetool", dc->width * 100);
ret = TRUE;
}
break;
case GDK_Home:
case GDK_KP_Home:
dc->width = 0.01;
sp_erc_update_toolbox (desktop, "altx-lpetool", dc->width * 100);
ret = TRUE;
break;
case GDK_End:
case GDK_KP_End:
dc->width = 1.0;
sp_erc_update_toolbox (desktop, "altx-lpetool", dc->width * 100);
ret = TRUE;
break;
case GDK_x:
case GDK_X:
if (MOD__ALT_ONLY) {
desktop->setToolboxFocusTo ("altx-lpetool");
ret = TRUE;
}
break;
case GDK_Escape:
Inkscape::Rubberband::get()->stop();
if (dc->is_drawing) {
// if drawing, cancel, otherwise pass it up for deselecting
lpetool_cancel (dc);
ret = TRUE;
}
break;
case GDK_z:
case GDK_Z:
if (MOD__CTRL_ONLY && dc->is_drawing) {
// if drawing, cancel, otherwise pass it up for undo
lpetool_cancel (dc);
ret = TRUE;
}
break;
default:
break;
}
**/
break;
case GDK_KEY_RELEASE:
/**
switch (get_group0_keyval(&event->key)) {
case GDK_Control_L:
case GDK_Control_R:
dc->_message_context->clear();
break;
default:
break;
}
**/
default:
break;
}
if (!ret) {
if (((SPEventContextClass *) lpetool_parent_class)->root_handler) {
ret = ((SPEventContextClass *) lpetool_parent_class)->root_handler(event_context, event);
}
}
return ret;
}
/*
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 :
|