forked from KosmicTask/Fragaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SMLLineNumbers.m
260 lines (202 loc) · 9.5 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
/*
MGSFragaria
Written by Jonathan Mitchell, jonathan@mugginsoft.com
Find the latest version at https://github.com/mugginsoft/Fragaria
Smultron version 3.6b1, 2009-09-12
Written by Peter Borg, pgw3@mac.com
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 "SMLStandardHeader.h"
#import "SMLLineNumbers.h"
#import "SMLSyntaxColouring.h"
#import "SMLTextView.h"
@implementation SMLLineNumbers
#pragma mark -
#pragma mark Instance methods
/*
- init
*/
- (id)init
{
self = [self initWithDocument:nil];
return self;
}
/*
- initWithDocument:
*/
- (id)initWithDocument:(id)theDocument
{
if ((self = [super init])) {
document = theDocument;
zeroPoint = NSMakePoint(0, 0);
attributes = [[NSDictionary alloc] initWithObjectsAndKeys:[NSUnarchiver unarchiveObjectWithData:[SMLDefaults valueForKey:@"TextFont"]], NSFontAttributeName, nil];
NSUserDefaultsController *defaultsController = [NSUserDefaultsController sharedUserDefaultsController];
[defaultsController addObserver:self forKeyPath:@"values.TextFont" options:NSKeyValueObservingOptionNew context:@"TextFontChanged"];
}
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 ([(__bridge NSString *)context isEqualToString:@"TextFontChanged"]) {
attributes = [[NSDictionary alloc] initWithObjectsAndKeys:[NSUnarchiver unarchiveObjectWithData:[SMLDefaults valueForKey:@"TextFont"]], 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:@"firstTextScrollView"] contentView] checkWidth:checkWidth recolour:recolour];
if ([document valueForKey:@"secondTextScrollView"] != nil) {
[self updateLineNumbersForClipView:[[document valueForKey:@"secondTextScrollView"] contentView] checkWidth:checkWidth recolour:recolour];
}
if ([document valueForKey:@"singleDocumentWindow"] != nil) {
[self updateLineNumbersForClipView:[[document valueForKey:@"thirdTextScrollView"] contentView] checkWidth:checkWidth recolour:recolour];
}
if ([document valueForKey:@"fourthTextScrollView"] != nil) {
[self updateLineNumbersForClipView:[[document valueForKey:@"fourthTextScrollView"] contentView] checkWidth:checkWidth recolour:recolour];
}
}
/*
- updateLineNumbersForClipView:checkWidth:recolour:
*/
- (void)updateLineNumbersForClipView:(NSClipView *)clipView checkWidth:(BOOL)checkWidth recolour:(BOOL)recolour
{
SMLTextView *textView;
NSScrollView *scrollView;
NSScrollView *gutterScrollView;
NSLayoutManager *layoutManager;
NSRect visibleRect;
NSRange visibleRange;
NSString *textString;
NSString *searchString;
NSInteger idx;
NSInteger lineNumber;
NSInteger indexNonWrap;
NSInteger maxRangeVisibleRange;
NSInteger numberOfGlyphsInTextString;
BOOL oneMoreTime;
unichar lastGlyph;
NSRange range;
NSInteger widthOfStringInGutter;
NSInteger gutterWidth;
NSRect currentViewBounds;
NSInteger currentLineHeight;
CGFloat addToScrollPoint;
BOOL allDone = FALSE;
if (updatingLineNumbersForClipView == clipView) {
return;
}
updatingLineNumbersForClipView = clipView;
textView = [clipView documentView];
if ([[document valueForKey:@"showLineNumberGutter"] boolValue] == NO || textView == nil) {
if (checkWidth == YES && recolour == YES) {
[[document valueForKey:@"syntaxColouring"] pageRecolourTextView:textView];
}
updatingLineNumbersForClipView = nil;
allDone = TRUE;
}
scrollView = (NSScrollView *)[clipView superview];
addToScrollPoint = 0;
if (scrollView == [document valueForKey:@"firstTextScrollView"]) {
gutterScrollView = [document valueForKey:@"firstGutterScrollView"];
} else if (scrollView == [document valueForKey:@"secondTextScrollView"]) {
gutterScrollView = [document valueForKey:@"secondGutterScrollView"];
//addToScrollPoint = [[SMLCurrentProject secondContentViewNavigationBar] bounds].size.height;
} else if (scrollView == [document valueForKey:@"thirdTextScrollView"]) {
gutterScrollView = [document valueForKey:@"thirdGutterScrollView"];
} else if (scrollView == [document valueForKey:@"fourthTextScrollView"]) {
gutterScrollView = [document valueForKey:@"fourthGutterScrollView"];
} else {
updatingLineNumbersForClipView = nil;
allDone = TRUE;
}
if (allDone == FALSE) {
layoutManager = [textView layoutManager];
visibleRect = [[scrollView contentView] documentVisibleRect];
visibleRange = [layoutManager glyphRangeForBoundingRect:visibleRect inTextContainer:[textView textContainer]];
textString = [textView string];
searchString = [textString substringWithRange:NSMakeRange(0,visibleRange.location)];
for (idx = 0, lineNumber = 0; idx < (NSInteger)visibleRange.location; lineNumber++) {
idx = NSMaxRange([searchString lineRangeForRange:NSMakeRange(idx, 0)]);
}
indexNonWrap = [searchString lineRangeForRange:NSMakeRange(idx, 0)].location;
maxRangeVisibleRange = NSMaxRange([textString lineRangeForRange:NSMakeRange(NSMaxRange(visibleRange), 0)]); // Set it to just after the last glyph on the last visible line
numberOfGlyphsInTextString = [layoutManager numberOfGlyphs];
oneMoreTime = NO;
if (numberOfGlyphsInTextString != 0) {
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];
while (indexNonWrap <= maxRangeVisibleRange) {
if (idx == indexNonWrap) {
lineNumber++;
[lineNumbersString appendFormat:@"%i\n", lineNumber];
} else {
[lineNumbersString appendFormat:@"%C\n", 0x00B7];
indexNonWrap = idx;
}
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;
}
}
if (checkWidth == YES) {
widthOfStringInGutter = [lineNumbersString sizeWithAttributes:attributes].width;
if (widthOfStringInGutter > ([[document valueForKey:@"gutterWidth"] integerValue] - 14)) { // Check if the gutterTextView has to be resized
[document setValue:[NSNumber numberWithInteger:widthOfStringInGutter + 20] forKey:@"gutterWidth"]; // Make it bigger than need be so it doesn't have to resized soon again
if ([[document valueForKey:@"showLineNumberGutter"] boolValue] == YES) {
gutterWidth = [[document valueForKey:@"gutterWidth"] 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:@"gutterWidth"] integerValue], currentViewBounds.size.height)];
}
}
if (recolour == YES) {
[[document valueForKey:@"syntaxColouring"] pageRecolourTextView:textView];
}
[[gutterScrollView documentView] setString:lineNumbersString];
[[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) {
[[gutterScrollView contentView] scrollToPoint:NSMakePoint(0, ((NSInteger)visibleRect.origin.y % currentLineHeight) + addToScrollPoint)]; // Move currentGutterScrollView so it aligns with the rows in currentTextView
}
updatingLineNumbersForClipView = nil;
}
}
@end