mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
32 lines
488 B
Objective-C
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
|