apps-gorm/GormPrefs/GormPluginsPref.h

34 lines
515 B
C
Raw Normal View History

#ifndef INCLUDED_GormPluginsPref_h
#define INCLUDED_GormPluginsPref_h
#include <Foundation/NSObject.h>
#include <Foundation/NSArray.h>
#include <AppKit/NSView.h>
@interface GormPluginsPref : 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