Changeset 623 for trunk


Ignore:
Timestamp:
03/02/10 08:04:16 (14 years ago)
Author:
Nicholas Riley
Message:

Date autocomplete: replace a bunch of hacks with easier-to-read, less buggy code now we control the field editor.

Still need to move autocompletion into PSTimeDateEditor and fix one small autocomplete bug.

Location:
trunk/Cocoa/Pester/Source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSAlarmSetController.m

    r622 r623  
    627627@end
    628628
    629 
    630629@implementation PSAlarmSetController (NSWindowNotifications)
    631630
     
    664663}
    665664
    666 static BOOL completingTimeDate = NO;
    667 static NSString *lastTimeDateString = nil;
    668 
    669 - (void)controlTextDidBeginEditing:(NSNotification *)notification;
    670 {
    671     NSControl *control = [notification object];
    672    
    673     if (control != timeOfDay)
    674         return;
    675    
    676     [lastTimeDateString release];
    677     lastTimeDateString = [[[[notification userInfo] objectForKey:@"NSFieldEditor"] string] copy];
    678 }
    679 
    680665- (void)controlTextDidChange:(NSNotification *)notification;
    681666{
    682667    // NSLog(@"UPDATING FROM controlTextDidChange: %@", [notification object]);
    683     if ([notification object] == timeDate) {
    684         if (!completingTimeDate) {
    685             NSText *fieldEditor = [[notification userInfo] objectForKey:@"NSFieldEditor"];
    686             NSString *editingString = [fieldEditor string];
    687             if ([editingString length] > [lastTimeDateString length])
    688                 completingTimeDate = YES;
    689             [lastTimeDateString release];
    690             lastTimeDateString = [editingString copy];
    691             if (completingTimeDate) {
    692                 [fieldEditor complete: nil];
    693                 completingTimeDate = NO;
    694             }
    695         }
    696     }
    697668    [self update: [notification object]];
    698 }
    699 
    700 - (BOOL)control:(NSControl *)control textView:(NSTextView *)textView doCommandBySelector:(SEL)commandSelector;
    701 {
    702     if (control != timeDate)
    703         return NO;
    704    
    705     if (commandSelector == @selector(moveDown:)) {
    706         completingTimeDate = YES;
    707         [textView complete: nil];
    708         completingTimeDate = NO;
    709         return YES;
    710     }
    711    
    712     return NO;
    713669}
    714670
  • trunk/Cocoa/Pester/Source/PSDateFieldEditor.m

    r622 r623  
    1111
    1212@implementation PSDateFieldEditor
     13
     14- (void)insertText:(id)insertString;
     15{
     16    [super insertText: insertString];
     17    [self complete: nil];
     18    // XXX if we *do* successfully complete, need to delete remainder
     19    // XXX example: in "today", select "t" then retype it
     20}
     21
     22- (void)moveDown:(id)sender;
     23{
     24    [self deleteToEndOfLine: sender];
     25    [self complete: sender];
     26}
     27
     28@end
     29
     30@implementation PSDateFieldEditor (NSCompletion)
    1331
    1432- (NSRange)rangeForUserCompletion;
Note: See TracChangeset for help on using the changeset viewer.