mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@25813 72102866-910b-0410-8b05-ffd578937521
35 lines
541 B
Objective-C
35 lines
541 B
Objective-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 interfaceMatrix;
|
|
id checkConsistency;
|
|
id _view;
|
|
}
|
|
|
|
/**
|
|
* View to be shown.
|
|
*/
|
|
- (NSView *) view;
|
|
|
|
/**
|
|
* Should create a backup file.
|
|
*/
|
|
- (void) backupAction: (id)sender;
|
|
|
|
/**
|
|
* Show the classes view as a browser or an outline.
|
|
*/
|
|
- (void) classesAction: (id)sender;
|
|
|
|
- (void) consistencyAction: (id)sender;
|
|
@end
|
|
|
|
|
|
#endif
|