home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiscKit1.2.6 / Palettes / MiscValueFieldPalette / MiscValueCellInspector.h < prev    next >
Encoding:
Text File  |  1994-02-21  |  1.2 KB  |  50 lines

  1. //
  2. //    MiscValueCellInspector.h -- an IBInspector that edits a MiscValueCell
  3. //                                  or its MiscValueField.
  4. //       Written by David Fedchenko. Copyright 1994 by David Fedchenko.
  5. //                    Version 1.0  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. #import <appkit/appkit.h>
  16. #import <apps/InterfaceBuilder.h>
  17. #import "MiscValueField.subproj/MiscValueCell.h"
  18. #import "MiscValueField.subproj/MiscValueField.h"
  19.  
  20. @interface MiscValueCellInspector:IBInspector <IBInspectors>
  21.     {
  22.     id  idNormal;
  23.     id  idAlternate;
  24.     id  idHardLower;
  25.     id  idHardUpper;
  26.     id  idSoftLower;
  27.     id  idSoftUpper;
  28.     id  idSoftLowerLabel;
  29.     id  idSoftUpperLabel;
  30.     id  idExpandLower;
  31.     id  idExpandUpper;
  32.     id  idContinuous;
  33.     }
  34.  
  35. - init;
  36.  
  37. @end
  38.  
  39. @interface MiscValueCell (AttributesInspector)
  40.  
  41. - (const char *)getInspectorClassName;
  42.  
  43. @end
  44.  
  45. @interface MiscValueField (AttributesInspector)
  46.  
  47. - (const char *)getInspectorClassName;
  48.  
  49. @end
  50.