⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scroll.h

📁 dos 1.0 其中包含quick basic源代码、内存管理himem emm386 发展历史
💻 H
字号:
/*
	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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -