aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CMTextView.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-01-29 16:10:14 +0000
committerBibiko <bibiko@eva.mpg.de>2010-01-29 16:10:14 +0000
commitc316e723764eba6141456acb8a61a4cdfcf68e62 (patch)
treead2ca16c03e708d7dbedafa0b9cc1b35a3d17852 /Source/CMTextView.m
parent7591371032bbb7956b71ee5d70c0c3139872e3dd (diff)
downloadsequelpro-c316e723764eba6141456acb8a61a4cdfcf68e62.tar.gz
sequelpro-c316e723764eba6141456acb8a61a4cdfcf68e62.tar.bz2
sequelpro-c316e723764eba6141456acb8a61a4cdfcf68e62.zip
• text macro logic
- improved highlighting of multi-line snippets (many thanks to jabakobob for this patch!) - some tiny cosmetics • error message highlighting in Custom Query Editor - removed near message length checking to be larger than 2, not necessary
Diffstat (limited to 'Source/CMTextView.m')
-rw-r--r--Source/CMTextView.m44
1 files changed, 27 insertions, 17 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m
index 2bc01fcd..55e6d4e1 100644
--- a/Source/CMTextView.m
+++ b/Source/CMTextView.m
@@ -935,7 +935,12 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
if(currentSnippetIndex >= 0 && currentSnippetIndex < 20) {
if(snippetControlArray[currentSnippetIndex][2] == 0) {
- [self setSelectedRange:NSMakeRange(snippetControlArray[currentSnippetIndex][0], snippetControlArray[currentSnippetIndex][1])];
+ NSRange r1 = NSMakeRange(snippetControlArray[currentSnippetIndex][0], snippetControlArray[currentSnippetIndex][1]);
+ NSRange r2 = NSIntersectionRange(NSMakeRange(0,[[self string] length]), r1);
+ if(r1.location == r2.location && r1.length == r2.length)
+ [self setSelectedRange:r2];
+ else
+ [self endSnippetSession];
}
} else { // for safety reasons
[self endSnippetSession];
@@ -1104,8 +1109,6 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
return NO;
}
- [[self textStorage] ensureAttributesAreFixedInRange:[self selectedRange]];
-
NSInteger caretPos = [self selectedRange].location;
NSInteger i, j;
NSInteger foundSnippetIndices[20]; // array to hold nested snippets
@@ -2916,20 +2919,27 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
NSInteger i;
for(i=0; i<snippetControlMax; i++) {
if(snippetControlArray[i][0] > -1) {
- NSRange glRange = [[self layoutManager] glyphRangeForCharacterRange:NSMakeRange(snippetControlArray[i][0],snippetControlArray[i][1]) actualCharacterRange:NULL];
- NSRect boundingRect = [[self layoutManager] boundingRectForGlyphRange:glRange inTextContainer:[self textContainer]];
- if(!glRange.length) boundingRect.size.width = 1;
- boundingRect = NSInsetRect(boundingRect, -4, 0.2);
- NSBezierPath *aBezierPath = [NSBezierPath bezierPathWithRoundedRect:boundingRect xRadius:6 yRadius:10];
- if(i == currentSnippetIndex)
- [[NSColor colorWithCalibratedRed:1.0 green:0.6 blue:0.0 alpha:0.7] setFill];
- else
- [[NSColor colorWithCalibratedRed:1.0 green:1.0 blue:0.0 alpha:0.4] setFill];
- [aBezierPath fill];
- boundingRect = NSInsetRect(boundingRect, 1.3, 1.3);
- aBezierPath = [NSBezierPath bezierPathWithRoundedRect:boundingRect xRadius:6 yRadius:10];
- [[NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:0.8] setFill];
- [aBezierPath fill];
+ NSUInteger rectCount;
+ NSRange snippetRange = NSMakeRange(snippetControlArray[i][0],snippetControlArray[i][1]);
+ NSRectArray snippetRects = [[self layoutManager] rectArrayForCharacterRange: snippetRange
+ withinSelectedCharacterRange: snippetRange
+ inTextContainer: [self textContainer]
+ rectCount: &rectCount ];
+ for (NSUInteger j=0; j<rectCount; j++)
+ {
+ NSRect snippetRect = snippetRects[j];
+ snippetRect = NSInsetRect(snippetRect, -4, 0.2);
+ NSBezierPath *aBezierPath = [NSBezierPath bezierPathWithRoundedRect:snippetRect xRadius:6 yRadius:10];
+ if(i == currentSnippetIndex)
+ [[NSColor colorWithCalibratedRed:1.0 green:0.6 blue:0.0 alpha:0.7] setFill];
+ else
+ [[NSColor colorWithCalibratedRed:1.0 green:1.0 blue:0.0 alpha:0.4] setFill];
+ [aBezierPath fill];
+ snippetRect = NSInsetRect(snippetRect, 1.3, 1.3);
+ aBezierPath = [NSBezierPath bezierPathWithRoundedRect:snippetRect xRadius:6 yRadius:10];
+ [[NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:0.8] setFill];
+ [aBezierPath fill];
+ }
}
}
}