summaryrefslogtreecommitdiffstats
path: root/macosx/PrefsController.h
blob: cdd960f89484df095f3721ecca2ae109749faf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PrefsController */

#include <Cocoa/Cocoa.h>

@interface PrefsController : NSObject
{
    IBOutlet NSPanel  * fPanel;
    IBOutlet NSButton * fUpdateCheck;
}

- (IBAction) OpenPanel:    (id) sender;
- (IBAction) ClosePanel:   (id) sender;
- (IBAction) CheckChanged: (id) sender;

@end