blob: 4519d98a7355d925c97dbd98912933913b4cfb96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* PluginController */
#import <Cocoa/Cocoa.h>
#import "PluginList.h"
@interface PluginController : NSObject
@property (weak) IBOutlet NSButton *aboutButton;
@property (weak) IBOutlet NSButton *configureButton;
@property (weak) IBOutlet NSPopUpButton *pluginMenu;
- (IBAction)doAbout:(id)sender;
- (IBAction)doConfigure:(id)sender;
- (IBAction)selectPlugin:(id)sender;
- (void)setPluginsTo:(NSArray *)list withType:(int)type;
@end
|