home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
-
- #define pos_Automatic 0
- #define pos_Fix 1
- #define pos_FixScan 2
-
- @interface PrefControl:Object
- {
- id panel;
- id pcdBright;
- id pcdSize;
- id origSW;
- id positionSW;
- id adIntSlider;
- id adIntText;
- id timedAltSW;
- id updateSvcSW;
- int pcdBrightValue;
- int pcdSizeValue;
- BOOL origSWValue;
- int adIntervalValue;
- int windowPosValue;
- int timedAltValue;
- BOOL updateSvcValue; /* call NXUpdateDynamicServices() ? */
- }
-
- - init;
- - makeKeyAndOrderFront:sender;
- - changeValue:sender;
-
- - changeSlider:sender;
- - (int) autoDisplayInterval;
- - (int) windowPosition;
- - (BOOL) isUpdatedServices;
-
- @end
-
- extern PrefControl *thePreference;
-