File: dvUndo.m

package info (click to toggle)
cenon.app 4.0.6%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 35,392 kB
  • sloc: objc: 74,441; ansic: 1,270; sh: 124; makefile: 35
file content (640 lines) | stat: -rw-r--r-- 23,629 bytes parent folder | download
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
/* dvUndo.h
 * Undo additions for Cenon DocView class
 *
 * Copyright (C) 1999-2016 by Cenon GmbH
 * Author:   Georg Fleischmann
 *
 * created:  1999-
 * modified: 2016-09-21 (-addPointTo:: [layer updateObject:g] added to force recalculation)
 *           2015-07-30 (-splitObject:, -addPointTo: [self setNeedsDisplayInRect:] (not -drawRect:))
 *           2013-01-15 (-rotate:, rotate around coordBounds of objects)
 *           2009-03-06 (-rotate: -deselectLockedLayers:..)
 *           2005-07-28 (-addPointTo: added)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the Cenon Public License as
 * published by Cenon GmbH. Among other things, the
 * License requires that the copyright notices and this notice
 * be preserved on all copies.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the Cenon Public License for more details.
 *
 * You should have received a copy of the Cenon Public License along
 * with this program; see the file LICENSE. If not, write to Cenon.
 *
 * Cenon GmbH, Schwabstr. 45, 72108 Rottenburg a.N., Germany
 * eMail: info@cenon.de
 * http://www.cenon.info
 */

#include <AppKit/AppKit.h>
#include "DocView.h"
#include "App.h"
#include "messages.h"
#include "graphicsUndo.subproj/undo.h"

@implementation DocView(Undo)

- (void)graphicsPerform:(SEL)aSelector with:(void *)argument
{   int		l, cnt, i;
    NSRect	affectedBounds = NSZeroRect;

    for ( l=0, cnt = [slayList count]; l<cnt; l++ )
    {	NSMutableArray  *slist = [slayList  objectAtIndex:l];
        LayerObject     *layer = [layerList objectAtIndex:l];

        if (![layer editable])
            continue;
        for (i=[slist count]-1; i>=0; i--)
        {   id	g = [slist objectAtIndex:i];

            if ( [g respondsToSelector:aSelector] )
            {
                affectedBounds = (affectedBounds.size.width)
                                   ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds)
                                   : [g extendedBoundsWithScale:scale];
                [g performSelector:aSelector withObject:argument];
                [layer updateObject:g];
                affectedBounds = (affectedBounds.size.width)
                                   ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds)
                                   : [g extendedBoundsWithScale:scale];
            }
        }
    }
    [self cache:affectedBounds];
}

/*- (void)graphicsPerform:(SEL)aSelector with:(void *)argument
{   int		l, cnt;

    for ( l=0, cnt = [slayList count]; l<cnt; l++ )
    {
        if (![[layerList objectAtIndex:l] editable])
            continue;
        [[slayList objectAtIndex:l] makeObjectsPerformSelector:@selector(moveBy_ptr:) withObject:argument];
    }
}*/

/*
 * Target/Action methods to change VGraphic parameters from a Control.
 * If the sender is a PopUpList, then the indexOfSelectedItem is used to
 * determine the value to use (for linecap, linearrow, etc.) otherwise, the
 * sender's floatValue or intValue is used (whichever is appropriate).
 * This allows interface builders the flexibility to design different
 * ways of setting those values.
 */
