Ignore:
Timestamp:
06/14/03 09:54:54 (21 years ago)
Author:
Nicholas Riley
Message:

ICeCoffEE 1.4a1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.m

    r89 r142  
    1414#import "ICeCoffEEController.h"
    1515#import "ICeCoffEEShared.h"
     16#import "ICeCoffEEServicePrefController.h"
    1617
    1718// Just a handy macro for localized strings from our bundle; unused in this project.
     
    2526+ (id)prefPaneHandlerForAPE:(NSBundle*)apeBundle andBundle:(NSBundle*)prefPaneBundle
    2627{
    27     return [[self alloc] initWithAPE:apeBundle andBundle:prefPaneBundle];
     28    return [[self alloc] initWithAPE: apeBundle andBundle: prefPaneBundle];
    2829}
    2930
     
    3132- (id)initWithAPE:(NSBundle*)apeBundle andBundle:(NSBundle*)prefPaneBundle
    3233{
    33     [self setAPEBundle:apeBundle prefPaneBundle:prefPaneBundle];
     34    [self setAPEBundle: apeBundle prefPaneBundle: prefPaneBundle];
    3435   
    35     [NSBundle loadNibNamed:@"APE Manager plugin" owner:self];   // load our nib file; it will call our awakeFromNib method
     36    [NSBundle loadNibNamed:@"APE Manager plugin" owner:self]; // load our nib file; it will call our awakeFromNib method
    3637   
    3738    return self;
     
    144145    [self prefsChanged];
    145146}
     147- (IBAction)editContextualServices:(NSButton *)sender;
     148{
     149    [[ICeCoffEEServicePrefController alloc] performSelector: @selector(initWithParentWindow:) withObject: [NSApp mainWindow] afterDelay: 0.01];
     150}
     151- (IBAction)terminalRequireOptionForSelfDrag:(NSButton *)sender;
     152{
     153    [prefs setBool: [terminalRequireOptionForSelfDrag state] forKey: ICP(TerminalRequireOptionForSelfDrag)];
     154    [self prefsChanged];
     155}
    146156- (IBAction)errorSoundEnabled:(NSButton *)sender;
    147157{
Note: See TracChangeset for help on using the changeset viewer.