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

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

?? droptargetlistener.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
字號:
/******************************************************************************* * Copyright (c) 2000, 2003 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.dnd;import org.eclipse.swt.internal.SWTEventListener;/** * The <code>DropTargetListener</code> class provides event notification to the application  * for DropTarget events. * * <p>As the user moves the cursor into, over and out of a Control that has been designated  * as a DropTarget, events indicate what operation can be performed and what data can be  * transferred if a drop where to occur at that point. * The application can respond to these events and change the type of data that will  * be dropped by modifying event.currentDataType, or change the operation that will be performed  * by modifying the event.detail field or stop any drop from happening on the current target * by setting the event.detail field to DND_DROP_NONE.</p> * * <p>When the user causes a drop to happen by releasing the mouse over a valid drop target,  * the application has one last chance to change the data type of the drop through the  * DropAccept event.  If the drop is still allowed, the DropAccept event is immediately  * followed by the Drop event.  In the Drop event, the application can still change the * operation that is performed but the data type is fixed.</p> *  * @see DropTargetEvent * */public interface DropTargetListener extends SWTEventListener {	/** * The cursor has entered the drop target boundaries. * * <p>The following fields in the DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x * <li>(in)y * <li>(in)dataTypes * <li>(in,out)currentDataType * <li>(in)operations * <li>(in,out)detail * <li>(in,out)feedback * </ul></p> * * <p>The <code>operation</code> value is determined by the modifier keys pressed by the user.   * If no keys are pressed the <code>event.detail</code> field is set to DND.DROP_DEFAULT.   * If the application does not set the <code>event.detail</code> to something other  * than <code>DND.DROP_DEFAULT</code> the operation will be set to the platform defined standard  * default.</p> *  * <p>The <code>currentDataType</code> is determined by the first transfer agent specified in  * setTransfer() that matches a data type provided by the drag source.</p> *  * <p>It is possible to get a DragEnter event when the drag source does not provide any matching data. * In this case, the default operation is DND.DROP_NONE and the currentDataType is null.</p> *  * <p>The application can change the operation that will be performed by modifying the  * <code>detail</code> field but the choice must be one of the values in the <code>operations</code>  * field or DND.DROP_NONE.</p> *  * <p>The application can also change the type of data being requested by  * modifying the <code>currentDataTypes</code> field  but the value must be one of the values  * in the <code>dataTypes</code> list.</p> * * @param event  the information associated with the drag enter event *  * @see DropTargetEvent */public void dragEnter(DropTargetEvent event);/** * The cursor has left the drop target boundaries OR the drop has been cancelled OR the data  * is about to be dropped. * * <p>The following fields in the DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x * <li>(in)y * <li>(in)dataTypes * <li>(in)currentDataType * <li>(in)operations * <li>(in)detail * </ul></p> * * @param event  the information associated with the drag leave event * * @see DropTargetEvent */public void dragLeave(DropTargetEvent event);/** * The operation being performed has changed (usually due to the user changing the selected modifier key(s) * while dragging). * * <p>The following fields in the DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x * <li>(in)y * <li>(in)dataTypes * <li>(in,out)currentDataType * <li>(in)operations * <li>(in,out)detail * <li>(in,out)feedback * </ul></p> * * <p>The <code>operation</code> value is determined by the modifier keys pressed by the user.   * If no keys are pressed the <code>event.detail</code> field is set to DND.DROP_DEFAULT.   * If the application does not set the <code>event.detail</code> to something other than  * <code>DND.DROP_DEFAULT</code> the operation will be set to the platform defined standard default.</p> *  * <p>The <code>currentDataType</code> value is determined by the value assigned to  * <code>currentDataType</code> in previous dragEnter and dragOver calls.</p> *  * <p>The application can change the operation that will be performed by modifying the  * <code>detail</code> field but the choice must be one of the values in the <code>operations</code>  * field.</p> *  * <p>The application can also change the type of data being requested by modifying  * the <code>currentDataTypes</code> field  but the value must be one of the values in the  * <code>dataTypes</code> list.</p> * * @param event  the information associated with the drag operation changed event *  * @see DropTargetEvent */public void dragOperationChanged(DropTargetEvent event);/** * The cursor is moving over the drop target. * * <p>The following fields in the DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x * <li>(in)y * <li>(in)dataTypes * <li>(in,out)currentDataType * <li>(in)operations * <li>(in,out)detail * <li>(in,out)feedback * </ul></p> * * <p>The <code>operation</code> value is determined by the value assigned to  * <code>currentDataType</code> in previous dragEnter and dragOver calls.</p> *  * <p>The <code>currentDataType</code> value is determined by the value assigned to  * <code>currentDataType</code> in previous dragEnter and dragOver calls.</p> *  * <p>The application can change the operation that will be performed by modifying the  * <code>detail</code> field but the choice must be one of the values in the <code>operations</code>  * field.</p> *  * <p>The application can also change the type of data being requested by modifying the  * <code>currentDataTypes</code> field  but the value must be one of the values in the  * <code>dataTypes</code> list.</p> *  * <p>NOTE: At this point the <code>data</code> field is null.  On some platforms, it is possible  * to obtain the data being transferred before the transfer occurs but in most platforms this is  * not possible.  On those platforms where the data is available, the application can access the  * data as follows:</p> *  * <pre><code> * public void dragOver(DropTargetEvent event) { *       TextTransfer textTransfer = TextTransfer.getInstance(); *       String data = (String)textTransfer.nativeToJava(event.currentDataType); *       if (data != null) { *           System.out.println("Data to be dropped is (Text)"+data); *       } * }; * </code></pre> * * @param event  the information associated with the drag over event *  * @see DropTargetEvent */public void dragOver(DropTargetEvent event);/** * The data is being dropped.  The data field contains java format of the data being dropped.   * To determine the type of the data object, refer to the documentation for the Transfer subclass  * specified in event.currentDataType. * * <p>The following fields in DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x  * <li>(in)y * <li>(in,out)detail * <li>(in)currentDataType * <li>(in)data * </ul></p> * * <p>The application can refuse to perform the drop operation by setting the detail  * field to DND.DROP_NONE.</p> * * @param event the information associated with the drop event *  * @see DropTargetEvent */public void drop(DropTargetEvent event);/** * The drop is about to be performed.   * The drop target is given a last chance to change the nature of the drop. *  * <p>The following fields in the DropTargetEvent apply: * <ul> * <li>(in)widget * <li>(in)time * <li>(in)x * <li>(in)y * <li>(in)dataTypes * <li>(in,out)currentDataType * <li>(in)operations * <li>(in,out)detail * </ul></p> * * <p>The application can veto the drop by setting the <code>event.detail</code> field to  * <code>DND.DROP_NONE</code>.</p> * * <p>The application can change the operation that will be performed by modifying the  * <code>detail</code> field but the choice must be one of the values in the  * <code>operations</code> field.</p> *  * <p>The application can also change the type of data being requested by modifying the  * <code>currentDataTypes</code> field  but the value must be one of the values in the < * code>dataTypes</code> list.</p> * * @param event  the information associated with the drop accept event *  * @see DropTargetEvent */public void dropAccept(DropTargetEvent event);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产精品久久不卡毛片| 国精产品一区一区三区mba桃花| 偷拍亚洲欧洲综合| 国产精品18久久久久久久久| 欧美日韩国产乱码电影| 国产精品国产a级| 久久99最新地址| 在线观看91精品国产入口| 国产免费久久精品| 欧美aⅴ一区二区三区视频| aaa欧美日韩| 国产偷国产偷亚洲高清人白洁| 亚洲国产毛片aaaaa无费看| 国产99久久久久久免费看农村| 日韩视频123| 亚洲综合色区另类av| 91香蕉视频污在线| 国产精品视频yy9299一区| 久久草av在线| 欧美一区二区三区小说| 亚洲综合视频在线观看| 91性感美女视频| 欧美国产日韩在线观看| 国产精一区二区三区| 欧美成人女星排名| 日韩电影一二三区| 日韩视频一区二区三区在线播放| 亚洲一区二区欧美激情| 欧美日韩中文精品| 亚洲大型综合色站| 欧美日本在线观看| 日本亚洲视频在线| 欧美成人一区二区三区| 久久99久久久欧美国产| 日韩视频中午一区| 精品无码三级在线观看视频 | 国产精品一区二区x88av| 欧美tickling挠脚心丨vk| 另类的小说在线视频另类成人小视频在线| 欧美日韩综合在线免费观看| 午夜一区二区三区视频| 欧美色手机在线观看| 日日摸夜夜添夜夜添国产精品| 欧美日韩精品一区二区三区蜜桃 | 欧美色倩网站大全免费| 亚洲444eee在线观看| 7799精品视频| 精品无人区卡一卡二卡三乱码免费卡| 久久综合久久综合久久| www.久久久久久久久| 亚洲影视资源网| 欧美va亚洲va| 成人av在线播放网址| 一级日本不卡的影视| 欧美日韩卡一卡二| 国产美女视频一区| 亚洲免费观看视频| 这里只有精品99re| 国产成人在线免费| 亚洲国产aⅴ天堂久久| 日韩一区二区三区免费看 | 国产 欧美在线| 亚洲精品免费在线播放| 这里是久久伊人| 大胆欧美人体老妇| 亚洲国产视频直播| 亚洲国产高清在线| 欧美日本一区二区| 国产成人精品亚洲日本在线桃色 | 久久精品国产一区二区三| 中文字幕欧美日韩一区| 欧美高清性hdvideosex| 国产另类ts人妖一区二区| 亚洲嫩草精品久久| 国产亚洲一区二区三区| 欧美亚洲精品一区| 国产a精品视频| 日本亚洲最大的色成网站www| 国产精品女主播av| 精品久久久久久久久久久久久久久久久 | 亚洲精品欧美在线| 国产亚洲欧洲一区高清在线观看| 在线观看一区不卡| 国产一区福利在线| 日韩av一区二区三区四区| 中文字幕一区二区三区乱码在线| 日韩精品中文字幕在线一区| 一本久道中文字幕精品亚洲嫩| 激情五月激情综合网| 性感美女久久精品| 尤物视频一区二区| 国产精品毛片久久久久久久| 日韩午夜激情av| 欧美亚洲综合另类| 波多野结衣精品在线| 国产麻豆视频一区| 蜜臀av一区二区三区| 午夜精品一区在线观看| 亚洲一区二区三区四区在线| 亚洲视频香蕉人妖| 亚洲欧洲精品一区二区精品久久久| 欧美电视剧在线看免费| 91精品国模一区二区三区| 欧美日韩一区二区三区在线看| 91小视频在线观看| 色哟哟国产精品| 色综合久久综合中文综合网| 成人高清伦理免费影院在线观看| 精品一区二区三区在线播放| 蜜臀91精品一区二区三区| 日韩成人一级片| 日本vs亚洲vs韩国一区三区二区| 香蕉加勒比综合久久| 午夜精品久久久久久久| 丝袜国产日韩另类美女| 奇米影视一区二区三区小说| 免费高清在线一区| 国内精品伊人久久久久影院对白| 捆绑调教一区二区三区| 激情综合色播激情啊| 国产精品自在欧美一区| 国产黄色精品网站| av色综合久久天堂av综合| 97se狠狠狠综合亚洲狠狠| 日本福利一区二区| 欧美三级日韩三级国产三级| 337p亚洲精品色噜噜| 欧美成人乱码一区二区三区| 久久久久亚洲蜜桃| 亚洲欧洲国产专区| 一片黄亚洲嫩模| 视频一区二区三区中文字幕| 九九视频精品免费| 成人手机在线视频| 欧美在线观看一二区| 日韩久久久精品| 国产精品久久久久久久岛一牛影视| 亚洲人亚洲人成电影网站色| 亚洲国产精品久久一线不卡| 蜜桃av一区二区| 成人一区在线观看| 欧美日韩一二三| 国产色综合一区| 亚洲国产另类av| 国内久久精品视频| 欧洲国内综合视频| 精品国产伦一区二区三区免费| 国产精品久久午夜| 亚洲成a人片在线观看中文| 韩国欧美一区二区| 欧美三级中文字幕| 久久精品人人做人人综合 | 国产传媒一区在线| 91精彩视频在线观看| 精品免费视频.| 亚洲亚洲人成综合网络| 国产麻豆成人精品| 欧美日韩在线综合| 国产精品天干天干在线综合| 日日夜夜精品视频天天综合网| 丰满放荡岳乱妇91ww| 日韩欧美中文一区二区| 中文字幕日本不卡| 精品午夜久久福利影院| 欧美日韩一区二区三区在线| 中文字幕欧美日韩一区| 麻豆精品在线观看| 色狠狠av一区二区三区| 国产欧美日韩亚州综合| 久草在线在线精品观看| 欧美性色aⅴ视频一区日韩精品| 久久品道一品道久久精品| 无码av免费一区二区三区试看 | 欧美tk丨vk视频| 亚洲高清免费观看| 91污片在线观看| 国产精品理论在线观看| 激情国产一区二区| 91精品国产欧美一区二区成人| 伊人一区二区三区| av一区二区三区黑人| 国产日本欧洲亚洲| 国内精品在线播放| 精品久久久久久久久久久久包黑料| 亚洲一区二区精品3399| 91传媒视频在线播放| 亚洲日本va在线观看| 99riav久久精品riav| 国产精品高潮呻吟| av在线一区二区三区| 国产精品久久久久国产精品日日| 国产精品一区免费在线观看| 久久综合九色综合欧美就去吻| 裸体歌舞表演一区二区| 精品少妇一区二区三区| 日韩国产精品91| 日韩丝袜情趣美女图片| 久久se这里有精品| 久久网站热最新地址| 韩国在线一区二区|