apps-gorm/GormInspectorsManager.h
Richard Frith-MacDonald 2d0fe9b5c2 Update to correct version
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5415 72102866-910b-0410-8b05-ffd578937521
1999-12-08 15:19:11 +00:00

21 lines
443 B
Objective-C

#ifndef GORMINSPECTORSMANAGER_H
#define GORMINSPECTORSMANAGER_H
@interface GormInspectorsManager : NSObject
{
NSPanel *panel;
NSMatrix *selectionView;
NSBox *divider;
NSView *inspectorView;
NSView *buttonView;
IBInspector *emptyInspector;
IBInspector *multipleInspector;
IBInspector *inspector;
int current;
}
- (NSPanel*) panel;
- (void) setCurrentInspector: (id)anObject;
- (void) updateSelection;
@end
#endif