mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5521 72102866-910b-0410-8b05-ffd578937521
22 lines
470 B
Objective-C
22 lines
470 B
Objective-C
#ifndef GORMINSPECTORSMANAGER_H
|
|
#define GORMINSPECTORSMANAGER_H
|
|
|
|
@interface GormInspectorsManager : NSObject
|
|
{
|
|
NSPanel *panel;
|
|
NSMatrix *selectionView;
|
|
NSBox *divider;
|
|
NSView *inspectorView;
|
|
NSView *buttonView;
|
|
IBInspector *emptyInspector;
|
|
IBInspector *multipleInspector;
|
|
IBInspector *inspector;
|
|
int current;
|
|
BOOL hiddenDuringTest;
|
|
}
|
|
- (NSPanel*) panel;
|
|
- (void) setCurrentInspector: (id)anObject;
|
|
- (void) updateSelection;
|
|
@end
|
|
|
|
#endif
|