/*- (void)takeColorFrom:sender
{   id		change;
    NSColor	*color = [sender color];

    change = [[ColorGraphicsChange alloc] initGraphicView:self color:color];
    [change startChange];
	[self graphicsPerform:@selector(setColor:) with:color];
        [document setDirty:YES];
    [change endChange];
}*/
- (void)takeColorFrom:sender colorNum:(int)colorNum
{   id		change;
    NSColor	*color = [sender color];

    change = [[ColorGraphicsChange alloc] initGraphicView:self color:color colorNum:colorNum];
    [change startChange];
        switch (colorNum)
        {
            default: [self graphicsPerform:@selector(setColor:)     with:color]; break;
            case 1:  [self graphicsPerform:@selector(setFillColor:) with:color]; break;
            case 2:  [self graphicsPerform:@selector(setEndColor:)  with:color];
        }
        [document setDirty:YES];
    [change endChange];
}
/*
{   id		change;
    int		l, cnt, i;
    NSColor	*color = [sender color];
//    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[ColorGraphicsChange alloc] initGraphicView:self color:color colorNum:colorNum];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VGraphic	*g = [slist objectAtIndex:i];

//                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setColor:)] )
                {
                    switch (colorNum)
                    {
                        default: [g setColor:color]; break;
                        case 1:  [(VPolyLineg setFillColor:color];
                        case 2:  [g setEndColor:color];
                    }
                    [layer updateObject:g];
                }
//                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
//        [self cache:affectedBounds];
    [change endChange];
}*/

/* sender is a NSPopupButton
 */
- (void)takeFillFrom:sender
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSZeroRect;
    int		filled = [sender indexOfSelectedItem];

    change = [[FillGraphicsChange alloc] initGraphicView:self fill:filled];
    [change startChange];
        //[self graphicsPerform:@selector(setFilled:) with:(void*)filled];
        //[document setDirty:YES];
        for (l=0, cnt = [slayList count]; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList  objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VGraphic    *g = [slist objectAtIndex:i];

                if ( [g respondsToSelector:@selector(setFilled:)] )
                {
                    affectedBounds = (affectedBounds.size.width)
                                        ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds)
                                        : [g extendedBoundsWithScale:scale];
                    [g setFilled:filled];
                    [layer updateObject:g];
                    affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
                }
            }
        }
    [document setDirty:YES];
    [self cache:affectedBounds];
    [change endChange];
}

- (void)takeStepWidth:(float)stepWidth
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSZeroRect;

    change = [[StepWidthGraphicsChange alloc] initGraphicView:self stepWidth:stepWidth];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList  objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   id	g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setStepWidth:)] )
                {
                    [g setStepWidth:stepWidth];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeRadialCenter:(NSPoint)radialCenter
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[RadialCenterGraphicsChange alloc] initGraphicView:self radialCenter:radialCenter];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   id	g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setRadialCenter:)] )
                {
                    [g setRadialCenter:radialCenter];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeWidth:(float)width
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[WidthGraphicsChange alloc] initGraphicView:self lineWidth:width];
    [change startChange];
        //[self graphicsPerform:@selector(setWidth_ptr:) with:&width];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList  objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VGraphic    *g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setWidth:)] )
                {
                    [g setWidth:width];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeLength:(float)length
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[LengthGraphicsChange alloc] initGraphicView:self length:length];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VGraphic	*g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setLength:)] )
                {
                    [g setLength:length];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeWidth:(float)width height:(float)height
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[DimensionsGraphicsChange alloc] initGraphicView:self];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   id	g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setSize:)] )
                {   NSSize	s = [g size];

                    if ( height )
                        s.height = height;
                    if ( width )
                        s.width = width;
                    [g setSize:s];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeRadius:(float)radius
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[RadiusGraphicsChange alloc] initGraphicView:self];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   id	g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setRadius:)] )
                {
                    [g setRadius:radius];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)takeAngle:(float)angle angleNum:(int)angleNum
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[AngleGraphicsChange alloc] initGraphicView:self angle:angle angleNum:angleNum];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VArc	*g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(setRadius:)] )
                {
                    switch ( angleNum)
                    {
                        default: [g setBegAngle:angle]; break;
                        case 1:  [g setAngle:angle]; break;
                        case 2:  [(VPolyLine*)g setGraduateAngle:angle];
                    }
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
        }
        [document setDirty:YES];
        [self cache:affectedBounds];
    [change endChange];
}

