scroll.h
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:
操作系统开发
开发平台:
Visual C++
- /*
- COW : Character Oriented Windows
- scroll.h : scroll bar cow private interface
- */
- #define cwExtraScroll 5 /* size of rgwExtra for scroll windows */
- /* scroll bar definitions */
- #define ctickRepSb rgwExtra[0] /* # of ticks to repeat */
- #define ptCurSb rgwExtra[1] /* current position on scroll line */
- #define ptMinSb rgwExtra[2] /* minimum position on scroll line */
- #define ptMaxSb rgwExtra[3] /* end position on scroll line */
- #define ptElevatorSb rgwExtra[4] /* elevator position (lower byte) */
- /* Repeat timing values :
- * ctickRepScrollStart : time till start scrolling
- * ctickRepScrollDefault : repeat rate (default SDM scroll bars)
- * ctickRepList : repeat rate (for listbox contents), slow
- * (fast is 2*)
- *
- * ctick values are in 1/18 th sec
- */
- #define ctickRepScrollStart 9 /* 1/2 second */
- #define ctickRepScrollDefault 1 /* as fast as possible */
- #define ctickRepList 2
- /* private message */
- #define SB_UPCLICK 15