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

  1. //
  2. //    MiscSliderCellInspector.h -- an IBInspector that edits a MiscSliderCell
  3. //                                  or its MiscSliderField.
  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 "MiscSliderField.subproj/MiscSliderCell.h"
  18. #import "MiscSliderField.subproj/MiscSliderField.h"
  19.  
  20. @interface MiscSliderCellInspector:IBInspector <IBInspectors>
  21.     {
  22.     id    idContinuous;
  23.     id    idExpandLower;
  24.     id    idExpandUpper;
  25.     id    idHardLower;
  26.     id    idHardUpper;
  27.     id    idSoftLower;
  28.     id    idSoftLowerLabel;
  29.     id    idSoftUpper;
  30.     id    idSoftUpperLabel;
  31.     id  idPosition;
  32.     id  idSplit;
  33.     id  idIntOnly;
  34.     }
  35.  
  36. - init;
  37.  
  38. @end
  39.  
  40. @interface MiscSliderCell (AttributesInspector)
  41.  
  42. - (const char *)getInspectorClassName;
  43.  
  44. @end
  45.  
  46. @interface MiscSliderField (AttributesInspector)
  47.  
  48. - (const char *)getInspectorClassName;
  49. - placeView:(NXRect *)rect;
  50.  
  51. @end
  52.  
  53. @interface TextField (IBCategoryOverride)
  54.  
  55. - placeView:(NXRect *)rect;
  56.  
  57. @end
  58.  
  59.  
  60.