home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.bin / SourceCode / Palettes / TTools / TToolsPalette / Ranker.subproj / CellCategories.h next >
Encoding:
Text File  |  1993-11-09  |  825 b   |  32 lines

  1. /* CellCategories.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <appkit/ButtonCell.h>
  10. #import <appkit/TextFieldCell.h>
  11. #import <appkit/FormCell.h>
  12. #import <appkit/SliderCell.h>
  13. #import <appkit/Matrix.h>
  14.  
  15. // We use these categories to customize the behaviour of Ranker according
  16. // to the expected behaviour of matrixes of different sorts of cells
  17. @interface ButtonCell (IBCellButtonCategory)
  18. + makePrototype;
  19. + (int)defaultMatrixMode;
  20. @end
  21.  
  22. @interface TextFieldCell (IBCellTextFieldCategory)
  23. + makePrototype;
  24. + (int)defaultMatrixMode;
  25. @end
  26.  
  27. @interface SliderCell (IBSliderCellCategory)
  28. + makePrototype;
  29. + (int)defaultMatrixMode;
  30. @end
  31.  
  32.