home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / KeyDownBrowser / KeyDownBrowserInspector.h < prev    next >
Text File  |  1993-01-19  |  2KB  |  55 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    KeyDownBrowserInspector
  4. //
  5. //    Inherits From:        IBInspector
  6. //
  7. //    Declared In:        KeyDownBrowserInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        KeyDownBrowserInspector manages IB Attributes inspection for
  12. //        an instance of the KeyDownBrowser 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 KeyDownBrowserInspector : IBInspector
  26. {
  27.        id        horizontalScrolling;
  28.         id        verticalScrolling;
  29.         id        options;
  30.     id    caseSensitiveSearch;
  31.     id    inputTimeOut;
  32. }
  33.  
  34.  
  35. //----------------------------------------------------------------------------------------------------
  36. //    Setting Attributes
  37. //----------------------------------------------------------------------------------------------------
  38. - setHorizontalScrolling;
  39. - setVerticalScrolling;
  40. - setOptions;
  41. - setCaseSensitiveSearch;
  42. - setInputTimeOut;
  43.  
  44.  
  45. //----------------------------------------------------------------------------------------------------
  46. //    Reverting Attributes
  47. //----------------------------------------------------------------------------------------------------
  48. - revertHorizontalScrolling;
  49. - revertVerticalScrolling;
  50. - revertOptions;
  51. - revertCaseSensitiveSearch;
  52. - revertInputTimeOut;
  53.  
  54.  
  55. @end