]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/dnd/IDropTargetParticipant.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / dnd / IDropTargetParticipant.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 /*\r
13  *\r
14  * @author Toni Kalajainen\r
15  */\r
16 package org.simantics.g2d.dnd;\r
17 \r
18 import java.awt.dnd.DropTargetDragEvent;\r
19 import java.awt.dnd.DropTargetDropEvent;\r
20 import java.awt.dnd.DropTargetEvent;\r
21 \r
22 import org.simantics.g2d.canvas.ICanvasParticipant;\r
23 \r
24 /**\r
25  * IDropParticipant is an interface for taking part of a DnD event. \r
26  * {@link IDnDContext} is a context used during the life cycle of the event.\r
27  * \r
28  * IDnDParticipant implementations require {@link DropInteractor}. \r
29  *\r
30  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>\r
31  */\r
32 public interface IDropTargetParticipant extends ICanvasParticipant {\r
33 \r
34         void dragEnter(DropTargetDragEvent dtde, IDnDContext dp);\r
35         \r
36         void dragExit(DropTargetEvent dte, IDnDContext dp);\r
37 \r
38         void dragOver(DropTargetDragEvent dtde, IDnDContext dp);\r
39 \r
40         void drop(DropTargetDropEvent dtde, IDnDContext dp);\r
41         \r
42         void dropActionChanged(DropTargetDragEvent dtde, IDnDContext dp);\r
43         \r
44         /**\r
45          * Get allowed ops (See DnDConstants)\r
46          * @return\r
47          */\r
48         int getAllowedOps();\r
49         \r
50         double getPriority();\r
51         \r
52 }\r