diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-28 07:51:38 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-28 07:51:38 +0000 |
commit | 7053b1fe3330b469e79d0f0689b6a2af931fb665 (patch) | |
tree | 6142573559fbf55a67a353585c8b8a3ecd693d41 /Source | |
parent | 555e11adb2f626ae3c19e1e872bf47830e22a0b2 (diff) | |
download | sequelpro-7053b1fe3330b469e79d0f0689b6a2af931fb665.tar.gz sequelpro-7053b1fe3330b469e79d0f0689b6a2af931fb665.tar.bz2 sequelpro-7053b1fe3330b469e79d0f0689b6a2af931fb665.zip |
• tiny improvements for loading SQL files and syntax highlighting
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMTextView.h | 2 | ||||
-rw-r--r-- | Source/CMTextView.m | 22 | ||||
-rw-r--r-- | Source/CustomQuery.m | 2 |
3 files changed, 17 insertions, 9 deletions
diff --git a/Source/CMTextView.h b/Source/CMTextView.h index 5272ab24..a7766f39 100644 --- a/Source/CMTextView.h +++ b/Source/CMTextView.h @@ -50,6 +50,8 @@ static inline void NSMutableAttributedStringAddAttributeValueRange (NSMutableAtt BOOL autohelpEnabled; NoodleLineNumberView *lineNumberView; + BOOL startListeningToBoundChanges; + NSString *showMySQLHelpFor; IBOutlet NSScrollView *scrollView; diff --git a/Source/CMTextView.m b/Source/CMTextView.m index 5afc75b4..1ccff666 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -84,6 +84,7 @@ YY_BUFFER_STATE yy_scan_string (const char *); autouppercaseKeywordsEnabled = YES; autohelpEnabled = NO; delBackwardsWasPressed = NO; + startListeningToBoundChanges = NO; lineNumberView = [[NoodleLineNumberView alloc] initWithScrollView:scrollView]; [scrollView setVerticalRulerView:lineNumberView]; @@ -215,7 +216,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) // Refresh quote attributes [[self textStorage] removeAttribute:kQuote range:NSMakeRange(0,[[self string] length])]; - [self insertText:@""]; + // [self insertText:@""]; // Check if the caret is inside quotes "" or ''; if so // return the normal word suggestion due to the spelling's settings @@ -2025,7 +2026,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) NSTextStorage *textStore = [self textStorage]; NSString *selfstr = [self string]; - long strlength = [selfstr length]; + NSUInteger strlength = [selfstr length]; NSRange textRange; @@ -2111,10 +2112,12 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) // NO if lexer doesn't find a token to suppress auto-uppercasing // and continue earlier. BOOL allowToCheckForUpperCase; - + // now loop through all the tokens while (token=yylex()){ + allowToCheckForUpperCase = YES; + switch (token) { case SPT_SINGLE_QUOTED_TEXT: case SPT_DOUBLE_QUOTED_TEXT: @@ -2148,8 +2151,8 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) // make sure that tokenRange is valid (and therefore within textRange) // otherwise a bug in the lex code could cause the the TextView to crash // NOTE Disabled for testing purposes for speed it up - // tokenRange = NSIntersectionRange(tokenRange, textRange); - // if (!tokenRange.length) continue; + tokenRange = NSIntersectionRange(tokenRange, textRange); + if (!tokenRange.length) continue; // If the current token is marked as SQL keyword, uppercase it if required. tokenEnd = tokenRange.location+tokenRange.length-1; @@ -2210,6 +2213,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) [numericColor release]; [variableColor release]; [textColor release]; + } @@ -2330,7 +2334,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) - (void) boundsDidChangeNotification:(NSNotification *)notification { // Invoke syntax highlighting if text view port was changed for large text - if([[self string] length] > SP_TEXT_SIZE_TRIGGER_FOR_PARTLY_PARSING) + if(startListeningToBoundChanges && [[self string] length] > SP_TEXT_SIZE_TRIGGER_FOR_PARTLY_PARSING) { [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(doSyntaxHighlighting) @@ -2367,6 +2371,8 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) [self doSyntaxHighlighting]; } + startListeningToBoundChanges = YES; + } /* @@ -2550,7 +2556,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) { [self insertText:content]; [result release]; - [self insertText:@""]; // Invoke keyword uppercasing + // [self insertText:@""]; // Invoke keyword uppercasing return; } // If UNIX "file" failed try cocoa's encoding detection @@ -2559,7 +2565,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) { [self insertText:content]; [result release]; - [self insertText:@""]; // Invoke keyword uppercasing + // [self insertText:@""]; // Invoke keyword uppercasing return; } } diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index d11d6608..cf9ee266 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -1067,7 +1067,7 @@ - (void)doPerformLoadQueryService:(NSString *)query { [textView setString:query]; - [textView insertText:@""]; + // [textView insertText:@""]; } - (NSString *)usedQuery |