apps-gorm/GormInspectorsManager.h
Richard Frith-MacDonald dc5e41f84c tidy
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5615 72102866-910b-0410-8b05-ffd578937521
1999-12-23 07:49:27 +00:00

23 lines
491 B
Objective-C

#ifndef GORMINSPECTORSMANAGER_H
#define GORMINSPECTORSMANAGER_H
@interface GormInspectorsManager : NSObject
{
NSPanel *panel;
NSMutableDictionary *cache;
NSPopUpButton *popup;
NSView *selectionView;
NSView *inspectorView;
NSView *buttonView;
NSString *oldInspector;
IBInspector *inspector;
int current;
BOOL hiddenDuringTest;
}
- (NSPanel*) panel;
- (void) setClassInspector;
- (void) setCurrentInspector: (id)anObject;
- (void) updateSelection;
@end
#endif