1 /* vim: set ft=objc ts=4 nowrap: */
2 
3 #ifndef __PREFERENCES_H_INCLUDED
4 #define __PREFERENCES_H_INCLUDED
5 
6 #include <AppKit/AppKit.h>
7 
8 @interface Preferences : NSObject
9 {
10 	NSPanel *window;
11 	NSButton *saveButton;
12 	NSButton *closeButton;
13 
14 	NSPopUpButton *panelList;
15 	NSBox *panelBox;
16 
17 	NSMutableDictionary *modules;
18 }
19 
20 + (id) singleInstance;
21 
22 - (void) showPanel: (id) sender;
23 - (void) showSubPanel: (id) sender;
24 - (void) layoutWindow;
25 
26 @end
27 
28 #endif
29