-
Notifications
You must be signed in to change notification settings - Fork 1
/
MNLineNumberingRulerView.m
1095 lines (709 loc) · 27.1 KB
/
MNLineNumberingRulerView.m
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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#import <SproutedInterface/MNLineNumberingRulerView.h>
#import <SproutedInterface/MNLineNumberingTextStorage.h>
// Ruler thickness value
#define RULER_THICKNESS 25
#define MarkerAttributeName NSToolTipAttributeName
// Margin of displaying bookmarked line in a context menu.
#define STRIP_PREVIEW_MARGIN 15
// Default
#define DEFAULT_OPTION MNParagraphNumber | MNDrawBookmarks
const int MNNoLineNumbering = 0x00;
const int MNParagraphNumber = 0x03;
const int MNCharacterNumber = 0x02;
const int MNLineNumber = 0x01;
const int MNDrawBookmarks = 0x10;
@implementation MNLineNumberingRulerView
/*
- (id)initWithScrollView:(NSScrollView *)aScrollView orientation:(NSRulerOrientation)orientation
{
if ( self = [super initWithScrollView:(NSScrollView *)aScrollView
orientation:(NSRulerOrientation)orientation])
{
//load nib
[NSBundle loadNibNamed:@"MNLineNumbering" owner:self];
// Set default width
[self setRuleThickness:RULER_THICKNESS];
// Marker config
[self setReservedThicknessForMarkers:0];
[self setClientView:self]; // Markers ask me if I can add a marker.
// Add a dummy marker to draw properly
markerImage = [[NSImage alloc] initByReferencingFile:
[[NSBundle bundleForClass:[self class]] pathForResource:@"marker" ofType:@"tiff"]];
NSRulerMarker* aMarker = [self newMarker];
[self addMarker:aMarker];
[self removeMarker:aMarker];
// Set letter attributes
marginAttributes = [[NSMutableDictionary alloc] init];
[marginAttributes setObject:[NSFont labelFontOfSize:9] forKey: NSFontAttributeName];
[marginAttributes setObject:[NSColor darkGrayColor] forKey: NSForegroundColorAttributeName];
rulerOption = DEFAULT_OPTION;
markerDeleteReservationFlag = NO;
//
textView = [aScrollView documentView];
layoutManager = [textView layoutManager];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowDidUpdate:)
name:NSWindowDidUpdateNotification
object:[aScrollView window]];
}
return self;
}
*/
- (void)windowDidUpdate:(NSNotification *)notification
{
[self display];
}
-(void)startSheet
{
[[NSApplication sharedApplication] beginSheet:dialogueView
modalForWindow:[self window]
modalDelegate:self
didEndSelector:NULL
contextInfo:NULL];
}
- (IBAction)jumpButtonClicked:(id)sender
{
if( [sender tag] != 1 ) // jump & close or cancel
{
[dialogueView orderOut:self];
[[NSApplication sharedApplication] endSheet:dialogueView];
}
if( [sender tag] == -1 ) //cancel
return;
//check radio buttons
int tag = [radioButtons selectedRow];
int number = [textField intValue];
if( tag == 0 ) //paragraph
[self showParagraph:number];
else if( tag == 1 )//line
[self showLine:number];
else if( tag == 2 )
[self showCharacter:number -1 granularity:NSSelectByCharacter];
[self display];
}
-(BOOL)showParagraph:(unsigned)paragraphNum
{
//search paragraph number .... can be faster
unsigned charIndex = 0;
unsigned paragraph = 0;
for( charIndex = 0; charIndex < [ [textView textStorage] length]; charIndex++ )
{
unichar characterToCheck = [[[textView textStorage] string] characterAtIndex:charIndex];
if (characterToCheck == '\n' || characterToCheck == '\r' ||
characterToCheck == 0x2028 || characterToCheck == 0x2029)
paragraph++;
if( paragraph == paragraphNum )
break;
}
return [self showCharacter:charIndex granularity:NSSelectByParagraph];
}
-(BOOL)showLine:(unsigned)lineNum
{
unsigned targetCharIndex = [self charIndexOfLineNumber:lineNum ];
return [self showCharacter:targetCharIndex granularity:-1];
}
-(unsigned)lineNumberAtIndex:(unsigned)charIndex
{
unsigned index = 0;
unsigned lineNumber = 1;
NSRange lineRange;
//convert charindex to glyphIndex
unsigned glyphIndex = [layoutManager glyphRangeForCharacterRange:NSMakeRange(charIndex,1)
actualCharacterRange:NULL].location;
// Skip all lines that are visible at the top of the text view (if any)
while ( index < glyphIndex )
{
++lineNumber;
[layoutManager lineFragmentRectForGlyphAtIndex:index effectiveRange:&lineRange];
index = NSMaxRange( lineRange );
}
return lineNumber;
}
-(unsigned)charIndexOfLineNumber:(unsigned)lineNumber
{
unsigned indexLine = 0;
unsigned charIndex = 0;
NSRange lineRange;
// Skip all lines that are visible at the top of the text view (if any)
while ( indexLine < lineNumber )
{
++indexLine;
[layoutManager lineFragmentRectForGlyphAtIndex:charIndex effectiveRange:&lineRange];
charIndex = NSMaxRange( lineRange );
}
return charIndex -1;
}
-(BOOL)showCharacter:(unsigned)charIndex granularity:(NSSelectionGranularity)granularity
// show line in document text view
// Granularity is one of NSSelectByCharacter, NSSelectByWord, NSSelectByParagraph, or -1(select by line)
{
NSRange lineRange;
// Return if text view is empty
if([[textView textStorage] length] < charIndex +1 ) return NO;
// Show in textView
if( granularity == -1 )
{
[layoutManager lineFragmentRectForGlyphAtIndex:
[layoutManager glyphRangeForCharacterRange:NSMakeRange(charIndex,1)
actualCharacterRange:NULL].location effectiveRange:&lineRange];
// Now lineRange is glyph range of the line
// Convert lineRange(glyph range) --> lineRange(char range)
lineRange = [layoutManager characterRangeForGlyphRange: lineRange
actualGlyphRange:NULL];
[textView setSelectedRange:lineRange];
}
else
{
[textView setSelectedRange:
[textView selectionRangeForProposedRange:NSMakeRange(charIndex,1) granularity:granularity]];
}
[textView scrollRangeToVisible: [textView selectedRange]];
return YES;
}
-(void)setVisible:(BOOL)flag
{
if( flag == YES )
[self setRuleThickness:RULER_THICKNESS];
else
[self setRuleThickness:0];
}
-(BOOL)isVisible
{
if( [self ruleThickness] == 0 )
return NO;
else
return YES;
}
-(void)setOption:(unsigned)option
{
rulerOption = option;
[self display];
}
- (void) dealloc
{
//NSLog(@"view dealloc");
[layoutManager setDelegate:NULL];
[[NSNotificationCenter defaultCenter] removeObserver:self ];
textView = NULL;
layoutManager = NULL;
[markerImage release];
[marginAttributes release];
[super dealloc];
}
#pragma mark Drawing
-(void)drawRect:(NSRect)rect
{
if( ! [[self window] isKeyWindow] ) return;
[super drawRect:rect];
}
- (void)drawHashMarksAndLabelsInRect:(NSRect)aRect
//Draw numbers
{
if( [self isVisible] )
{
// *** (1) draw background ***
[self drawEmptyMargin ];
// *** (2) draw numbers ***
[self drawNumbersInMargin ];
}
}
-(void)drawEmptyMargin
{
NSRect aRect = NSMakeRect(0,0,[self ruleThickness],[self frame].size.height);
/*
These values control the color of our margin. Giving the rect the 'clear'
background color is accomplished using the windowBackgroundColor. Change
the color here to anything you like to alter margin contents.
*/
aRect.origin.x += 1;
[[NSColor controlHighlightColor] set];
[NSBezierPath fillRect: aRect];
// These points should be set to the left margin width.
NSPoint top = NSMakePoint([self frame].size.width, aRect.origin.y + aRect.size.height);
NSPoint bottom = NSMakePoint([self frame].size.width, aRect.origin.y);
// This draws the dark line separating the margin from the text area.
[[NSColor darkGrayColor] set];
[NSBezierPath setDefaultLineWidth:1.0];
[NSBezierPath strokeLineFromPoint:top toPoint:bottom];
}
-(void) drawParagraphNumbersInMargin:(unsigned)startParagraph start:(unsigned)start_index end:(unsigned)end_index
{
unsigned index;
for ( index = start_index; index < end_index; )
{
NSRange paragraphRange =
[textView selectionRangeForProposedRange:NSMakeRange(index, 1) granularity:NSSelectByParagraph];
unsigned glyphIndex = [layoutManager glyphRangeForCharacterRange:NSMakeRange(paragraphRange.location,1)
actualCharacterRange:NULL].location;
NSRect drawingRect = [layoutManager lineFragmentRectForGlyphAtIndex:glyphIndex effectiveRange: NULL];
[self drawOneNumberInMargin:startParagraph inRect:drawingRect];
index = NSMaxRange( [layoutManager glyphRangeForCharacterRange:paragraphRange
actualCharacterRange:NULL] );
startParagraph++;
}
}
-(void) drawNumbersInMargin
{
//NSLog(@"drawNumbersInMargin");
UInt32 index, lineNumber;
NSRange lineRange;
NSRect lineRect;
NSTextContainer* textContainer = [[layoutManager firstTextView] textContainer];
// Only get the visible part of the scroller view
NSRect documentVisibleRect = [[[layoutManager firstTextView] enclosingScrollView] documentVisibleRect];
// Find the glyph range for the visible glyphs
NSRange glyphRange = [layoutManager glyphRangeForBoundingRect: documentVisibleRect inTextContainer: textContainer];
// Calculate the start and end indexes for the glyphs
unsigned start_index = glyphRange.location;
unsigned end_index = glyphRange.location + glyphRange.length;
//
NSRange charRange = [layoutManager characterRangeForGlyphRange:glyphRange actualGlyphRange:NULL];
// Calculate the start and end char indexes
unsigned start_charIndex = charRange.location;
unsigned end_charIndex = charRange.location + charRange.length;
index = 0;
lineNumber = 1;
unsigned start_paragraphNumber;
start_paragraphNumber = [(MNLineNumberingTextStorage*)[textView textStorage] paragraphNumberAtIndex:start_charIndex];
// Skip all lines that are visible at the top of the text view (if any)
while (index < start_index)
{
lineRect = [layoutManager lineFragmentRectForGlyphAtIndex:index effectiveRange:&lineRange];
index = NSMaxRange( lineRange );
++lineNumber;
}
for ( index = start_index; index < end_index; lineNumber++ )
{
lineRect = [layoutManager lineFragmentRectForGlyphAtIndex:index effectiveRange:&lineRange];
if ( ( rulerOption & 0x0F ) == MNParagraphNumber )
{
}
else if( ( rulerOption & 0x0F ) == MNLineNumber )
{
[self drawOneNumberInMargin:lineNumber inRect:lineRect];
}
else if ( ( rulerOption & 0x0F ) == MNCharacterNumber ) // draw character numbers
{
[self drawOneNumberInMargin:index +1 inRect:lineRect];
}
index = NSMaxRange( lineRange );
}
///paragraph
if ( ( rulerOption & 0x0F ) == MNParagraphNumber )
{
[self drawParagraphNumbersInMargin:start_paragraphNumber start:(unsigned)start_charIndex end:(unsigned)end_charIndex ];
}
}
-(void)drawOneNumberInMargin:(unsigned) aNumber inRect:(NSRect)r
{
//draw a number
r = [textView convertRect:r toView:self]; //Convert coordinates
NSString *s;
NSSize stringSize;
s = [NSString stringWithFormat:@"%d", aNumber, nil];
if( aNumber == 0 )
s = @"-";
stringSize = [s sizeWithAttributes:marginAttributes];
// Simple algorithm to center the line number next to the glyph.
[s drawAtPoint: NSMakePoint( [self ruleThickness] - stringSize.width,
r.origin.y + ((r.size.height / 2) - (stringSize.height / 2)))
withAttributes:marginAttributes];
}
- (void)drawMarkersInRect:(NSRect)aRect
{
//NSLog(@"drawMarkersInRect %@",NSStringFromRect(aRect));
if( (rulerOption & 0x10) == 0 )
return;
// *** (0) remove existing markers ***
// Delete markers unless while dragging.
NSArray* existingMarkers = [self markers];
unsigned hoge = 0;
for( hoge = 0; hoge < [existingMarkers count]; hoge++)
{
if( ! [[existingMarkers objectAtIndex:hoge] isDragging] )
[self removeMarker:[existingMarkers objectAtIndex:hoge]];
}
// Only get the visible part of the scroller view
NSRect documentVisibleRect = [[[layoutManager firstTextView] enclosingScrollView] documentVisibleRect];
// Find the glyph range for the visible glyphs
NSRange glyphRange = [layoutManager glyphRangeForBoundingRect: documentVisibleRect inTextContainer: [textView textContainer]];
NSRange charRange = [layoutManager characterRangeForGlyphRange:glyphRange actualGlyphRange:NULL];
for( hoge = charRange.location; hoge < NSMaxRange(charRange) ; hoge ++ )
{
if ( [(MNLineNumberingTextStorage*)[textView textStorage] hasBookmarkAtIndex:hoge inTextView:textView] )
{
NSRange paragraphRange =
[textView selectionRangeForProposedRange:NSMakeRange(hoge, 1) granularity:NSSelectByParagraph];
unsigned glyphIndex = [layoutManager glyphRangeForCharacterRange:NSMakeRange(paragraphRange.location,1)
actualCharacterRange:NULL].location;
NSRect drawingRect = [layoutManager lineFragmentRectForGlyphAtIndex:glyphIndex effectiveRange: NULL];
drawingRect.size.height = [markerImage size].height;
[self drawMarkerInRect:drawingRect ];
}
}
}
-(void)drawMarkerInRect:(NSRect)lineRect
// check if a marker should be drawn and draw it if necessary
{
lineRect = [textView convertRect:lineRect toView:self];
NSArray* markerObjects = [self markers];
unsigned hoge;
BOOL exist = NO;
for(hoge = 0; hoge < [markerObjects count]; hoge++)
{
//get represented object
NSRulerMarker* marker = [markerObjects objectAtIndex:hoge];
if( [[marker representedObject] isEqualToString:NSStringFromRect(lineRect) ] )
{
//if( ! [marker isDragging] )
// [marker setMarkerLocation: lineRect.origin.y + (lineRect.size.height / 2) ];
[marker drawRect:lineRect];
exist = YES;
}
}
if( exist == NO )
{
NSRulerMarker* aMarker = [self newMarker];
[aMarker setMarkerLocation: lineRect.origin.y + (lineRect.size.height / 2) ];
[aMarker drawRect:lineRect];
[aMarker setMovable:YES];
[aMarker setRemovable:YES];
[aMarker setRepresentedObject: NSStringFromRect(lineRect) ];
[self addMarker:aMarker];
}
}
///////////
-(unsigned)characterIndexAtLocation:(float)pos
{
//convert
float viewPos = [textView convertPoint:NSMakePoint(0,pos) fromView:[[self window] contentView]].y;
NSRect sweepRect = NSMakeRect( 0,viewPos,100,viewPos+1);
NSRange glyphRange = [layoutManager glyphRangeForBoundingRect:sweepRect inTextContainer:[textView textContainer] ];
NSRange charRange = [layoutManager characterRangeForGlyphRange:glyphRange actualGlyphRange:NULL];
//NSLog(@"characterIndexAtLocation = %d",charRange.location);
return charRange.location;
}
#pragma mark Adding, moving, and removing markers
-(NSRulerMarker*)newMarker
{
NSRulerMarker* aMarker = [[NSRulerMarker alloc] initWithRulerView:self
markerLocation:-10 //invisible at first
image:markerImage
imageOrigin:NSMakePoint(0,8)];
[aMarker autorelease];
return aMarker;
}
- (void)mouseDown:(NSEvent *)theEvent
{
//NSLog(@"mouseDown");
// add a new marker
if( (rulerOption & 0x10) != MNDrawBookmarks ) return;
//retrieve mouse location
markerDeleteReservationFlag = NO;
NSPoint mousePosition = [theEvent locationInWindow];
//adding or removing a marker
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
if( [(MNLineNumberingTextStorage*)[textView textStorage] hasBookmarkAtIndex:clickedIndex inTextView:textView]== NO) // adding a new marker
{
[(MNLineNumberingTextStorage*)[textView textStorage] setBookmarkAtIndex:clickedIndex flag:YES inTextView:textView];
}else
markerDeleteReservationFlag = YES;
// if clicked on an existing marker, turn flag on
// This flag is used in mouseUp to delete existing marker
}
-(void)mouseUp:(NSEvent *)theEvent
// deleting a marker
{
//NSLog(@"mouseUp");
if(markerDeleteReservationFlag == YES)
{
//delete
NSPoint mousePosition = [theEvent locationInWindow];
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
[(MNLineNumberingTextStorage*)[textView textStorage] setBookmarkAtIndex:clickedIndex flag:NO inTextView:textView];
}
//[self display];
markerDeleteReservationFlag = NO;
}
- (void)mouseDragged:(NSEvent *)theEvent
// dragging marker
{
//NSLog(@"mouseDragged");
if( (rulerOption & 0x10) != MNDrawBookmarks ) return;
NSPoint mousePosition = [theEvent locationInWindow];
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
if( [(MNLineNumberingTextStorage*)[textView textStorage] hasBookmarkAtIndex:clickedIndex inTextView:textView]== YES) //start moving
{
NSArray* markerObjects = [self markers];
unsigned hoge;
for(hoge = 0; hoge < [markerObjects count]; hoge++)
{
//get represented object
id ii = [[markerObjects objectAtIndex:hoge] representedObject];
NSRect identifyingRect = NSRectFromString( ii );
float yy = [self convertPoint:mousePosition fromView:[[self window] contentView]].y;
if( identifyingRect.origin.y <= yy && yy <= NSMaxY(identifyingRect) ) break;
}
//NSLog(@"%d, %d", [markerObjects count], hoge);
[ [markerObjects objectAtIndex:hoge] trackMouse:theEvent adding:NO];
}
markerDeleteReservationFlag = NO; // turn delete flag off
}
#pragma mark Defining marker behaviour
// These are answers to the ruler marker which is asking the client (this ruler view)
// for approvals.
// ADD
- (BOOL)rulerView:(NSRulerView *)aRulerView shouldAddMarker:(NSRulerMarker *)aMarker
{
//display update
return YES;
}
/*
- (float)rulerView:(NSRulerView *)aRulerView willAddMarker:(NSRulerMarker *)aMarker atLocation:(float)location
{
}*/
- (void)rulerView:(NSRulerView *)aRulerView didAddMarker:(NSRulerMarker *)aMarker
{
// add dictionary
NSPoint mousePosition = [[self window] mouseLocationOutsideOfEventStream];
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
[(MNLineNumberingTextStorage*)[textView textStorage] setBookmarkAtIndex:clickedIndex flag:YES inTextView:textView];
//[self display];
//NSLog(@"** ADD **");
}
//MOVE
- (BOOL)rulerView:(NSRulerView *)aRulerView shouldMoveMarker:(NSRulerMarker *)aMarker
{
//display update
NSPoint mousePosition = [[self window] mouseLocationOutsideOfEventStream];
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
[(MNLineNumberingTextStorage*)[textView textStorage] setBookmarkAtIndex:clickedIndex flag:NO inTextView:textView];
return YES;
}
/*
- (float)rulerView:(NSRulerView *)aRulerView willMoveMarker:(NSRulerMarker *)aMarker toLocation:(float)location
{
}*/
- (void)rulerView:(NSRulerView *)aRulerView didMoveMarker:(NSRulerMarker *)aMarker
{
// add dictionary
NSPoint mousePosition = [[self window] mouseLocationOutsideOfEventStream];
unsigned clickedIndex;
clickedIndex = [self characterIndexAtLocation:mousePosition.y];
[(MNLineNumberingTextStorage*)[textView textStorage] setBookmarkAtIndex:clickedIndex flag:YES inTextView:textView];
//[self display]; //NSLog(@"** BOOKMARK MOVED **");
}
//REMOVE
- (BOOL)rulerView:(NSRulerView *)aRulerView shouldRemoveMarker:(NSRulerMarker *)aMarker
{
return YES;
}
- (void)rulerView:(NSRulerView *)aRulerView didRemoveMarker:(NSRulerMarker *)aMarker
{
//Do nothing here because the marker was already removed when the moving started.
//NSLog(@"** BOOKMARK REMOVED 2**");
}
#pragma mark Context Menu
-(void)menu_selected {} // dummy method.
-(void)menu_selected_main:(NSNotification *)notification
// this is called when contextual menu is selected
{
NSMenuItem* aMenuItem = [[notification userInfo] objectForKey:@"MenuItem"];
int tag = [aMenuItem tag];
if( tag == -2 ) // clear bookmarks
{
[[textView textStorage] removeAttribute:MarkerAttributeName range:NSMakeRange(0,[[textView textStorage] length]) ];
[self display];
}else if( tag >= 0 )
{
[self showCharacter:tag granularity:-1];
}else if( tag == -10 )
{
[self setOption:(rulerOption & 0x10) | MNNoLineNumbering];
}
else if( tag == -11 )
{
[self setOption:(rulerOption & 0x10) | MNLineNumber];
}
else if( tag == -12 )
{
[self setOption:(rulerOption & 0x10) | MNCharacterNumber];
}
else if( tag == -13 )
{
[self setOption:(rulerOption & 0x10) | MNParagraphNumber];
}
else if( tag == -14 )
{
if( (rulerOption & 0x10) == MNDrawBookmarks )
[self setOption:(rulerOption & 0x0F) ];
else
[self setOption:(rulerOption & 0x0F) | MNDrawBookmarks ];
}
else if( tag == -15 )
{
[self setVisible:![self isVisible]];
}
else if( tag == -7 )
{
[self startSheet];
}
}
- (NSMenu *)menuForEvent:(NSEvent *)theEvent
{
NSMenuItem* aMenuItem;
NSMenu* menu = [[NSMenu alloc] init];
//create bookmark array
NSMutableArray* bookmarks = [[[NSMutableArray alloc] init] autorelease];
unsigned hoge;
//NSRange __range;
for( hoge = 0; hoge < [[textView textStorage] length] ;hoge++ )
{
unichar characterToCheck = [[[textView textStorage] string] characterAtIndex:hoge];
if (characterToCheck == '\n' || characterToCheck == '\r' ||
characterToCheck == 0x2028 || characterToCheck == 0x2029)
{
id marker = [[textView textStorage] attribute:MarkerAttributeName atIndex:hoge
longestEffectiveRange:NULL inRange:NSMakeRange(0,[[textView textStorage] length])];
if( marker != NULL )
{
if( [marker boolValue] )
{
NSRange paragraphRange =
[textView selectionRangeForProposedRange:NSMakeRange(hoge, 1) granularity:NSSelectByParagraph];
[bookmarks addObject:NSStringFromRange(paragraphRange)];
}
}
}
}
//set up menu
if( (rulerOption & 0x10) == MNDrawBookmarks )
{
if([bookmarks count] == 0)
{
aMenuItem = [[NSMenuItem alloc] initWithTitle:@"No Bookmarks" action:@selector(dummy)
keyEquivalent:@""];
[aMenuItem setEnabled:NO];
[menu addItem:[aMenuItem autorelease]];
}else
{
// Add each bookmark
unsigned hoge;
for(hoge = 0; hoge < [bookmarks count]; hoge++)
{
unsigned charIndex = NSRangeFromString( [bookmarks objectAtIndex:hoge] ).location;
NSMenuItem* aMenuItem = [[NSMenuItem alloc] initWithTitle:@""
action:@selector(menu_selected)
keyEquivalent:@""];
unsigned glyphIndex = [[textView layoutManager] glyphRangeForCharacterRange:NSMakeRange(charIndex,1) actualCharacterRange:NULL].location;
//prepare bookmark preview stip
//set target rect
NSRect aRect = [layoutManager lineFragmentRectForGlyphAtIndex:glyphIndex effectiveRange:NULL];
aRect.origin.y -= STRIP_PREVIEW_MARGIN;
aRect.size.height += STRIP_PREVIEW_MARGIN * 2;
if( aRect.size.width > 500 ) aRect.size.width = 500;
// strip preview
NSImage* stripImage = [[NSImage alloc] initWithSize:aRect.size];
[stripImage setFlipped:YES];
[stripImage lockFocus];
NSRect clipViewRect = [[[textView enclosingScrollView] contentView] bounds];
NSPoint originalOrigin = [textView bounds].origin;
NSRect originalFrame = [textView frame];
[textView setBoundsOrigin:NSMakePoint(0, -aRect.origin.y )];
[textView setFrame:NSMakeRect(0, -aRect.origin.y ,originalFrame.size.width, originalFrame.size.height)];
[textView drawRect:NSMakeRect(0,0,aRect.size.width,aRect.size.height)];
[textView setBoundsOrigin:originalOrigin];
[textView setFrame:originalFrame];
[[[textView enclosingScrollView] contentView] setBounds:clipViewRect];
[[NSColor darkGrayColor] set];
[NSBezierPath setDefaultLineWidth:2.0];
[NSBezierPath strokeRect: NSMakeRect(0,0,aRect.size.width, aRect.size.height)];
[stripImage unlockFocus];
[aMenuItem setImage:[stripImage autorelease]];
[aMenuItem setTag:charIndex]; // Tag as character index
[aMenuItem setTarget:self];
[aMenuItem setToolTip:[NSString stringWithFormat:@"Char:%d Line:%d Paragraph:%d",
charIndex +1, [self lineNumberAtIndex:charIndex],[(MNLineNumberingTextStorage*)[textView textStorage] paragraphNumberAtIndex:charIndex]]];
[menu addItem:[aMenuItem autorelease]];
}
}
////////
[menu addItem:[NSMenuItem separatorItem]];