home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************
-
- Copyright 1993 Northeast Data Corp. All Rights Reserved
-
- ****************************************************************/
-
- /***************************************************************
-
-
- slider.H
-
- Public definitions for applications that use the slider.
- - Messages
- - Notification codes.
- - Control Styles.
-
- Version 1.0, August 1993, Wade Cobb
-
- ****************************************************************/
-
- //Control-specific messages
- #define SCM_SETRANGE (WM_USER+1)
- #define SCM_GETRANGE (WM_USER+2)
- #define SCM_GETPOS (WM_USER+3)
- #define SCM_SETPOS (WM_USER+4)
-
- // The one callable function to force the DLL to load
- void FAR PASCAL registerSlider(void);
-
- //Notification codes sent via WM_COMMAND from the control.
- #define SCN_RANGECHANGE 1
-
- //Control specific styles.
- #define SCS_VERTICAL 0x0001L
- #define SCS_HORIZONTAL 0x0002L
- #define SCS_NOPEGSCROLL 0x0004L
- #define SCS_TEXTHASRANGE 0x0008L
- #define SCS_INVERTRANGE 0x0010L
- #define SCS_LEFTTICKS 0x0020L
- #define SCS_TOPTICKS 0x0020L
- #define SCS_RIGHTTICKS 0x0040L
- #define SCS_BOTTOMTICKS 0x0040L
- #define SCS_TABSTOP 0x0080L