apps-gorm/GormInspectorsManager.h
Richard Frith-MacDonald c01d75390e Connection mechanism started.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5558 72102866-910b-0410-8b05-ffd578937521
1999-12-17 17:22:18 +00:00

22 lines
473 B
Objective-C

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