apps-gorm/GormCore/GormPalettesPref.h
2023-06-14 07:15:20 -04:00

32 lines
488 B
Objective-C

#ifndef INCLUDED_GormPalettesPref_h
#define INCLUDED_GormPalettesPref_h
#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
@interface GormPalettesPref : NSObject
{
id table;
id addButton;
id removeButton;
id window;
id _view;
}
/**
* View to be shown in the preferences panel.
*/
- (NSView *) view;
/**
* Add a palette to the list.
*/
- (void) addAction: (id)sender;
/**
* Remove a palette from the list.
*/
- (void) removeAction: (id)sender;
@end
#endif