diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-04-07 13:05:09 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-04-07 13:05:09 +0000 |
commit | 7baf6b3c55d8a697bee72b846596ff371dbea8ac (patch) | |
tree | 76863870e7ae981958836e5e1d395b67ca75815c /Source | |
parent | 8a8d39240ed1486c2fb4669f5f5340936c0ac391 (diff) | |
download | sequelpro-7baf6b3c55d8a697bee72b846596ff371dbea8ac.tar.gz sequelpro-7baf6b3c55d8a697bee72b846596ff371dbea8ac.tar.bz2 sequelpro-7baf6b3c55d8a697bee72b846596ff371dbea8ac.zip |
• improved auto-uppercasing for: pasting queries from favourites & history and before performQueries
• improved undo behaviour of auto-uppercasing
• added undo behaviour for pasting queries from favourites & history
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMTextView.m | 18 | ||||
-rw-r--r-- | Source/CustomQuery.m | 17 |
2 files changed, 28 insertions, 7 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index 0493f0c8..e8bb59ba 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -976,14 +976,18 @@ SYNTAX HIGHLIGHTING! unsigned long tokenEnd = tokenRange.location+tokenRange.length-1; // Check the end of the token if (autouppercaseKeywordsEnabled && [[self textStorage] attribute:kSQLkeyword atIndex:tokenEnd effectiveRange:nil]) - // check if next char is not a kSQLkeyword; if so then upper case keyword + // check if next char is not a kSQLkeyword; if so then upper case keyword if not already done // @try catch() for catching valid index esp. after deleteBackward: - @try { - if(![[self textStorage] attribute:kSQLkeyword atIndex:tokenEnd+1 effectiveRange:nil]) - // Register it for undo - // [self shouldChangeTextInRange:tokenRange replacementString:[[[self string] substringWithRange:tokenRange] uppercaseString]]; - // NOTE: If one does this registering it ends up in single-character-undo - [self replaceCharactersInRange:tokenRange withString:[[[self string] substringWithRange:tokenRange] uppercaseString]]; + @try + { + NSString* curTokenString = [[self string] substringWithRange:tokenRange]; + if(![[self textStorage] attribute:kSQLkeyword atIndex:tokenEnd+1 effectiveRange:nil] && + ![[curTokenString uppercaseString] isEqualToString:curTokenString]) + { + // Register it for undo works only partly for now, at least the uppercased keyword will be selected + [self shouldChangeTextInRange:tokenRange replacementString:[curTokenString uppercaseString]]; + [self replaceCharactersInRange:tokenRange withString:[curTokenString uppercaseString]]; + } } @catch(id ae) { } [textStore addAttribute: NSForegroundColorAttributeName diff --git a/Source/CustomQuery.m b/Source/CustomQuery.m index 23590fa7..39f961c6 100644 --- a/Source/CustomQuery.m +++ b/Source/CustomQuery.m @@ -56,6 +56,9 @@ [self performQueries:queries]; + // Invoke textStorageDidProcessEditing: for syntax highlighting and auto-uppercase + [textView insertText:@""]; + // Select the text of the query textView for re-editing [textView selectAll:self]; } @@ -87,6 +90,12 @@ [queryParser release]; } + // Invoke textStorageDidProcessEditing: for syntax highlighting and auto-uppercase + // and preserve the selection + [textView setSelectedRange:NSMakeRange(0,0)]; + [textView insertText:@""]; + [textView setSelectedRange:selectedRange]; + [self performQueries:queries]; } @@ -128,7 +137,11 @@ insert the choosen favorite query in the query textView or save query to favorit [queryFavoritesSheet orderOut:nil]; } else if ( [queryFavoritesButton indexOfSelectedItem] != 3) { //choose favorite + // Register the next action for undo + [textView shouldChangeTextInRange:[textView selectedRange] replacementString:[queryFavoritesButton titleOfSelectedItem]]; [textView replaceCharactersInRange:[textView selectedRange] withString:[queryFavoritesButton titleOfSelectedItem]]; + // invoke textStorageDidProcessEditing: for syntax highlighting and auto-uppercase + [textView insertText:@""]; } } @@ -137,7 +150,11 @@ insert the choosen favorite query in the query textView or save query to favorit insert the choosen history query in the query textView */ { + // Register the next action for undo + [textView shouldChangeTextInRange:NSMakeRange(0,[[textView string] length]) replacementString:[queryHistoryButton titleOfSelectedItem]]; [textView setString:[queryHistoryButton titleOfSelectedItem]]; + // Invoke textStorageDidProcessEditing: for syntax highlighting and auto-uppercase + [textView insertText:@""]; [textView selectAll:self]; } |