home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Palettes / ColorBrowser / ColorBrowserInspector.h < prev    next >
Encoding:
Text File  |  1993-01-18  |  1.5 KB  |  54 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    ColorBrowserInspector
  4. //
  5. //    Inherits From:        IBInspector
  6. //
  7. //    Declared In:        ColorBrowserInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        ColorBrowserInspector manages IB Attributes inspection for
  12. //        an instance of the ColorBrowser class.
  13. //
  14. //
  15. //    Disclaimer
  16. //
  17. //        You may freely copy, distribute and reuse this software and its
  18. //        associated documentation. I disclaim any warranty of any kind, 
  19. //        expressed or implied, as to its fitness for any particular use.
  20. //
  21. //----------------------------------------------------------------------------------------------------
  22. #import <apps/InterfaceBuilder.h>
  23.  
  24.  
  25. @interface ColorBrowserInspector : IBInspector
  26. {
  27.     id    colorBrowser;
  28.     id    colorPanel;
  29.        id        horizontalScrolling;
  30.         id        verticalScrolling;
  31.         id        options;
  32.     id    font;
  33. }
  34.  
  35.  
  36. //----------------------------------------------------------------------------------------------------
  37. //    Setting Attributes
  38. //----------------------------------------------------------------------------------------------------
  39. - setTextColor;
  40. - setHorizontalScrolling;
  41. - setVerticalScrolling;
  42. - setOptions;
  43.  
  44.  
  45. //----------------------------------------------------------------------------------------------------
  46. //    Reverting Attributes
  47. //----------------------------------------------------------------------------------------------------
  48. - revertTextColor;
  49. - revertHorizontalScrolling;
  50. - revertVerticalScrolling;
  51. - revertOptions;
  52.  
  53.  
  54. @end