apps-gorm/GormInspectorsManager.h

23 lines
473 B
C
Raw Normal View History

#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