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

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

?? swt.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.swt;import org.eclipse.swt.internal.*;/** * This class provides access to a small number of SWT system-wide * methods, and in addition defines the public constants provided * by SWT. * <p> * By defining constants like UP and DOWN in a single class, SWT * can share common names and concepts at the same time minimizing * the number of classes, names and constants for the application * programmer. * </p><p> * Note that some of the constants provided by this class represent * optional, appearance related aspects of widgets which are available * either only on some window systems, or for a differing set of * widgets on each window system. These constants are marked * as <em>HINT</em>s. The set of widgets which support a particular * <em>HINT</em> may change from release to release, although we typically * will not withdraw support for a <em>HINT</em> once it is made available. * </p> */ /* NOTE: *   Good javadoc coding style is to put the values of static final  *   constants in the comments. This reinforces the fact that *   consumers are allowed to rely on the value (and they must *   since the values are compiled inline in their code). We *   can <em>not</em> change the values of these constants between *   releases. */public class SWT {		/* Initialize the class *///	static {//		/* NOTE: the static initialization is at the end of file *///	}		/* Widget Event Constants */		/**	 * The null event type (value is 0).	 * 	 * @since 3.0	 */	public static final int None = 0;		/**	 * The key down event type (value is 1).	 */	public static final int KeyDown = 1;		/**	 * The key up event type (value is 2).	 */	public static final int KeyUp = 2;		/**	 * mouse down event type (value is 3)	 */	public static final int MouseDown = 3;		/**	 * The mouse up event type (value is 4).	 */	public static final int MouseUp = 4;		/**	 * The mouse move event type (value is 5).	 */	public static final int MouseMove = 5;		/**	 * The mouse enter event type (value is 6).	 */	public static final int MouseEnter = 6;				/**	 * The mouse exit event type (value is 7).	 */	public static final int MouseExit = 7;		/**	 * The mouse double click event type (value is 8).	 */	public static final int MouseDoubleClick = 8;			/**	 * The paint event type (value is 9).	 */	public static final int Paint = 9;			/**	 * The move event type (value is 10).	 */	public static final int Move = 10;		/**	 * The resize event type (value is 11).	 */	public static final int Resize = 11;		/**	 * The dispose event type (value is 12).	 */	public static final int Dispose = 12;		/**	 * The selection event type (value is 13).	 */	public static final int Selection = 13;		/**	 * The default selection event type (value is 14).	 */	public static final int DefaultSelection = 14;		/**	 * The focus in event type (value is 15).	 */	public static final int FocusIn = 15;		/**	 * The focus out event type (value is 16).	 */	public static final int FocusOut = 16;		/**	 * The expand event type (value is 17).	 */	public static final int Expand = 17;		/**	 * The collapse event type (value is 18).	 */	public static final int Collapse = 18;		/**	 * The iconify event type (value is 19).	 */	public static final int Iconify = 19;		/**	 * The de-iconify event type (value is 20).	 */	public static final int Deiconify = 20;		/**	 * The close event type (value is 21).	 */	public static final int Close = 21;		/**	 * The show event type (value is 22).	 */	public static final int Show = 22;		/**	 * The hide event type (value is 23).	 */	public static final int Hide = 23;		/**	 * The modify event type (value is 24).	 */	public static final int Modify = 24;		/**	 * The verify event type (value is 25).	 */	public static final int Verify = 25;		/**	 * The activate event type (value is 26).	 */	public static final int Activate = 26;		/**	 * The deactivate event type (value is 27).	 */	public static final int Deactivate = 27;			/**	 * The help event type (value is 28).	 */	public static final int Help = 28;		/**	 * The drag detect event type (value is 29).	 */	public static final int DragDetect = 29;		/**	 * The arm event type (value is 30).	 */	public static final int Arm = 30;		/**	 * The traverse event type (value is 31).	 */	public static final int Traverse = 31;		/**	 * The mouse hover event type (value is 32).	 */	public static final int MouseHover = 32;	/**	 * The hardware key down event type (value is 33).	 */	public static final int HardKeyDown = 33;		/**	 * The hardware key up event type (value is 34).	 */	public static final int HardKeyUp = 34;	/**	 * The menu detect event type (value is 35).	 * 	 * @since 3.0	 */	public static final int MenuDetect = 35;		/**	 * The set data event type (value is 36).	 * 	 * @since 3.0	 */	public static final int SetData = 36;			/* Event Details */		/**	 * A constant known to be zero (0), used in operations which	 * take bit flags to indicate that "no bits are set".	 */	public static final int NONE = 0;		/**	 * Indicates that a user-interface component is being dragged,	 * for example dragging the thumb of a scroll bar (value is 1).	 */	public static final int DRAG = 1;		/**	 * A constant known to be zero (0), used in operations which	 * take pointers to indicate a null argument.	 */	public static final int NULL = 0;		/**	 * Indicates that a default should be used (value is -1).	 */	public static final int DEFAULT = -1;	/**	 * Style constant for menu bar behavior (value is 1&lt;&lt;1).	 * <p><b>Used By:</b><ul>	 * <li><code>Menu</code></li>	 * </ul></p>	 */	public static final int BAR = 1 << 1;	/**	 * Style constant for drop down menu/list behavior (value is 1&lt;&lt;2).	 * <p><b>Used By:</b><ul>	 * <li><code>Menu</code></li>	 * <li><code>ToolItem</code></li>	 * <li><code>CoolItem</code></li>	 * <li><code>Combo</code></li>	 * </ul></p>	 */	public static final int DROP_DOWN = 1 << 2;	/**	 * Style constant for pop up menu behavior (value is 1&lt;&lt;3).	 * <p><b>Used By:</b><ul>	 * <li><code>Menu</code></li>	 * </ul></p>	 */	public static final int POP_UP = 1 << 3;	/**	 * Style constant for line separator behavior (value is 1&lt;&lt;1).	 * <p><b>Used By:</b><ul>	 * <li><code>Label</code></li>	 * <li><code>MenuItem</code></li>	 * <li><code>ToolItem</code></li>	 * </ul></p>	 */	public static final int SEPARATOR = 1 << 1;	/**	 * Style constant for toggle button behavior (value is 1&lt;&lt;1).	 * <p><b>Used By:</b><ul>	 * <li><code>Button</code></li>	 * </ul></p>	 */	public static final int TOGGLE = 1 << 1;	/**	 * Style constant for arrow button behavior (value is 1&lt;&lt;2).	 * <p><b>Used By:</b><ul>	 * <li><code>Button</code></li>	 * </ul></p>	 */	public static final int ARROW = 1 << 2;	/**	 * Style constant for push button behavior (value is 1&lt;&lt;3).	 * <p><b>Used By:</b><ul>	 * <li><code>Button</code></li>	 * <li><code>MenuItem</code></li>	 * <li><code>ToolItem</code></li>	 * </ul></p>	 */	public static final int PUSH = 1 << 3;	/**	 * Style constant for radio button behavior (value is 1&lt;&lt;4).	 * <p><b>Used By:</b><ul>	 * <li><code>Button</code></li>	 * <li><code>MenuItem</code></li>	 * <li><code>ToolItem</code></li>	 * </ul></p>	 */	public static final int RADIO = 1 << 4;	/**	 * Style constant for check box behavior (value is 1&lt;&lt;5).	 * <p><b>Used By:</b><ul>	 * <li><code>Button</code></li>	 * <li><code>MenuItem</code></li>	 * <li><code>ToolItem</code></li>	 * <li><code>Table</code></li>	 * <li><code>Tree</code></li>	 * </ul></p>	 */	public static final int CHECK = 1 << 5;	/**	 * Style constant for cascade behavior (value is 1&lt;&lt;6).	 * <p><b>Used By:</b><ul>	 * <li><code>MenuItem</code></li>	 * </ul></p>	 */	public static final int CASCADE = 1 << 6;	/**	 * Style constant for multi-selection behavior in lists	 * and multiple line support on text fields (value is 1&lt;&lt;1).	 * <p><b>Used By:</b><ul>	 * <li><code>Text</code></li>	 * <li><code>List</code></li>	 * <li><code>FileDialog</code></li>	 * </ul></p>	 */	public static final int MULTI = 1 << 1;	/**	 * Style constant for single selection behavior in lists	 * and single line support on text fields (value is 1&lt;&lt;2).	 * <p><b>Used By:</b><ul>	 * <li><code>Text</code></li>	 * <li><code>List</code></li>	 * <li><code>Table</code></li>	 * <li><code>Tree</code></li>	 * </ul></p>	 */	public static final int SINGLE = 1 << 2;	/**	 * Style constant for read-only behavior (value is 1&lt;&lt;3).	 * <p><b>Used By:</b><ul>	 * <li><code>Combo</code></li>	 * <li><code>Text</code></li>	 * </ul></p>	 */	public static final int READ_ONLY = 1 << 3;	/**	 * Style constant for automatic line wrap behavior (value is 1&lt;&lt;6).	 * <p><b>Used By:</b><ul>	 * <li><code>Label</code></li>	 * <li><code>Text</code></li>	 * <li><code>ToolBar</code></li>	 * </ul></p>	 */	public static final int WRAP = 1 << 6;	/**	 * Style constant for simple (not drop down) behavior (value is 1&lt;&lt;6).	 * <p><b>Used By:</b><ul>	 * <li><code>Combo</code></li>	 * </ul></p>	 */	public static final int SIMPLE = 1 << 6;	/**	 * Style constant for password behavior (value is 1&lt;&lt;22).	 * <p><b>Used By:</b><ul>	 * <li><code>Text</code></li>	 * </ul></p>	 * 	 * @since 3.0	 */	public static final int PASSWORD = 1 << 22;		/**	 * Style constant for shadow in behavior (value is 1&lt;&lt;2).	 * <br>Note that this is a <em>HINT</em>.	 * <p><b>Used By:</b><ul>	 * <li><code>Label</code></li>	 * <li><code>Group</code></li>	 * </ul></p>	 */	public static final int SHADOW_IN = 1 << 2;	/**	 * Style constant for shadow out behavior (value is 1&lt;&lt;3).	 * <br>Note that this is a <em>HINT</em>.	 * <p><b>Used By:</b><ul>	 * <li><code>Label</code></li>	 * <li><code>Group</code></li>	 * <li><code>ToolBar</code></li>	 * </ul></p>	 */	public static final int SHADOW_OUT = 1 << 3;	/**	 * Style constant for shadow etched in behavior (value is 1&lt;&lt;4).	 * <br>Note that this is a <em>HINT</em>. It is ignored on all platforms except Motif.	 * <p><b>Used By:</b><ul>	 * <li><code>Group</code></li>	 * </ul></p>	 */	public static final int SHADOW_ETCHED_IN = 1 << 4;	/**	 * Style constant for shadow etched out behavior (value is 1&lt;&lt;6).	 * <br>Note that this is a <em>HINT</em>. It is ignored on all platforms except Motif.	 * <p><b>Used By:</b><ul>	 * <li><code>Group</code></li>	 * </ul></p>	 */	public static final int SHADOW_ETCHED_OUT = 1 << 6;	/**	 * Style constant for no shadow behavior (value is 1&lt;&lt;5).	 * <br>Note that this is a <em>HINT</em>.	 * <p><b>Used By:</b><ul>	 * <li><code>Label</code></li>	 * <li><code>Group</code></li>	 * </ul></p>	 */	public static final int SHADOW_NONE = 1 << 5;	/**	 * Style constant for progress bar behavior (value is 1&lt;&lt;1).	 * <p><b>Used By:</b><ul>	 * <li><code>ProgressBar</code></li>	 * </ul></p>	 */	public static final int INDETERMINATE = 1 << 1;		/**	 * Style constant for tool window behavior (value is 1&lt;&lt;2).	 * <p>	 * A tool window is a window intended to be used as a floating toolbar.	 * It typically has a title bar that is shorter than a normal title bar,	 * and the window title is typically drawn using a smaller font.	 * <br>Note that this is a <em>HINT</em>.	 * </p><p><b>Used By:</b><ul>	 * <li><code>Decorations</code> and subclasses</li>	 * </ul></p>	 */	public static final int TOOL = 1 << 2; 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美高清hd18日本| 成人av电影在线观看| 国产精品入口麻豆原神| 欧美日韩免费观看一区三区| 国产一区二区女| 亚洲国产视频网站| 国产精品九色蝌蚪自拍| 日韩美女天天操| 在线亚洲一区二区| 成人黄色777网| 国内一区二区视频| 免费高清在线视频一区·| 亚洲综合在线观看视频| 国产视频911| 精品日韩99亚洲| 88在线观看91蜜桃国自产| 色综合久久综合网97色综合| 丁香桃色午夜亚洲一区二区三区| 日韩电影在线一区二区| 亚洲一区免费观看| 一区二区在线看| 自拍偷拍亚洲欧美日韩| 国产精品婷婷午夜在线观看| 久久这里只精品最新地址| 7777精品伊人久久久大香线蕉完整版| 99久久婷婷国产综合精品| 成人中文字幕电影| 大尺度一区二区| 成人午夜电影久久影院| 国产成人在线电影| 国产精品一区在线| 国产在线麻豆精品观看| 久久精品国产99国产| 免费观看91视频大全| 蜜臀久久久久久久| 日韩av成人高清| 免费欧美在线视频| 久草这里只有精品视频| 久久成人久久鬼色| 国产一区在线看| 国产 欧美在线| 成人免费高清视频| 91网站最新网址| 在线国产电影不卡| 欧美日韩精品免费| 日韩一区二区三区视频| 欧美sm美女调教| 国产三级欧美三级日产三级99| 久久久亚洲国产美女国产盗摄| 国产午夜精品在线观看| 精品国产乱码91久久久久久网站| 精品久久久久99| 久久久久久**毛片大全| 中文字幕+乱码+中文字幕一区| 亚洲国产电影在线观看| 亚洲欧洲制服丝袜| 亚洲电影中文字幕在线观看| 男男成人高潮片免费网站| 91精品国产全国免费观看 | 日韩欧美一卡二卡| 日韩一二三区视频| 久久一区二区三区国产精品| 久久久五月婷婷| 中文字幕精品一区二区三区精品| 中文字幕亚洲一区二区va在线| 亚洲精品午夜久久久| 亚洲不卡在线观看| 久久机这里只有精品| 国产寡妇亲子伦一区二区| av在线综合网| 欧美人与z0zoxxxx视频| 久久久久久免费| 亚洲欧美欧美一区二区三区| 日韩av高清在线观看| 国产成a人亚洲精品| 欧美系列亚洲系列| 精品成人佐山爱一区二区| 亚洲欧洲一区二区三区| 五月婷婷久久综合| 成人免费av网站| 9191精品国产综合久久久久久| 国产午夜精品一区二区三区视频 | 91啦中文在线观看| 欧美一级理论性理论a| 国产三级欧美三级日产三级99| 亚洲综合无码一区二区| 国产在线国偷精品产拍免费yy| 91啦中文在线观看| 2023国产精品| 五月激情丁香一区二区三区| 国产精品亚洲午夜一区二区三区| 91黄色激情网站| 久久久激情视频| 香蕉av福利精品导航| 国产.欧美.日韩| 日韩小视频在线观看专区| 亚洲欧美自拍偷拍色图| 黄色资源网久久资源365| 欧美三级电影网站| 欧美激情一区二区在线| 免费在线看成人av| 欧洲精品一区二区| 国产精品网站一区| 韩国毛片一区二区三区| 欧洲一区二区三区在线| 中文字幕一区二区在线观看| 久久国产夜色精品鲁鲁99| 欧美视频在线一区二区三区 | 欧美亚洲禁片免费| 1000精品久久久久久久久| 狠狠v欧美v日韩v亚洲ⅴ| 欧美日本一区二区在线观看| 综合欧美亚洲日本| 国产不卡视频一区| 亚洲精品一区二区三区香蕉| 天天av天天翘天天综合网| 91麻豆免费在线观看| 国产欧美中文在线| 国产精品羞羞答答xxdd| 精品免费视频一区二区| 美女视频黄a大片欧美| 欧美亚洲动漫精品| 国产女主播一区| 欧美电影免费观看高清完整版在线观看 | 亚洲人一二三区| 成人美女在线观看| 国产精品日日摸夜夜摸av| 国产成人精品午夜视频免费| 久久日一线二线三线suv| 久久国产成人午夜av影院| 欧美一区二区三区免费| 午夜精品成人在线| 欧美日韩黄色影视| 天天免费综合色| 69av一区二区三区| 蓝色福利精品导航| 亚洲精品一区二区三区福利| 精品在线观看视频| 久久久久久久久久久久电影| 国产精品1区2区| 中文字幕精品三区| av成人免费在线| 亚洲人成网站色在线观看| 色国产综合视频| 亚洲成av人片在线观看无码| 欧美精品一二三区| 久久爱另类一区二区小说| 精品国产91亚洲一区二区三区婷婷| 激情综合亚洲精品| 久久亚洲影视婷婷| 成人伦理片在线| 一区二区三区四区视频精品免费| 91久久精品一区二区三区| 偷窥少妇高潮呻吟av久久免费| 欧美丰满少妇xxxxx高潮对白| 免费在线观看成人| 国产亚洲一区二区在线观看| av综合在线播放| 偷拍亚洲欧洲综合| 久久久久久**毛片大全| 97精品国产露脸对白| 婷婷一区二区三区| 久久蜜桃一区二区| 99vv1com这只有精品| 日本一区中文字幕| 国产拍欧美日韩视频二区| 日本道在线观看一区二区| 免费在线观看成人| 最新欧美精品一区二区三区| 欧美日韩国产首页| 国产成人综合在线| 午夜精品免费在线| 国产亚洲污的网站| 在线视频欧美区| 国产精品主播直播| 亚洲午夜久久久久久久久久久| 欧美成va人片在线观看| av不卡在线播放| 久久成人免费电影| 亚洲精品日韩一| 久久久不卡影院| 4hu四虎永久在线影院成人| 成人一级片在线观看| 日韩电影一二三区| 亚洲人精品一区| 精品国产凹凸成av人网站| 一本大道久久a久久精二百| 九九精品一区二区| 亚洲精品视频在线| 久久久99精品久久| 在线不卡的av| 色综合久久66| 国产一区二区三区| 丝瓜av网站精品一区二区| 国产精品初高中害羞小美女文| 日韩三区在线观看| 欧美丝袜丝交足nylons| av高清久久久| 国产米奇在线777精品观看| 婷婷六月综合亚洲|