- (void)moveGraphicsBy:(NSPoint)vector andDraw:(BOOL)drawFlag
{   id	change;

    change = [[MoveGraphicsChange alloc] initGraphicView:self vector:vector];
    [change startChange];
	if (drawFlag)
	    [self graphicsPerform:@selector(moveBy_ptr:) with:(id)&vector];
        else
        {   int	l, cnt, i, iCnt;

            for ( l=0, cnt = [slayList count]; l<cnt; l++ )
            {   LayerObject	*layer = [layerList objectAtIndex:l];
                NSArray		*slist = [slayList objectAtIndex:l];

                if (![layer editable])
                    continue;
                [slist makeObjectsPerformSelector:@selector(moveBy_ptr:) withObject:(id)&vector];
                for (i=0, iCnt = [slist count]; i<iCnt; i++)
                    [layer updateObject:[slist objectAtIndex:i]];
            }
        }
    [change endChange];
}

/* move point or all points absolute
 * moveAll: move entire object
 */
- (void)movePointTo:(NSPoint)pt x:(BOOL)x y:(BOOL)y all:(BOOL)moveAll
{
    [self movePoint:-1 to:pt x:x y:y all:moveAll];
}
/* move point or all points absolute
 * ptNum:   point number or -1 to move selected point
 * moveAll: move entire object
 */
- (void)movePoint:(int)ptNum to:(NSPoint)pt x:(BOOL)x y:(BOOL)y all:(BOOL)moveAll
{   id		change;
    int		l, cnt, i;
    NSRect	affectedBounds = NSMakeRect(0, 0, 0, 0);

    change = [[MovePointGraphicsChange alloc] initGraphicView:self ptNum:ptNum moveAll:moveAll];
    [change startChange];
        cnt = [slayList count];
        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if ( ![layer editable] )
                continue;
            for ( i=[slist count]-1; i>=0; i-- )
            {   id	g = [slist objectAtIndex:i];

                affectedBounds = (affectedBounds.size.width) ? NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds) : [g extendedBoundsWithScale:scale];
                if ( [g respondsToSelector:@selector(movePoint:to:)] )
                {   int		n = (ptNum<0) ? ((moveAll) ? 0 : [g selectedKnobIndex]) : ptNum;
                    NSPoint	p = [g pointWithNum:n];

                    if ( x )
                        p.x = pt.x;
                    if ( y )
                        p.y = pt.y;
                    if ( moveAll )
                        [g moveTo:p];
                    else
                        [g movePoint:n to:p];
                    [layer updateObject:g];
                }
                affectedBounds = NSUnionRect([g extendedBoundsWithScale:scale], affectedBounds);
            }
            [document setDirty:YES];
        }
        [self cache:affectedBounds];
    [change endChange];
}

- (void)rotate:(float)rotAngle
{   int         i, l, selCount  = 0;
    NSRect      rect, drawRect;
    NSPoint     rotCenter;
    id          change;
    VGraphic    *g = nil;

    drawRect = [self boundsOfArray:slayList];
    [self deselectLockedLayers:YES lockedObjects:YES];

    /* check for single selected object */
    for (l=[slayList count]-1; l>=0; l--)
    {   NSMutableArray	*slist = [slayList objectAtIndex:l];

        selCount += [slist count];
        if ( [slist count] == 1 )
            g = [slist objectAtIndex:0];
    }

    if ( selCount == 1 && [g isKindOfClass:[VArc class]] && Abs([g angle]) >= 90.0 )    // single arc >= 90 deg
        rotCenter = [g center];
    else
    {   rect = [self coordBoundsOfArray:slayList]; //rect = [self boundsOfArray:slayList withKnobs:NO];
        rotCenter.x = rect.origin.x + rect.size.width  / 2.0;
        rotCenter.y = rect.origin.y + rect.size.height / 2.0;
    }

    change = [[RotateGraphicsChange alloc] initGraphicView:self angle:-rotAngle center:rotCenter];
    [change startChange];
        for (l=[slayList count]-1; l>=0; l--)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if ( ![layer editable] )
                continue;
            for (i=[slist count]-1; i>=0; i--)
            {   VGraphic	*g = [slist objectAtIndex:i];

                [g setAngle:-rotAngle withCenter:rotCenter];
                [layer updateObject:g];
            }
        }

        rect = [self boundsOfArray:slayList];
        drawRect = NSUnionRect(rect, drawRect);
        [self cache:drawRect];
        [document setDirty:YES];
        [[(App*)NSApp inspectorPanel] loadList:slayList];
    [change endChange];
}

