2003-05-13 04:10:12 +00:00
|
|
|
#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;
|
2004-02-21 18:48:48 +00:00
|
|
|
id archiveMatrix;
|
2003-05-13 04:10:12 +00:00
|
|
|
|
|
|
|
id _view;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSView *) view;
|
|
|
|
- (void) palettesAction: (id)sender;
|
|
|
|
- (void) inspectorAction: (id)sender;
|
|
|
|
- (void) backupAction: (id)sender;
|
2004-02-21 18:48:48 +00:00
|
|
|
- (void) archiveAction: (id)sender;
|
2003-05-13 04:10:12 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|