Changeset 142 for trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.m
- Timestamp:
- 06/14/03 09:54:54 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.m
r89 r142 14 14 #import "ICeCoffEEController.h" 15 15 #import "ICeCoffEEShared.h" 16 #import "ICeCoffEEServicePrefController.h" 16 17 17 18 // Just a handy macro for localized strings from our bundle; unused in this project. … … 25 26 + (id)prefPaneHandlerForAPE:(NSBundle*)apeBundle andBundle:(NSBundle*)prefPaneBundle 26 27 { 27 return [[self alloc] initWithAPE: apeBundle andBundle:prefPaneBundle];28 return [[self alloc] initWithAPE: apeBundle andBundle: prefPaneBundle]; 28 29 } 29 30 … … 31 32 - (id)initWithAPE:(NSBundle*)apeBundle andBundle:(NSBundle*)prefPaneBundle 32 33 { 33 [self setAPEBundle: apeBundle prefPaneBundle:prefPaneBundle];34 [self setAPEBundle: apeBundle prefPaneBundle: prefPaneBundle]; 34 35 35 [NSBundle loadNibNamed:@"APE Manager plugin" owner:self]; 36 [NSBundle loadNibNamed:@"APE Manager plugin" owner:self]; // load our nib file; it will call our awakeFromNib method 36 37 37 38 return self; … … 144 145 [self prefsChanged]; 145 146 } 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 } 146 156 - (IBAction)errorSoundEnabled:(NSButton *)sender; 147 157 {
Note:
See TracChangeset
for help on using the changeset viewer.