apps-gorm/GormInspectorsManager.h
Gregory John Casamento 194f1b0d9e Made some enhancements to class manager and inspector manager. General
clean up and corrected some bugs.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16788 72102866-910b-0410-8b05-ffd578937521
2003-05-25 19:08:36 +00:00

24 lines
537 B
Objective-C

#ifndef INCLUDED_GormInspectorsManager_h
#define INCLUDED_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) setEmptyInspector;
- (void) setCurrentInspector: (id)anObject;
- (void) updateSelection;
@end
#endif