apps-gorm/GormInspectorsManager.h

24 lines
491 B
C
Raw Normal View History

#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