diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-01-20 12:11:09 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-01-20 12:11:09 +0000 |
commit | 38ed0a7356c24b2113e157fbec26004100b5f1e9 (patch) | |
tree | 5432a521262d0cd01ce25b12f5306b8234e8f81b | |
parent | 4be3b84999e8ea31d47f3ec6b6926d1f13ec2ccf (diff) | |
download | sequelpro-38ed0a7356c24b2113e157fbec26004100b5f1e9.tar.gz sequelpro-38ed0a7356c24b2113e157fbec26004100b5f1e9.tar.bz2 sequelpro-38ed0a7356c24b2113e157fbec26004100b5f1e9.zip |
• completion
- auto-completes the common prefix of all suggestions - makes typing much more faster
- “ ” as allowed character to be typed for narrow-down the list is set automatically if at least one suggestion contains a “ ”
- fixed two tiny memory leaks
- fixed detecting db/table/field names containing ` as char
- removed ⇥ binding to complete the common prefix since it's done automatically
-rw-r--r-- | Source/CMTextView.m | 23 | ||||
-rw-r--r-- | Source/SPNarrowDownCompletion.h | 1 | ||||
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 152 |
3 files changed, 74 insertions, 102 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index 3b0cab17..6df89d03 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -206,7 +206,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) if(dbs != nil && [dbs count]) { NSArray *allDbs = [dbs allKeys]; NSSortDescriptor *desc = [[NSSortDescriptor alloc] initWithKey:nil ascending:YES selector:@selector(localizedCompare:)]; - NSMutableArray *sortedDbs = [NSMutableArray array]; + NSMutableArray *sortedDbs = [[NSMutableArray array] autorelease]; [sortedDbs addObjectsFromArray:[allDbs sortedArrayUsingDescriptors:[NSArray arrayWithObject:desc]]]; NSString *currentDb = nil; @@ -309,6 +309,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) } } } + if(desc) [desc release]; } else { // Fallback for MySQL < 5 and if the data gathering is in progress if(mySQLmajorVersion > 4) @@ -364,7 +365,19 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) { // No completion for a selection (yet?) and if caret positiopn == 0 - if ([self selectedRange].length > 0 || ![self selectedRange].location) return; + if([self selectedRange].length > 0 || ![self selectedRange].location) return; + + NSInteger caretPos = [self selectedRange].location; + + // Check if caret is located after a ` - if so move caret inside + if([[self string] characterAtIndex:caretPos-1] == '`') { + if([[self string] length] > caretPos && [[self string] characterAtIndex:caretPos] == '`') { + ; + } else { + caretPos--; + [self setSelectedRange:NSMakeRange(caretPos, 0)]; + } + } NSString* filter; NSString* dbName = nil; @@ -395,7 +408,6 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) else currentDb = @""; - NSInteger caretPos = [self selectedRange].location; BOOL caretIsInsideBackticks = NO; // Is the caret inside backticks @@ -445,7 +457,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) if(currentCharacter != '`' && currentCharacter != '.') break; if(currentCharacter == '`') { // ignore `` backticksCounter++; - start-=2; + start--; } } } @@ -542,7 +554,8 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) [completionPopUp setCaretPos:pos]; [completionPopUp orderFront:self]; - + [completionPopUp insertCommonPrefix]; + } diff --git a/Source/SPNarrowDownCompletion.h b/Source/SPNarrowDownCompletion.h index d442b00f..06f9264a 100644 --- a/Source/SPNarrowDownCompletion.h +++ b/Source/SPNarrowDownCompletion.h @@ -64,5 +64,6 @@ backtickMode:(NSInteger)theBackTickMode withDbName:(NSString*)dbName withTableName:(NSString*)tableName selectedDb:(NSString*)selectedDb; - (void)setCaretPos:(NSPoint)aPos; - (void)insert_text:(NSString* )aString; +- (void)insertCommonPrefix; @end diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index dbc03b38..12d3532f 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -259,38 +259,6 @@ return [filtered count]; } -// ------- nstokenfield delegates -- does not work for menus due to the click event does not reach it -- why??? -// - (NSMenu *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell menuForRepresentedObject:(id)representedObject -// { -// NSMenu *tokenMenu = [[[NSMenu alloc] init] autorelease]; -// -// if (!representedObject) -// return nil; -// -// NSMenuItem *artistItem = [[[NSMenuItem alloc] init] autorelease]; -// [artistItem setTitle:@"aaa"]; -// [tokenMenu addItem:artistItem]; -// -// NSMenuItem *albumItem = [[[NSMenuItem alloc] init] autorelease]; -// [albumItem setTitle:@"ksajdhkjas"]; -// [tokenMenu addItem:albumItem]; -// -// -// // NSMenuItem *mItem = [[[NSMenuItem alloc] initWithTitle:@"Show Album Art" action:@selector(showAlbumArt:) keyEquivalent:@""] autorelease]; -// // [mItem setTarget:self]; -// // [mItem setRepresentedObject:representedObject]; -// // [tokenMenu addItem:mItem]; -// -// return tokenMenu; -// } -// - (BOOL)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell hasMenuForRepresentedObject:(id)representedObject -// { -// return YES; -// } -// - (NSString *)tokenFieldCell:(NSTokenFieldCell *)tokenFieldCell displayStringForRepresentedObject:(id)representedObject -// { -// return representedObject; -// } - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex { NSImage* image = nil; @@ -351,6 +319,20 @@ return [filtered objectAtIndex:rowIndex]; } +// ====================================================================================== +// = Check if at least one suggestion contains a “ ” - is so allow a “ ” to be typed in = +// ====================================================================================== +- (void)checkSpaceForAllowedCharacter +{ + [textualInputCharacters removeCharactersInString:@" "]; + for(id w in filtered){ + if([[w objectForKey:@"match"] ?: [w objectForKey:@"display"] rangeOfString:@" "].length) { + [textualInputCharacters addCharactersInString:@" "]; + break; + } + } +} + // ==================== // = Filter the items = // ==================== @@ -366,9 +348,12 @@ else predicate = [NSPredicate predicateWithFormat:@"match BEGINSWITH[c] %@ OR (match == NULL AND display BEGINSWITH[c] %@)", [self filterString], [self filterString]]; [newFiltered addObjectsFromArray:[suggestions filteredArrayUsingPredicate:predicate]]; - if(dictMode) + if(dictMode) { for(id w in [[NSSpellChecker sharedSpellChecker] completionsForPartialWordRange:NSMakeRange(0,[[self filterString] length]) inString:[self filterString] language:nil inSpellDocumentWithTag:0]) [newFiltered addObject:[NSDictionary dictionaryWithObjectsAndKeys:w, @"display", nil]]; + } else { + [self checkSpaceForAllowedCharacter]; + } } else { @@ -489,22 +474,6 @@ theParseRange = NSMakeRange(theParseRange.location, theParseRange.length-1); [self filter]; } - else if(key == NSTabCharacter) - { - if([filtered count] == 0) - { - [NSApp sendEvent:event]; - break; - } - else if([filtered count] == 1) - { - [self completeAndInsertSnippet]; - } - else - { - [self insertCommonPrefix]; - } - } else if([textualInputCharacters characterIsMember:key]) { [NSApp sendEvent:event]; @@ -512,6 +481,7 @@ theCharRange = NSMakeRange(theCharRange.location, theCharRange.length+1); theParseRange = NSMakeRange(theParseRange.location, theParseRange.length+1); [self filter]; + [self insertCommonPrefix]; } else { @@ -539,46 +509,39 @@ // ================== - (void)insertCommonPrefix { - NSInteger row = [theTableView selectedRow]; - if(row == -1) + + if([theTableView selectedRow] == -1) return; - id cur = [filtered objectAtIndex:row]; - NSString* curMatch; - curMatch = [cur objectForKey:@"match"] ?: [cur objectForKey:@"display"]; - if([[self filterString] length] + 1 < [curMatch length]) - { - NSString* prefix = [curMatch substringToIndex:[[self filterString] length] + 1]; - NSMutableArray* candidates = [NSMutableArray array]; - for(NSInteger i = row; i < [filtered count]; ++i) - { - id candidate = [filtered objectAtIndex:i]; - NSString* candidateMatch; - candidateMatch = [candidate objectForKey:@"match"] ?: [candidate objectForKey:@"display"]; - if([candidateMatch hasPrefix:prefix]) - [candidates addObject:candidateMatch]; - } + id cur = [filtered objectAtIndex:0]; - NSString* commonPrefix = curMatch; - NSString* candidateMatch; - enumerate(candidates, candidateMatch) - commonPrefix = [commonPrefix commonPrefixWithString:candidateMatch options:NSLiteralSearch]; + if([cur objectForKey:@"noCompletion"]) return; - if([[self filterString] length] < [commonPrefix length]) - { - [theView setSelectedRange:theCharRange]; - [theView insertText:commonPrefix]; - - NSString* toInsert = [commonPrefix substringFromIndex:[[self filterString] length]]; - [mutablePrefix appendString:toInsert]; - theCharRange = NSMakeRange(theCharRange.location,[commonPrefix length]); - [self filter]; - } - } - else - { - [self completeAndInsertSnippet]; + NSString* curMatch = [cur objectForKey:@"match"] ?: [cur objectForKey:@"display"]; + + if(![curMatch length]) return; + + NSMutableArray* candidates = [NSMutableArray array]; + NSMutableString *commonPrefix = [NSMutableString string]; + [commonPrefix setString:curMatch]; + for(id candidate in filtered) { + NSString* candidateMatch; + candidateMatch = [candidate objectForKey:@"match"] ?: [candidate objectForKey:@"display"]; + NSString *tempPrefix = [candidateMatch commonPrefixWithString:commonPrefix options:NSCaseInsensitiveSearch]; + // if(![tempPrefix length]) break; + if([commonPrefix length] > [tempPrefix length]) + [commonPrefix setString:tempPrefix]; } + + // if(![commonPrefix length]) return; + + NSString* toInsert = [commonPrefix substringFromIndex:[[self filterString] length]]; + [mutablePrefix appendString:toInsert]; + theCharRange.length += [toInsert length]; + theParseRange.length += [toInsert length]; + [theView insertText:[toInsert lowercaseString]]; + [self checkSpaceForAllowedCharacter]; + } - (void)insert_text:(NSString* )aString @@ -592,14 +555,11 @@ - (void)completeAndInsertSnippet { - if([theTableView selectedRow] == -1) - return; + if([theTableView selectedRow] == -1) return; NSDictionary* selectedItem = [filtered objectAtIndex:[theTableView selectedRow]]; - if([selectedItem objectForKey:@"noCompletion"]) { - return; - } + if([selectedItem objectForKey:@"noCompletion"]) return; if(dictMode){ [self insert_text:[selectedItem objectForKey:@"match"] ?: [selectedItem objectForKey:@"display"]]; @@ -622,14 +582,12 @@ [self insert_text:path]; } } else { - if([[self filterString] length] < [candidateMatch length]) { - // Is completion string a schema name for current connection - if([selectedItem objectForKey:@"isRef"]) { - backtickMode = 0; // suppress move the caret one step rightwards - [self insert_text:[candidateMatch backtickQuotedString]]; - } else { - [self insert_text:candidateMatch]; - } + // Is completion string a schema name for current connection + if([selectedItem objectForKey:@"isRef"]) { + backtickMode = 0; // suppress move the caret one step rightwards + [self insert_text:[candidateMatch backtickQuotedString]]; + } else { + [self insert_text:candidateMatch]; } } } |