home *** CD-ROM | disk | FTP | other *** search
- // Inspector.h
- //
- // created by Martin Wennerberg on Mon 05-Jan-1998
- //
- // when who modification
-
- #import <AppKit/AppKit.h>
-
- @interface Inspector : NSObject
- {
- @private
- IBOutlet NSView *view;
- NSArray *_targets;
- }
- + (Inspector *) sharedInspector;
-
- - (NSView *) view;
- - (void) setView:(NSView *)inspectorView;
-
- - (BOOL) isValidInspectorForTargets:(NSArray *)inspectedObjects;
-
- - (void) setTargets:(NSArray *)inspectedObjects;
- - (NSArray *) targets;
-
- - (void) revert:sender;
- @end
-