-
Notifications
You must be signed in to change notification settings - Fork 0
/
PreferenceController.h
42 lines (27 loc) · 969 Bytes
/
PreferenceController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// $Header: /home/cvsmaster/CVSROOT/MacUtils/Kwiggly/PreferenceController.h,v 1.8 2004/03/19 20:36:29 enno Exp $
//
// Created by Enno Brehm on Mon Jul 28 2003.
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//
#import <AppKit/AppKit.h>
@class AppController;
@interface PreferenceController : NSWindowController {
NSArray *hotkeys;
NSMutableArray *keywords;
NSMutableArray *expansions;
AppController *appController;
IBOutlet NSTableView *tableView;
IBOutlet NSPopUpButton *hotkeyPopup;
IBOutlet NSPopUpButton *modifierPopup;
}
-(PreferenceController*) initWithAppController: (AppController*) aController;
- (void) loadValues;
- (IBAction) addEntry: (id) sender;
- (IBAction) removeEntry: (id) sender;
- (IBAction) close: (id) sender;
- (IBAction) apply: (id) sender;
- (IBAction) hotkeySelected: (id) sender;
- (IBAction) modifierSelected: (id) sender;
-(void) updateHotkey: (id) sender;
@end