📄 conio.h
字号:
#ifndef __TL_CONIO_H#define __TL_CONIO_H#ifdef __cplusplusextern "C"{#endif/* "bucky bits"0x0100 is reserved for non-ASCII keys, so start with 0x200 */#define KBD_META_ALT 0x0200 /* Alt is pressed */#define KBD_META_CTRL 0x0400 /* Ctrl is pressed */#define KBD_META_SHIFT 0x0800 /* Shift is pressed */#define KBD_META_ANY (KBD_META_ALT | KBD_META_CTRL | KBD_META_SHIFT)#define KBD_META_CAPS 0x1000 /* CapsLock is on */#define KBD_META_NUM 0x2000 /* NumLock is on */#define KBD_META_SCRL 0x4000 /* ScrollLock is on *//* "ASCII" values for non-ASCII keys. All of these are user-defined.Hrrm. Unicode defines code pages for pseudographics (e.g. box-drawingcharacters). I wonder it defines anything for keys like these?function keys: */#define KEY_F1 0x80#define KEY_F2 (KEY_F1 + 1)#define KEY_F3 (KEY_F2 + 1)#define KEY_F4 (KEY_F3 + 1)#define KEY_F5 (KEY_F4 + 1)#define KEY_F6 (KEY_F5 + 1)#define KEY_F7 (KEY_F6 + 1)#define KEY_F8 (KEY_F7 + 1)#define KEY_F9 (KEY_F8 + 1)#define KEY_F10 (KEY_F9 + 1)#define KEY_F11 (KEY_F10 + 1)#define KEY_F12 (KEY_F11 + 1)/* cursor keys */#define KEY_INS 0x90#define KEY_DEL (KEY_INS + 1)#define KEY_HOME (KEY_DEL + 1)#define KEY_END (KEY_HOME + 1)#define KEY_PGUP (KEY_END + 1)#define KEY_PGDN (KEY_PGUP + 1)#define KEY_LFT (KEY_PGDN + 1)#define KEY_UP (KEY_LFT + 1)#define KEY_DN (KEY_UP + 1)#define KEY_RT (KEY_DN + 1)/* print screen/sys rq and pause/break */#define KEY_PRNT (KEY_RT + 1)#define KEY_PAUSE (KEY_PRNT + 1)/* these return a value but they could also act as additional bucky keys */#define KEY_LWIN (KEY_PAUSE + 1)#define KEY_RWIN (KEY_LWIN + 1)#define KEY_MENU (KEY_RWIN + 1)#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -