2003-03-03 09:15:48 +00:00
|
|
|
#ifndef INCLUDED_GormInspectorsManager_h
|
|
|
|
#define INCLUDED_GormInspectorsManager_h
|
1999-12-08 15:04:57 +00:00
|
|
|
|
|
|
|
@interface GormInspectorsManager : NSObject
|
|
|
|
{
|
|
|
|
NSPanel *panel;
|
1999-12-21 16:48:32 +00:00
|
|
|
NSMutableDictionary *cache;
|
1999-12-17 17:22:18 +00:00
|
|
|
NSPopUpButton *popup;
|
1999-12-17 12:10:42 +00:00
|
|
|
NSView *selectionView;
|
1999-12-08 15:04:57 +00:00
|
|
|
NSView *inspectorView;
|
1999-12-08 15:19:11 +00:00
|
|
|
NSView *buttonView;
|
1999-12-21 16:48:32 +00:00
|
|
|
NSString *oldInspector;
|
1999-12-08 15:04:57 +00:00
|
|
|
IBInspector *inspector;
|
|
|
|
int current;
|
1999-12-15 15:29:27 +00:00
|
|
|
BOOL hiddenDuringTest;
|
1999-12-08 15:04:57 +00:00
|
|
|
}
|
|
|
|
- (NSPanel*) panel;
|
1999-12-23 07:49:27 +00:00
|
|
|
- (void) setClassInspector;
|
1999-12-08 15:04:57 +00:00
|
|
|
- (void) setCurrentInspector: (id)anObject;
|
1999-12-08 15:19:11 +00:00
|
|
|
- (void) updateSelection;
|
1999-12-08 15:04:57 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|