home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / AppKit / ColorTest / RedPicker.h < prev    next >
Encoding:
Text File  |  1992-06-17  |  347 b   |  17 lines

  1. #import <appkit/NXColorPicker.h>
  2.  
  3. @interface RedPicker : NXColorPicker <NXColorPickingCustom>
  4. {
  5.     id button;
  6. }
  7.  
  8. - initFromPickerMask:(int)mask withColorPanel:owningColorPanel;
  9. - provideNewView:(BOOL)initialRequest;
  10. // Return NO if "mode" not supported.
  11. - (BOOL)supportsMode:(int)mode;   
  12. - (int)currentMode;
  13. - setColor:(NXColor)newColor;
  14.  
  15.  
  16.  
  17. @end