apps-gorm/GormGeneralPref.h

27 lines
462 B
C
Raw Normal View History

#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 archiveMatrix;
id _view;
}
- (NSView *) view;
- (void) palettesAction: (id)sender;
- (void) inspectorAction: (id)sender;
- (void) backupAction: (id)sender;
- (void) archiveAction: (id)sender;
@end
#endif