mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
34 lines
515 B
C
34 lines
515 B
C
|
#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
|