home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Graphics / Morph-2.0a / Inspector.h < prev    next >
Encoding:
Text File  |  1998-01-06  |  492 b   |  27 lines

  1. // Inspector.h 
  2. //
  3. // created by Martin Wennerberg on Mon 05-Jan-1998
  4. //
  5. // when        who    modification
  6.  
  7. #import <AppKit/AppKit.h>
  8.  
  9. @interface Inspector : NSObject
  10. {
  11.     @private
  12.     IBOutlet NSView *view;
  13.     NSArray            *_targets;
  14. }
  15. + (Inspector *) sharedInspector;
  16.  
  17. - (NSView *) view;
  18. - (void) setView:(NSView *)inspectorView;
  19.  
  20. - (BOOL) isValidInspectorForTargets:(NSArray *)inspectedObjects;
  21.  
  22. - (void) setTargets:(NSArray *)inspectedObjects;
  23. - (NSArray *) targets;
  24.  
  25. - (void) revert:sender;
  26. @end
  27.