-
Notifications
You must be signed in to change notification settings - Fork 134
/
SMLLineNumbers.m
271 lines (210 loc) · 10.3 KB
/
SMLLineNumbers.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
/*
MGSFragaria
Written by Jonathan Mitchell, [email protected]
Find the latest version at https://github.com/mugginsoft/Fragaria
Smultron version 3.6b1, 2009-09-12
Written by Peter Borg, [email protected]
Find the latest version at http://smultron.sourceforge.net
Copyright 2004-2009 Peter Borg
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
#import "MGSFragaria.h"
#import "MGSFragariaFramework.h"
static char SMLTextFontChanged;
@interface SMLLineNumbers()
@property (strong) NSDictionary *attributes;
@property (strong) id document;
@property (strong) NSClipView *updatingLineNumbersForClipView;
@end
@implementation SMLLineNumbers
@synthesize attributes, document, updatingLineNumbersForClipView;
#pragma mark -
#pragma mark Instance methods
/*
- init
*/
- (id)init
{
self = [self initWithDocument:nil];
return self;
}
/*
- initWithDocument:
*/
- (id)initWithDocument:(id)theDocument
{
if ((self = [super init])) {
self.document = theDocument;
zeroPoint = NSMakePoint(0, 0);
self.attributes = [[NSDictionary alloc] initWithObjectsAndKeys:[NSUnarchiver unarchiveObjectWithData:[SMLDefaults valueForKey:MGSFragariaPrefsTextFont]], NSFontAttributeName, nil];
NSUserDefaultsController *defaultsController = [NSUserDefaultsController sharedUserDefaultsController];
[defaultsController addObserver:self forKeyPath:@"values.FragariaTextFont" options:NSKeyValueObservingOptionNew context:&SMLTextFontChanged];
}
return self;
}
#pragma mark -
#pragma mark KVO
/*
- observeValueForKeyPath:ofObject:change:context
*/
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if (context == &SMLTextFontChanged) {
self.attributes = [[NSDictionary alloc] initWithObjectsAndKeys:[NSUnarchiver unarchiveObjectWithData:[SMLDefaults valueForKey:MGSFragariaPrefsTextFont]], NSFontAttributeName, nil];
} else {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
}
}
#pragma mark -
#pragma mark View updating
/*
- viewBoundsDidChange:
*/
- (void)viewBoundsDidChange:(NSNotification *)notification
{
if (notification != nil && [notification object] != nil && [[notification object] isKindOfClass:[NSClipView class]]) {
[self updateLineNumbersForClipView:[notification object] checkWidth:YES recolour:YES];
}
}
/*
- updateLineNumbersCheckWidth:recolour:
*/
- (void)updateLineNumbersCheckWidth:(BOOL)checkWidth recolour:(BOOL)recolour
{
[self updateLineNumbersForClipView:[[document valueForKey:ro_MGSFOScrollView] contentView] checkWidth:checkWidth recolour:recolour];
}
/*
- updateLineNumbersForClipView:checkWidth:recolour:
*/
- (void)updateLineNumbersForClipView:(NSClipView *)clipView checkWidth:(BOOL)checkWidth recolour:(BOOL)recolour
{
NSScrollView *gutterScrollView = nil;
NSInteger idx = 0;
NSInteger lineNumber = 0;
NSRange range = NSMakeRange(0, 0);
NSInteger gutterWidth = 0;
NSRect currentViewBounds = NSZeroRect;
NSInteger currentLineHeight;
CGFloat addToScrollPoint;
if (self.updatingLineNumbersForClipView == clipView) {
return;
}
self.updatingLineNumbersForClipView = clipView;
@try {
SMLTextView *textView = [clipView documentView];
if ([[document valueForKey:MGSFOShowLineNumberGutter] boolValue] == NO || textView == nil) {
if (checkWidth == YES && recolour == YES) {
[[document valueForKey:ro_MGSFOSyntaxColouring] pageRecolourTextView:textView];
}
goto allDone;
}
NSScrollView *scrollView = (NSScrollView *)[clipView superview];
addToScrollPoint = 0;
if (scrollView == [document valueForKey:ro_MGSFOScrollView]) {
gutterScrollView = [document valueForKey:ro_MGSFOGutterScrollView];
} else {
goto allDone;
}
// get break points from delegate
NSSet* breakpoints = NULL;
id breakpointDelegate = [[MGSFragaria currentInstance] objectForKey:MGSFOBreakpointDelegate];
if (breakpointDelegate && [breakpointDelegate respondsToSelector:@selector(breakpointsForFile:)])
{
breakpoints = [breakpointDelegate breakpointsForFile:[gutterScrollView.documentView fileName]];
}
NSLayoutManager *layoutManager = [textView layoutManager];
NSRect visibleRect = [[scrollView contentView] documentVisibleRect];
NSRange visibleRange = [layoutManager glyphRangeForBoundingRect:visibleRect inTextContainer:[textView textContainer]];
NSInteger location = visibleRange.location;
NSString *textString = [textView string];
if (location == NSNotFound) location = textString.length;
NSString *searchString = [textString substringWithRange:NSMakeRange(0, location)];
for (idx = 0, lineNumber = 0; idx < (NSInteger)visibleRange.location; lineNumber++) {
idx = NSMaxRange([searchString lineRangeForRange:NSMakeRange(idx, 0)]);
}
NSInteger indexNonWrap = [searchString lineRangeForRange:NSMakeRange(idx, 0)].location;
NSInteger maxRangeVisibleRange = NSMaxRange([textString lineRangeForRange:NSMakeRange(NSMaxRange(visibleRange), 0)]); // Set it to just after the last glyph on the last visible line
NSInteger numberOfGlyphsInTextString = [layoutManager numberOfGlyphs];
BOOL oneMoreTime = NO;
if (numberOfGlyphsInTextString != 0) {
unichar lastGlyph = [textString characterAtIndex:numberOfGlyphsInTextString - 1];
if (lastGlyph == '\n' || lastGlyph == '\r') {
oneMoreTime = YES; // Continue one more time through the loop if the last glyph isn't newline
}
}
NSMutableString *lineNumbersString = [[NSMutableString alloc] init];
int textLine = 0;
NSMutableArray* textLineBreakpoints = [NSMutableArray array];
// generate line number string
while (indexNonWrap <= maxRangeVisibleRange) {
// wrap or not
if (idx == indexNonWrap) {
lineNumber++;
[lineNumbersString appendFormat:@"%li\n", (long)lineNumber];
textLine++;
// flag breakpoints
if ([breakpoints containsObject:[NSNumber numberWithInt:(int)lineNumber]])
{
[textLineBreakpoints addObject:[NSNumber numberWithInt:textLine]];
}
} else {
[lineNumbersString appendFormat:@"%C\n", (unsigned short)0x00B7];
indexNonWrap = idx;
textLine++;
}
if (idx < maxRangeVisibleRange) {
[layoutManager lineFragmentRectForGlyphAtIndex:idx effectiveRange:&range];
idx = NSMaxRange(range);
indexNonWrap = NSMaxRange([textString lineRangeForRange:NSMakeRange(indexNonWrap, 0)]);
} else {
idx++;
indexNonWrap ++;
}
if (idx == numberOfGlyphsInTextString && !oneMoreTime) {
break;
}
}
// check width is okay
if (checkWidth == YES) {
NSInteger widthOfStringInGutter = [lineNumbersString sizeWithAttributes:self.attributes].width;
if (widthOfStringInGutter > ([[document valueForKey:MGSFOGutterWidth] integerValue] - 14)) { // Check if the gutterTextView has to be resized
[document setValue:[NSNumber numberWithInteger:widthOfStringInGutter + 20] forKey:MGSFOGutterWidth]; // Make it bigger than need be so it doesn't have to resized soon again
if ([[document valueForKey:MGSFOShowLineNumberGutter] boolValue] == YES) {
gutterWidth = [[document valueForKey:MGSFOGutterWidth] integerValue];
} else {
gutterWidth = 0;
}
currentViewBounds = [[gutterScrollView superview] bounds];
[scrollView setFrame:NSMakeRect(gutterWidth, 0, currentViewBounds.size.width - gutterWidth, currentViewBounds.size.height)];
[gutterScrollView setFrame:NSMakeRect(0, 0, [[document valueForKey:MGSFOGutterWidth] integerValue], currentViewBounds.size.height)];
}
}
if (recolour == YES) {
[[document valueForKey:ro_MGSFOSyntaxColouring] pageRecolourTextView:textView];
}
// Fix flickering while rubber banding: Only change the text, if NOT rubber banding.
if (visibleRect.origin.y >= 0.0f && visibleRect.origin.y <= textView.frame.size.height - visibleRect.size.height) {
[[gutterScrollView documentView] setString:lineNumbersString];
}
// set breakpoint lines
[[gutterScrollView documentView] setBreakpointLines:textLineBreakpoints];
[[gutterScrollView contentView] setBoundsOrigin:zeroPoint]; // To avert an occasional bug which makes the line numbers disappear
currentLineHeight = (NSInteger)[textView lineHeight];
if ((NSInteger)visibleRect.origin.y != 0 && currentLineHeight != 0) {
CGFloat y = ((NSInteger)visibleRect.origin.y % currentLineHeight) + addToScrollPoint; // Align the line numbers with the text.
// Don't align, but directly calculate the offset, when rubber banding.
if (visibleRect.origin.y < 0.0f)
y = visibleRect.origin.y;
else if (visibleRect.origin.y > textView.frame.size.height - visibleRect.size.height)
y = visibleRect.origin.y - (textView.frame.size.height - visibleRect.size.height);
[[gutterScrollView contentView] scrollToPoint:NSMakePoint(0, y)];
}
} @catch (NSException *e) {
NSLog(@"Exception: %@ %s %s", e, __FILE__, __FUNCTION__);
}
allDone:
self.updatingLineNumbersForClipView = nil;
}
@end