home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Viewers / aa_m68k_Intel_Only / ToyViewer1.2 / Source / PrefControl.h < prev    next >
Encoding:
Text File  |  1995-11-12  |  417 b   |  28 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface PrefControl:Object
  5. {
  6.     id    panel;
  7.     id    pcdBright;
  8.     id    pcdSize;
  9.     id    origSW;
  10.     id    adIntSlider;
  11.     id    adIntText;
  12.     int    pcdBrightValue;
  13.     int    pcdSizeValue;
  14.     BOOL    origSWValue;
  15.     int    adIntervalValue;
  16. }
  17.  
  18. - init;
  19. - makeKeyAndOrderFront:sender;
  20. - changeValue:sender;
  21. - pcdSize:(int *)base bright:(int *)bright;
  22.  
  23. - changeSlider:sender;
  24. - (int) autoDisplayInterval;
  25. - (BOOL) originUpperLeft;
  26.  
  27. @end
  28.