2003-05-13 04:10:12 +00:00
|
|
|
#ifndef INCLUDED_GormHeadersPref_h
|
|
|
|
#define INCLUDED_GormHeadersPref_h
|
|
|
|
|
2019-11-03 01:57:39 +00:00
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <AppKit/AppKit.h>
|
2003-05-13 04:10:12 +00:00
|
|
|
|
|
|
|
@interface GormHeadersPref : NSObject
|
|
|
|
{
|
|
|
|
id preloadButton;
|
2004-02-21 06:35:17 +00:00
|
|
|
id table;
|
2003-05-13 04:10:12 +00:00
|
|
|
id addButton;
|
|
|
|
id removeButton;
|
|
|
|
id window;
|
|
|
|
id _view;
|
|
|
|
|
|
|
|
NSMutableArray *headers;
|
|
|
|
}
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* View to show in prefs panel.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (NSView *) view;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a header.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (void) addAction: (id)sender;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a header.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (void) removeAction: (id)sender;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the "preload" switch is set.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (void) preloadAction: (id)sender;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|