2004-07-12 04:16:09 +00:00
|
|
|
#ifndef INCLUDED_GormPalettesPref_h
|
|
|
|
#define INCLUDED_GormPalettesPref_h
|
|
|
|
|
2019-11-03 01:57:39 +00:00
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <AppKit/AppKit.h>
|
2004-07-12 04:16:09 +00:00
|
|
|
|
|
|
|
@interface GormPalettesPref : NSObject
|
|
|
|
{
|
|
|
|
id table;
|
|
|
|
id addButton;
|
|
|
|
id removeButton;
|
|
|
|
id window;
|
|
|
|
id _view;
|
|
|
|
}
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* View to be shown in the preferences panel.
|
|
|
|
*/
|
2004-07-12 04:16:09 +00:00
|
|
|
- (NSView *) view;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a palette to the list.
|
|
|
|
*/
|
2004-07-12 04:16:09 +00:00
|
|
|
- (void) addAction: (id)sender;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a palette from the list.
|
|
|
|
*/
|
2004-07-12 04:16:09 +00:00
|
|
|
- (void) removeAction: (id)sender;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|