2003-05-13 04:10:12 +00:00
|
|
|
#ifndef INCLUDED_GormGeneralPref_h
|
|
|
|
#define INCLUDED_GormGeneralPref_h
|
|
|
|
|
2019-11-03 01:57:39 +00:00
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <AppKit/AppKit.h>
|
2003-05-13 04:10:12 +00:00
|
|
|
|
|
|
|
@interface GormGeneralPref : NSObject
|
|
|
|
{
|
|
|
|
id window;
|
|
|
|
id backupButton;
|
2005-05-21 15:10:14 +00:00
|
|
|
id interfaceMatrix;
|
2008-01-01 02:24:35 +00:00
|
|
|
id checkConsistency;
|
2003-05-13 04:10:12 +00:00
|
|
|
id _view;
|
|
|
|
}
|
|
|
|
|
2005-07-30 13:22:42 +00:00
|
|
|
/**
|
|
|
|
* View to be shown.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (NSView *) view;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should create a backup file.
|
|
|
|
*/
|
2003-05-13 04:10:12 +00:00
|
|
|
- (void) backupAction: (id)sender;
|
2005-07-30 13:22:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the classes view as a browser or an outline.
|
|
|
|
*/
|
2005-05-21 15:10:14 +00:00
|
|
|
- (void) classesAction: (id)sender;
|
2008-01-01 02:24:35 +00:00
|
|
|
|
|
|
|
- (void) consistencyAction: (id)sender;
|
2003-05-13 04:10:12 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|