home *** CD-ROM | disk | FTP | other *** search
-
- /*
- Copyright 1993 Jeremy Slade. All rights reserved.
- */
-
- /*
- Project: Locus
-
- Class: InspectorPane
-
- Description:
- [ FULL DESCRIPTION ]
-
- Original Author: Jeremy Slade
-
- Revision History:
- Created
- V.101 JGS Mon Feb 8 22:27:38 GMT-0700 1993
-
- */
-
-
- #ifndef InspectorPane_h
- #define InspectorPane_h
-
- #define InspectorPane_VERSION (101)
-
-
- #import <appkit/Panel.h>
-
-
- @interface InspectorPane : Panel
- {
- id target; // Object being inspected
- }
-
- // Creating, initializing
- + initialize;
- - initContent:(const NXRect *)contentRect
- style:(int)aStyle
- backing:(int)bufferingType
- buttonMask:(int)mask
- defer:(BOOL)flag;
- - free;
-
- // General InspectorPane behavior
- - inspect:anObject;
- - (BOOL)canInspect:anObject;
- - inspecting;
- - showCurrent:sender;
-
- @end
-
- #endif // InspectorPane_h
-