亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? swt.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
	/**	 * Input Method Editor style constant for phonetic	 * input behavior (value is 1&lt;&lt;4).	 */	public static final int PHONETIC = 1 << 4;	/**	 * Input Method Editor style constant for romanicized	 * input behavior (value is 1&lt;&lt;5).	 */	public static final int ROMAN = 1 << 5;	/**	 * ASCII character convenience constant for the backspace character	 * (value is the <code>char</code> '\b').	 */	public static final char BS = '\b';	/**	 * ASCII character convenience constant for the carriage return character	 * (value is the <code>char</code> '\r').	 */	public static final char CR = '\r';	/**	 * ASCII character convenience constant for the delete character	 * (value is the <code>char</code> with value 127).	 */	public static final char DEL = 0x7F; 	/**	 * ASCII character convenience constant for the escape character	 * (value is the <code>char</code> with value 27).	 */	public static final char ESC = 0x1B;	/**	 * ASCII character convenience constant for the line feed character	 * (value is the <code>char</code> '\n').	 */	public static final char LF = '\n';	/**	 * ASCII character convenience constant for the tab character	 * (value is the <code>char</code> '\t').	 * 	 * @since 2.1	 */	public static final char TAB = '\t';							/**	 * keyboard and/or mouse event mask indicating that the ALT key	 * was pushed on the keyboard when the event was generated	 * (value is 1&lt;&lt;16).	 */	public static final int ALT = 1 << 16;						/**	 * Keyboard and/or mouse event mask indicating that the SHIFT key	 * was pushed on the keyboard when the event was generated	 * (value is 1&lt;&lt;17).	 */	public static final int SHIFT = 1 << 17;						/**	 * Keyboard and/or mouse event mask indicating that the CTRL key	 * was pushed on the keyboard when the event was generated	 * (value is 1&lt;&lt;18).	 */	public static final int CTRL = 1 << 18;	/**	 * Keyboard and/or mouse event mask indicating that the CTRL key	 * was pushed on the keyboard when the event was generated. This	 * is a synonym for CTRL (value is 1&lt;&lt;18).	 */	public static final int CONTROL = CTRL;	/**	 * Keyboard and/or mouse event mask indicating that the COMMAND key	 * was pushed on the keyboard when the event was generated	 * (value is 1&lt;&lt;22).	 * 	 * @since 2.1	 */	public static final int COMMAND = 1 << 22;		/**	 * Keyboard and/or mouse event mask indicating all possible	 * keyboard modifiers.	 * 	 * To allow for the future, this mask  is intended to be used in 	 * place of code that references  each individual keyboard mask. 	 *  For example, the following expression will determine whether 	 * any modifer is pressed and will continue to work as new modifier 	 * masks are added.	 *  	 * <code>(stateMask & SWT.MODIFIER_MASK) != 0</code>.	 * 	 * @since 2.1	 */	public static final int MODIFIER_MASK;		/**	 * Keyboard and/or mouse event mask indicating that mouse button one	 * was pushed when the event was generated. (value is 1&lt;&lt;19).	 */	public static final int BUTTON1 = 1 << 19;	/**	 * Keyboard and/or mouse event mask indicating that mouse button two	 * was pushed when the event was generated. (value is 1&lt;&lt;20).	 */	public static final int BUTTON2 = 1 << 20;	/**	 * Keyboard and/or mouse event mask indicating that mouse button three	 * was pushed when the event was generated. (value is 1&lt;&lt;21).	 */	public static final int BUTTON3 = 1 << 21;	/**	 * Keyboard and/or mouse event mask indicating all possible	 * mouse buttons.	 * 	 * To allow for the future, this mask  is intended to be used 	 * in place of code that references each individual button mask.  	 * For example, the following expression will determine whether	 * any button is pressed and will continue to work as new button 	 * masks are added.	 *  	 * <code>(stateMask & SWT.BUTTON_MASK) != 0</code>.	 * 	 * @since 2.1	 */	public static final int BUTTON_MASK;		/**	 * Keyboard and/or mouse event mask indicating that the MOD1 key	 * was pushed on the keyboard when the event was generated.	 * 	 * This is the primary keyboard modifier for the platform.	 * 	 * @since 2.1	 */	public static final int MOD1;		/**	 * Keyboard and/or mouse event mask indicating that the MOD2 key	 * was pushed on the keyboard when the event was generated.	 * 	 * This is the secondary keyboard modifier for the platform.	 * 	 * @since 2.1	 */	public static final int MOD2;	/**	 * Keyboard and/or mouse event mask indicating that the MOD3 key	 * was pushed on the keyboard when the event was generated.	 * 	 * @since 2.1	 */	public static final int MOD3;	/**	 * Keyboard and/or mouse event mask indicating that the MOD4 key	 * was pushed on the keyboard when the event was generated.	 * 	 * @since 2.1	 */	public static final int MOD4;		/**	 * Accelerator constant used to differentiate a key code from a	 * unicode character.	 * 	 * If this bit is set, then the key stroke	 * portion of an accelerator represents a key code.  If this bit	 * is not set, then the key stroke portion of an accelerator is	 * a unicode character.	 * 	 * The following expression is false:	 * 	 * <code>((SWT.MOD1 | SWT.MOD2 | 'T') & SWT.KEYCODE_BIT) != 0</code>.	 * 	 * The following expression is true:	 * 	 * <code>((SWT.MOD3 | SWT.F2) & SWT.KEYCODE_BIT) != 0</code>.	 * 	 * (value is (1&lt;&lt;24))	 * 	 * @since 2.1	 */		public static final int KEYCODE_BIT = (1 << 24);	/**	 * Accelerator constant used to extract the key stroke portion of	 * an accelerator.	 * 	 * The key stroke may be a key code or a unicode	 * value.  If the key stroke is a key code <code>KEYCODE_BIT</code>	 * will be set.	 * 	 * @since 2.1	 */		public static final int KEY_MASK = KEYCODE_BIT + 0xFFFF;		/**	 * Keyboard event constant representing the UP ARROW key	 * (value is (1&lt;&lt;24)+1).	 */	public static final int ARROW_UP = KEYCODE_BIT + 1;	/**	 * Keyboard event constant representing the DOWN ARROW key	 * (value is (1&lt;&lt;24)+2).	 */	public static final int ARROW_DOWN = KEYCODE_BIT + 2;	/**	 * Keyboard event constant representing the LEFT ARROW key	 * (value is (1&lt;&lt;24)+3).	 */	public static final int ARROW_LEFT = KEYCODE_BIT + 3;	/**	 * Keyboard event constant representing the RIGHT ARROW key	 * (value is (1&lt;&lt;24)+4).	 */	public static final int ARROW_RIGHT = KEYCODE_BIT + 4;	/**	 * Keyboard event constant representing the PAGE UP key	 * (value is (1&lt;&lt;24)+5).	 */	public static final int PAGE_UP = KEYCODE_BIT + 5;	/**	 * Keyboard event constant representing the PAGE DOWN key	 * (value is (1&lt;&lt;24)+6).	 */	public static final int PAGE_DOWN = KEYCODE_BIT + 6;	/**	 * Keyboard event constant representing the HOME key	 * (value is (1&lt;&lt;24)+7).	 */	public static final int HOME = KEYCODE_BIT + 7;	/**	 * Keyboard event constant representing the END key	 * (value is (1&lt;&lt;24)+8).	 */	public static final int END = KEYCODE_BIT + 8;	/**	 * Keyboard event constant representing the INSERT key	 * (value is (1&lt;&lt;24)+9).	 */	public static final int INSERT = KEYCODE_BIT + 9;	/**	 * Keyboard event constant representing the F1 key	 * (value is (1&lt;&lt;24)+10).	 */	public static final int F1 = KEYCODE_BIT + 10;		/**	 * Keyboard event constant representing the F2 key	 * (value is (1&lt;&lt;24)+11).	 */	public static final int F2 = KEYCODE_BIT + 11;		/**	 * Keyboard event constant representing the F3 key	 * (value is (1&lt;&lt;24)+12).	 */	public static final int F3 = KEYCODE_BIT + 12;		/**	 * Keyboard event constant representing the F4 key	 * (value is (1&lt;&lt;24)+13).	 */	public static final int F4 = KEYCODE_BIT + 13;		/**	 * Keyboard event constant representing the F5 key	 * (value is (1&lt;&lt;24)+14).	 */	public static final int F5 = KEYCODE_BIT + 14;		/**	 * Keyboard event constant representing the F6 key	 * (value is (1&lt;&lt;24)+15).	 */	public static final int F6 = KEYCODE_BIT + 15;		/**	 * Keyboard event constant representing the F7 key	 * (value is (1&lt;&lt;24)+16).	 */	public static final int F7 = KEYCODE_BIT + 16;		/**	 * Keyboard event constant representing the F8 key	 * (value is (1&lt;&lt;24)+17).	 */	public static final int F8 = KEYCODE_BIT + 17;		/**	 * Keyboard event constant representing the F9 key	 * (value is (1&lt;&lt;24)+18).	 */	public static final int F9 = KEYCODE_BIT + 18;		/**	 * Keyboard event constant representing the F10 key	 * (value is (1&lt;&lt;24)+19).	 */	public static final int F10 = KEYCODE_BIT + 19;		/**	 * Keyboard event constant representing the F11 key	 * (value is (1&lt;&lt;24)+20).	 */	public static final int F11 = KEYCODE_BIT + 20;		/**	 * Keyboard event constant representing the F12 key	 * (value is (1&lt;&lt;24)+21).	 */	public static final int F12 = KEYCODE_BIT + 21;	/**	 * Keyboard event constant representing the F13 key	 * (value is (1&lt;&lt;24)+22).	 * 	 * @since 3.0	 */	public static final int F13 = KEYCODE_BIT + 22;		/**	 * Keyboard event constant representing the F14 key	 * (value is (1&lt;&lt;24)+23).	 * 	 * @since 3.0	 */	public static final int F14 = KEYCODE_BIT + 23;		/**	 * Keyboard event constant representing the F15 key	 * (value is (1&lt;&lt;24)+24).	 * 	 * @since 3.0	 */	public static final int F15 = KEYCODE_BIT + 24;		/**	 * Keyboard event constant representing the numeric key	 * pad multiply key (value is (1&lt;&lt;24)+42).	 * 	 * @since 3.0	 */	public static final int KEYPAD_MULTIPLY = KEYCODE_BIT + 42;		/**	 * Keyboard event constant representing the numeric key	 * pad add key (value is (1&lt;&lt;24)+43).	 * 	 * @since 3.0	 */	public static final int KEYPAD_ADD = KEYCODE_BIT + 43;		/**	 * Keyboard event constant representing the numeric key	 * pad subtract key (value is (1&lt;&lt;24)+45).	 * 	 * @since 3.0	 */	public static final int KEYPAD_SUBTRACT = KEYCODE_BIT + 45;	/**	 * Keyboard event constant representing the numeric key	 * pad decimal key (value is (1&lt;&lt;24)+46).	 * 	 * @since 3.0	 */	public static final int KEYPAD_DECIMAL = KEYCODE_BIT + 46;	/**	 * Keyboard event constant representing the numeric key	 * pad divide key (value is (1&lt;&lt;24)+47).	 * 	 * @since 3.0	 */	public static final int KEYPAD_DIVIDE = KEYCODE_BIT + 47;	/**	 * Keyboard event constant representing the numeric key	 * pad zero key (value is (1&lt;&lt;24)+48).	 * 	 * @since 3.0	 */	public static final int KEYPAD_0 = KEYCODE_BIT + 48;	/**	 * Keyboard event constant representing the numeric key	 * pad one key (value is (1&lt;&lt;24)+49).	 * 	 * @since 3.0	 */	public static final int KEYPAD_1 = KEYCODE_BIT + 49;	/**	 * Keyboard event constant representing the numeric key	 * pad two key (value is (1&lt;&lt;24)+50).	 * 	 * @since 3.0	 */	public static final int KEYPAD_2 = KEYCODE_BIT + 50;	/**	 * Keyboard event constant representing the numeric key	 * pad three key (value is (1&lt;&lt;24)+51).	 * 	 * @since 3.0	 */	public static final int KEYPAD_3 = KEYCODE_BIT + 51;	/**	 * Keyboard event constant representing the numeric key	 * pad four key (value is (1&lt;&lt;24)+52).	 * 	 * @since 3.0	 */	public static final int KEYPAD_4 = KEYCODE_BIT + 52;		/**	 * Keyboard event constant representing the numeric key	 * pad five key (value is (1&lt;&lt;24)+53).	 * 	 * @since 3.0	 */	public static final int KEYPAD_5 = KEYCODE_BIT + 53;		/**	 * Keyboard event constant representing the numeric key	 * pad six key (value is (1&lt;&lt;24)+54).	 * 	 * @since 3.0	 */	public static final int KEYPAD_6 = KEYCODE_BIT + 54;	/**	 * Keyboard event constant representing the numeric key	 * pad seven key (value is (1&lt;&lt;24)+55).	 * 	 * @since 3.0	 */	public static final int KEYPAD_7 = KEYCODE_BIT + 55;	/**	 * Keyboard event constant representing the numeric key	 * pad eight key (value is (1&lt;&lt;24)+56).	 * 	 * @since 3.0	 */	public static final int KEYPAD_8 = KEYCODE_BIT + 56;		/**	 * Keyboard event constant representing the numeric key	 * pad nine key (value is (1&lt;&lt;24)+57).	 * 	 * @since 3.0	 */	public static final int KEYPAD_9 = KEYCODE_BIT + 57;	/**	 * Keyboard event constant representing the numeric key	 * pad equal key (value is (1&lt;&lt;24)+61).	 * 	 * @since 3.0	 */	public static final int KEYPAD_EQUAL = KEYCODE_BIT + 61;		/**	 * Keyboard event constant representing the numeric key	 * pad enter key (value is (1&lt;&lt;24)+80).	 * 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲第一av色| 国产日韩欧美精品在线| 亚洲自拍偷拍欧美| 欧美性一二三区| 亚洲风情在线资源站| 欧美日韩情趣电影| 美国三级日本三级久久99| 欧美成人激情免费网| 国产精品123| 亚洲欧美日韩国产手机在线| 欧美日韩电影在线| 久久精品国产亚洲5555| 久久奇米777| 色综合色综合色综合| 亚洲成人av在线电影| 精品国产免费人成电影在线观看四季| 久久精品国产久精国产爱| 久久精品一区蜜桃臀影院| 99热99精品| 婷婷夜色潮精品综合在线| 久久综合九色综合欧美亚洲| 成人午夜av影视| 香蕉久久一区二区不卡无毒影院 | 奇米888四色在线精品| 精品免费视频一区二区| 成人精品视频.| 丝袜美腿亚洲综合| 国产午夜精品一区二区| 在线精品视频小说1| 狠狠色综合播放一区二区| 中文字幕欧美一区| 日韩一区二区三区在线| 成人高清免费在线播放| 天天操天天干天天综合网| 欧美激情一区二区三区| 欧美人妇做爰xxxⅹ性高电影| 国产福利91精品| 婷婷亚洲久悠悠色悠在线播放| 国产精品视频你懂的| 欧美精品久久一区| 成人免费高清视频| 精品无人区卡一卡二卡三乱码免费卡 | 欧美成人bangbros| 97国产一区二区| 国产麻豆视频精品| 天天影视网天天综合色在线播放| 国产精品美女久久久久久久久 | 免费成人av在线| 亚洲精品成人天堂一二三| 久久精品欧美一区二区三区麻豆| 欧洲人成人精品| av电影天堂一区二区在线| 美女脱光内衣内裤视频久久网站 | 自拍偷拍国产亚洲| 久久久久久久久久美女| 制服丝袜中文字幕一区| 色丁香久综合在线久综合在线观看| 国产精品18久久久久久久久| 日韩黄色片在线观看| 一区二区三区四区在线| 亚洲视频1区2区| 中文av一区特黄| 欧美激情资源网| 久久亚洲综合色一区二区三区| 欧美久久一二区| 欧美中文字幕亚洲一区二区va在线| 粉嫩绯色av一区二区在线观看| 国产一区二区三区美女| 激情小说欧美图片| 激情综合色丁香一区二区| 精品一区二区三区在线播放视频| 日韩成人精品视频| 日韩黄色一级片| 蜜桃久久久久久| 免费高清视频精品| 美女www一区二区| 麻豆精品在线观看| 狠狠色综合色综合网络| 不卡一二三区首页| 成人黄色免费短视频| 成人免费av在线| 99麻豆久久久国产精品免费优播| 99这里只有久久精品视频| 91亚洲大成网污www| 91啪亚洲精品| 欧美日韩国产美| 日韩欧美一级特黄在线播放| 精品国产乱码久久久久久免费 | 国产欧美一区二区三区在线老狼 | 欧美在线观看视频在线| 欧美三级中文字幕在线观看| 欧美一区二区不卡视频| 日韩欧美国产电影| 国产亚洲午夜高清国产拍精品| 国产欧美一区二区三区鸳鸯浴| 中文字幕一区在线观看视频| 亚洲在线观看免费视频| 日韩激情视频在线观看| 国产精品91一区二区| 色综合天天做天天爱| 在线成人av影院| 欧美精品一区二区三区很污很色的 | 91久久精品一区二区三区| 在线观看免费一区| 日韩一区二区免费高清| 欧美精品一区二区三区蜜桃 | 久久精品亚洲麻豆av一区二区 | 91网站视频在线观看| 在线观看亚洲成人| 日韩片之四级片| 欧美激情一区二区三区在线| 亚洲欧美国产77777| 麻豆国产欧美一区二区三区| 国产福利一区在线观看| 在线观看一区二区精品视频| 欧美不卡一区二区三区| 亚洲男人天堂av| 精品制服美女丁香| 色悠悠久久综合| 欧美刺激午夜性久久久久久久| 中文字幕一区二区三区四区不卡| 亚洲成av人在线观看| 国产99久久久国产精品免费看| 欧美综合亚洲图片综合区| 久久久久国产精品麻豆ai换脸| 亚洲一二三区在线观看| 国内久久精品视频| 欧美三级中文字| 亚洲国产精品传媒在线观看| 日韩成人dvd| 91国产丝袜在线播放| 国产亚洲欧美一区在线观看| 亚洲一区二区三区四区的| 激情av综合网| 欧美日韩国产一区| 国产精品欧美久久久久无广告 | 久久99久久久久| 欧美一a一片一级一片| 欧美极品xxx| 国产在线视频一区二区| 欧美日韩精品一区视频| 亚洲精品视频在线看| 国产成人综合亚洲网站| 欧美一二三区在线| 亚洲中国最大av网站| 99精品久久99久久久久| 日本一区二区三区国色天香| 久久99精品国产91久久来源| 8x福利精品第一导航| 亚洲国产成人av网| 色香蕉成人二区免费| 国产精品电影一区二区三区| 国产激情一区二区三区| 久久久久久夜精品精品免费| 美女www一区二区| 在线播放中文字幕一区| 亚洲福利视频一区二区| 欧美在线观看视频一区二区三区| 国产精品色噜噜| 国产一区二区三区蝌蚪| www国产精品av| 国产精品1区2区3区在线观看| 精品国产百合女同互慰| 久久国产麻豆精品| 欧美电视剧在线观看完整版| 免费av网站大全久久| 精品日韩99亚洲| 九色综合国产一区二区三区| 欧美tickling网站挠脚心| 精品一区二区成人精品| 精品精品国产高清a毛片牛牛 | 欧美一区二区三区的| 日韩制服丝袜av| 欧美成人免费网站| 蜜臀av性久久久久蜜臀av麻豆| 日韩一区二区三| 国产美女精品在线| 中文字幕av免费专区久久| 成人精品国产一区二区4080 | 亚洲欧洲精品天堂一级 | 欧美电影在线免费观看| 日韩不卡一二三区| 日韩免费观看高清完整版在线观看| 毛片不卡一区二区| 国产视频一区不卡| av在线不卡免费看| 一区二区三区影院| 日韩一区二区精品| 国产精品一区三区| 亚洲免费在线电影| 在线电影院国产精品| 久99久精品视频免费观看| 国产精品三级av| 在线视频一区二区三区| 免费的成人av| 国产精品丝袜91| 在线电影院国产精品| 国产精华液一区二区三区| 一区二区三区美女视频| 日韩一卡二卡三卡四卡|