home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Examples / AppKit / ColorTest / Controller.h < prev    next >
Encoding:
Text File  |  1992-05-30  |  743 b   |  39 lines

  1. #import <objc/Object.h>
  2.  
  3.  
  4.  
  5. @interface Controller:Object
  6. {
  7.     id accessoryView;
  8.     id currModeText;
  9.     id attachedList1;
  10.     id attachedList2;
  11.     id attachedList3;
  12.     id continuousSwitch;
  13.     id accessoryViewSwitch;
  14.     id addRedButton;
  15.     id continuousOnOffMatrix;
  16.     id alphaText;
  17.     id colorPanelAlphaMatrix;
  18.     id appAlphaMatrix;
  19.     id sampleWell;
  20.     id theWell;
  21. }
  22.  
  23. - useAccessoryView:sender;
  24. - attachMatrixClicked:sender;
  25. - addRed:sender;
  26. - insertCustomPicker:sender;
  27. - colorPanelOpacityOnOff:sender;
  28. - appOpacityOnOff:sender;
  29. - continuousOnOff:sender;
  30. - isContinuous:sender;
  31. - showCurrColor:sender;
  32. - alphaValue:sender;
  33. - queryMode:sender;
  34. - modeMatrixClicked:sender;
  35. - maskMatrixClicked:sender;
  36. - showColorPanel:sender;
  37.  
  38. @end
  39.