?? lpkeymask.java
字號:
/**
* <p>Title: lipeng</p>
* <p>Description:
* You cannot remove this copyright and notice.
* You cannot use this file without the express permission of the author.
* All Rights Reserved</p>
* <p>Copyright: lizhenpeng (c) 2004</p>
* <p>Company: LP&P</p>
* @author lizhenpeng
* @version 1.0.0
* <p>
* Revise History
* </p>
*/
package lipeng;
public class LPKeyMask
{
public static final int MASK_KEY_LEFT = 0x0001;
public static final int MASK_KEY_LEFT_FLAG = 0x0100;
public static final int MASK_KEY_RIGHT = 0x0002;
public static final int MASK_KEY_RIGHT_FLAG = 0x0200;
public static final int MASK_KEY_UP = 0x0004;
public static final int MASK_KEY_UP_FLAG = 0x0400;
public static final int MASK_KEY_DOWN = 0x0008;
public static final int MASK_KEY_DOWN_FLAG = 0x0800;
public static final int MASK_KEY_OK = 0x0010;
public static final int MASK_KEY_OK_FLAG = 0x1000;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -