home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Graphics / ToyViewer-2.6a / src / PrefControl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-22  |  655 b   |  40 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. #define  pos_Automatic    0
  5. #define  pos_Fix    1
  6. #define  pos_FixScan    2
  7.  
  8. @interface PrefControl:Object
  9. {
  10.     id    panel;
  11.     id    pcdBright;
  12.     id    pcdSize;
  13.     id    origSW;
  14.     id    positionSW;
  15.     id    adIntSlider;
  16.     id    adIntText;
  17.     id    timedAltSW;
  18.     id    updateSvcSW;
  19.     int    pcdBrightValue;
  20.     int    pcdSizeValue;
  21.     BOOL    origSWValue;
  22.     int    adIntervalValue;
  23.     int    windowPosValue;
  24.     int    timedAltValue;
  25.     BOOL    updateSvcValue;        /* call NXUpdateDynamicServices() ? */
  26. }
  27.  
  28. - init;
  29. - makeKeyAndOrderFront:sender;
  30. - changeValue:sender;
  31.  
  32. - changeSlider:sender;
  33. - (int) autoDisplayInterval;
  34. - (int) windowPosition;
  35. - (BOOL) isUpdatedServices;
  36.  
  37. @end
  38.  
  39. extern PrefControl *thePreference;
  40.