blob: 595dce0247827b265a0f5004c7c5f2b75695fc91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#define PluginConfigController Bladesio1PluginConfigController
#import <Cocoa/Cocoa.h>
@interface Bladesio1PluginConfigController : NSWindowController
{
IBOutlet NSButton *enabledButton;
IBOutlet NSTextField *ipAddressField;
IBOutlet NSTextField *portField;
IBOutlet NSPopUpButton *playerMenu;
IBOutlet NSBox *configBox;
NSMutableDictionary *keyValues;
}
- (IBAction)cancel:(id)sender;
- (IBAction)ok:(id)sender;
- (IBAction)toggleEnabled:(id)sender;
- (IBAction)resetPreferences:(id)sender;
- (void)loadValues;
@end
|