scroll.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /*
  2. COW : Character Oriented Windows
  3. scroll.h : scroll bar cow private interface
  4. */
  5. #define cwExtraScroll 5 /* size of rgwExtra for scroll windows */
  6. /* scroll bar definitions */
  7. #define ctickRepSb  rgwExtra[0] /* # of ticks to repeat */
  8. #define ptCurSb  rgwExtra[1] /* current position on scroll line */
  9. #define ptMinSb  rgwExtra[2] /* minimum position on scroll line */
  10. #define ptMaxSb  rgwExtra[3] /* end position on scroll line */
  11. #define ptElevatorSb rgwExtra[4] /* elevator position (lower byte) */
  12. /* Repeat timing values :
  13.  * ctickRepScrollStart : time till start scrolling
  14.  * ctickRepScrollDefault : repeat rate (default SDM scroll bars)
  15.  * ctickRepList : repeat rate (for listbox contents), slow
  16.  * (fast is 2*)
  17.  *
  18.  * ctick values are in 1/18 th sec
  19. */
  20. #define ctickRepScrollStart 9 /* 1/2 second */
  21. #define ctickRepScrollDefault 1 /* as fast as possible */
  22. #define ctickRepList 2
  23. /* private message */
  24. #define SB_UPCLICK 15