📄 key.h
字号:
#ifndef __KEY.H__
#define __KEY.H__
// 键盘输入特征码
const int KeyLeft = 0x4b00;
const int KeyRight = 0x4d00;
const int KeyUp = 0x4800;
const int KeyDown = 0x5000;
const int KeyHome = 0x4700;
const int KeyEnd = 0x4f00;
const int KeyPageUp = 0x4900;
const int KeyPageDown = 0x5100;
const int KeyCtrlPageUp = 0x8400;
const int KeyCtrlPageDown = 0x7600;
const int KeyDel = 0x5300;
const int KeyBackSpace = 0xe08;
const int KeyInsert = 0x5200;
const int KeyTab = 0xf09;
const int KeyEnter = 0x1c0d;
const int KeyEsc = 0x11b;
const int KeyF1 = 0x3b00;
const int KeyF2 = 0x3c00;
const int KeyF3 = 0x3d00;
const int KeyF4 = 0x3e00;
const int KeyF7 = 0x4100;
const int KeyF8 = 0x4200;
const int KeyF10 = 0x4400;
const int KeyAltE = 0x1200;
const int KeyAltF = 0x2100;
const int KeyAltR = 0x1300;
const int KeyAltD = 0x2000;
const int KeyAltH = 0x2300;
const int KeyAltX = 0x2d00;
const int KeyAltF6 = 0x6d00;
const int KeyCtrlY = 0x1519;
const int KeyCtrlL = 0x260c;
const int KeyCtrlEnter = 0x1c0a;
const int KeyCtrlF1 = 0x5e00;
const int KeyCtrlF2 = 0x5f00;
const int KeyCtrlF7 = 0x6400;
const int KeyCtrlF8 = 0x6500;
const int KeyCtrlF9 = 0x6600;
const int KeyCtrlLeftBracket = 0x1a1b;
const int KeyCtrlRightBracket = 0x1b1d;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -