home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscGaugePalette / MiscGaugeViewInspector.h < prev    next >
Encoding:
Text File  |  1995-04-14  |  853 b   |  42 lines

  1.  
  2.  
  3. #import <apps/InterfaceBuilder.h>
  4.  
  5. @interface MiscGaugeViewInspector:IBInspector
  6. {
  7.     id    attribsForm;            // Form with all the gauge's attributes.
  8. //    id    backgroundColorWell;    
  9.     id    gaugeColorWell;
  10.     id    textColorWell;
  11.     id    valueForm;                // Form with min, max and current value.
  12.     id  sliderMatrix;            // Matrix of sliders to match the attribsForm.
  13.     id  titleField;                // Textfield containing the gauge's title.
  14.     id  titlePositionMatrix;    // Matrix of 2 buttons for title position.
  15. }
  16.  
  17. - init;
  18.  
  19. - attribChanged: sender;
  20. - sliderChanged: sender;
  21.  
  22. - backgroundColorChanged: sender;
  23. - gaugeColorChanged: sender;
  24. - textColorChanged: sender;
  25. - valueChanged: sender;
  26.  
  27. - titleFieldChanged: sender;
  28. - titlePositionChanged: sender;
  29.  
  30. - revert: sender;
  31. - (BOOL)wantsButtons;
  32.  
  33. @end
  34.  
  35.  
  36. @interface MiscGaugeViewInspector (NibInitialization)
  37.  
  38. - awakeFromNib;
  39.  
  40. @end
  41.  
  42.