home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Palettes / MiscCircularSlider / MiscCSInspector.h < prev    next >
Encoding:
Text File  |  1994-03-27  |  724 b   |  42 lines

  1. /*
  2.  *    Filename:    CircularSliderInspector.h 
  3.  *    Created :    Thu Oct 22 00:46:51 1992 
  4.  *    Author  :    Vince DeMarco
  5.  *        <vince@whatnxt.cuc.ab.ca>
  6.  *    LastEditDate was "Thu Oct 22 01:09:14 1992"
  7.  */
  8.  
  9.  
  10. #import <appkit/appkit.h>
  11. #import <apps/InterfaceBuilder.h>
  12.  
  13. @interface MiscCircularSliderInspector:IBInspector
  14. {
  15.     id typeMatrix;
  16.     id minValueField;
  17.     id maxValueField;
  18.     id currentValueField;
  19.  
  20.     id optionMatrix;
  21.     id borderMatrix;
  22.  
  23.     id widthField;
  24.     id tagField;
  25. }
  26.  
  27. - init;
  28. - ok:sender;
  29. - update;
  30. - revert:sender;
  31. - (BOOL)wantsButtons;
  32. - setType:sender;
  33. - setMaximum:sender;
  34. - setMinimum:sender;
  35. - setCurrent:sender;
  36. - setOptions:sender;
  37. - setBorder:sender;
  38. - setTag:sender;
  39. - changeWidth:sender;
  40.  
  41. @end
  42.