mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
25 lines
406 B
C
25 lines
406 B
C
|
#ifndef INCLUDED_GormGeneralPref_h
|
||
|
#define INCLUDED_GormGeneralPref_h
|
||
|
|
||
|
#include <Foundation/NSObject.h>
|
||
|
#include <AppKit/NSView.h>
|
||
|
|
||
|
@interface GormGeneralPref : NSObject
|
||
|
{
|
||
|
id window;
|
||
|
id backupButton;
|
||
|
id inspectorButton;
|
||
|
id palettesButton;
|
||
|
|
||
|
id _view;
|
||
|
}
|
||
|
|
||
|
- (NSView *) view;
|
||
|
- (void) palettesAction: (id)sender;
|
||
|
- (void) inspectorAction: (id)sender;
|
||
|
- (void) backupAction: (id)sender;
|
||
|
@end
|
||
|
|
||
|
|
||
|
#endif
|