/* split object at point
 * created:  2002-11-27
 * modified: 2015-07-30 ([self setNeedsDisplayInRect:] (not -drawRect:))
 *
 * get objects splitted at point
 * save changes for undo
 * add objects to current layer
 * remove old object from layer
 * redraw affected area (selection only)
 */
- (void)splitObject:(VGraphic*)g atPoint:(NSPoint)p redraw:(BOOL)redraw
{   id              change;
    int             l, cnt = [slayList count];
    NSRect          affectedBounds = [g extendedBoundsWithScale:scale]; // object bounds
    NSMutableArray  *nglist = nil;
    BOOL            gIsFilled = [g filled];

    change = [[ContourGraphicsChange alloc] initGraphicView:self];
    [change startChange];

        for (l=0; l<cnt; l++)
        {   NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            if ([[layer list] indexOfObject:g] != NSNotFound) // object in this layer
            {
                if ( (nglist = [g getListOfObjectsSplittedAtPoint:p]) )
                {   int i, ngCnt = [nglist count];

                    /* remove old object from list */
                    [slist removeObject:g];
                    [layer removeObject:g];
                    /* insert new objects in list */
                    for (i=0; i<ngCnt; i++)
                    {   id	ng = [nglist objectAtIndex:i];

                        [ng setSelected:YES];
                        [layer addObject:ng];
                        [slist addObject:ng];
                    }
                    break;
                }
            }
        }
        [document setDirty:YES];
        // NSLog(@"-mouseDown: hit object '%@' with knife tool", NSStringFromClass([g class]));
    [change endChange];
    if (gIsFilled)
        [self cache:affectedBounds];
    else
        [self setNeedsDisplayInRect:affectedBounds];    //[self drawRect:affectedBounds];
}

/* add a Point to object at point for VPath and VPolyLine
 * created:  2005-06-26
 * modified: 2015-07-30 ([self setNeedsDisplayInRect:] (not -drawRect:))
 *
 * get objects splitted at point
 * save changes for undo
 * add objects to current layer
 * remove old object from layer
 * redraw affected area (selection only)
 */
- (void)addPointTo:(VGraphic*)g atPoint:(NSPoint)p redraw:(BOOL)redraw
{   id			change;
    int			l, cnt = [slayList count];
    NSRect		affectedBounds = [g extendedBoundsWithScale:scale]; // object bounds
    //VGraphic		*ng = nil;
    BOOL		gIsFilled = [g filled];

    change = [[AddPointGraphicsChange alloc] initGraphicView:self point:p];
    [change startChange];

        for (l=0; l<cnt; l++)
        {   //NSMutableArray	*slist = [slayList objectAtIndex:l];
            LayerObject		*layer = [layerList objectAtIndex:l];

            if (![layer editable])
                continue;
            if ([[layer list] indexOfObject:g] != NSNotFound) // object in this layer
            {
                if ([(VPath*)g addPointAt:p])
                {   [layer updateObject:g];
                    break;
                }
            }
        }
        [document setDirty:YES];
        // NSLog(@"-mouseDown: hit object '%@' with knife tool", NSStringFromClass([g class]));
    [change endChange];
    if (gIsFilled)
        [self cache:affectedBounds];
    else
        [self setNeedsDisplayInRect:affectedBounds];    //[self drawRect:affectedBounds];
}

@end