apps-gorm/GormPalettesPref.h
2004-07-12 04:16:09 +00:00

24 lines
410 B
Objective-C

#ifndef INCLUDED_GormPalettesPref_h
#define INCLUDED_GormPalettesPref_h
#include <Foundation/NSObject.h>
#include <Foundation/NSArray.h>
#include <AppKit/NSView.h>
@interface GormPalettesPref : NSObject
{
id table;
id addButton;
id removeButton;
id window;
id _view;
NSMutableArray *palettes;
}
- (NSView *) view;
- (void) addAction: (id)sender;
- (void) removeAction: (id)sender;
@end
#endif