apps-gorm/GormPrefs/GormGeneralPref.h
Gregory John Casamento d4ce568b41 Changes to allow the user to switch between a browser and an outline view for classes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21242 72102866-910b-0410-8b05-ffd578937521
2005-05-21 15:10:14 +00:00

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