blob: 9c0faf31f960e7a98aef1c74e23446ef35c161e5 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Jeff Sharkey70864282009-04-07 21:08:40 -070019import android.graphics.Rect;
20
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021/**
22 * Interface defining an object that can receive a drag.
23 *
24 */
25public interface DropTarget {
Adam Cohencb3382b2011-05-24 14:07:08 -070026
27 class DragObject {
28 public int x = -1;
29 public int y = -1;
30
31 /** X offset from the upper-left corner of the cell to where we touched. */
32 public int xOffset = -1;
33
34 /** Y offset from the upper-left corner of the cell to where we touched. */
35 public int yOffset = -1;
36
37 /** The view that moves around while you drag. */
38 public DragView dragView = null;
39
40 /** The data associated with the object being dragged */
41 public Object dragInfo = null;
42
43 /** Where the drag originated */
44 public DragSource dragSource = null;
45
46 public DragObject() {
47 }
48 }
49
Michael Jurka0280c3b2010-09-17 15:00:07 -070050 /**
51 * Used to temporarily disable certain drop targets
52 *
53 * @return boolean specifying whether this drop target is currently enabled
54 */
55 boolean isDropEnabled();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056
57 /**
58 * Handle an object being dropped on the DropTarget
59 *
60 * @param source DragSource where the drag started
61 * @param x X coordinate of the drop location
62 * @param y Y coordinate of the drop location
Joe Onorato00acb122009-08-04 16:04:30 -040063 * @param xOffset Horizontal offset with the object being dragged where the original
64 * touch happened
65 * @param yOffset Vertical offset with the object being dragged where the original
66 * touch happened
67 * @param dragView The DragView that's being dragged around on screen.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068 * @param dragInfo Data associated with the object being dragged
69 *
70 */
Adam Cohencb3382b2011-05-24 14:07:08 -070071 void onDrop(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072
Adam Cohencb3382b2011-05-24 14:07:08 -070073 void onDragEnter(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074
Adam Cohencb3382b2011-05-24 14:07:08 -070075 void onDragOver(DragObject dragObject);
76
77 void onDragExit(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078
79 /**
Patrick Dubroy440c3602010-07-13 17:50:32 -070080 * Allows a DropTarget to delegate drag and drop events to another object.
81 *
82 * Most subclasses will should just return null from this method.
83 *
84 * @param source DragSource where the drag started
85 * @param x X coordinate of the drop location
86 * @param y Y coordinate of the drop location
87 * @param xOffset Horizontal offset with the object being dragged where the original
88 * touch happened
89 * @param yOffset Vertical offset with the object being dragged where the original
90 * touch happened
91 * @param dragView The DragView that's being dragged around on screen.
92 * @param dragInfo Data associated with the object being dragged
93 *
94 * @return The DropTarget to delegate to, or null to not delegate to another object.
95 */
Adam Cohencb3382b2011-05-24 14:07:08 -070096 DropTarget getDropTargetDelegate(DragObject dragObject);
Patrick Dubroy440c3602010-07-13 17:50:32 -070097
98 /**
Jeff Sharkey70864282009-04-07 21:08:40 -070099 * Check if a drop action can occur at, or near, the requested location.
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700100 * This will be called just before onDrop.
Jeff Sharkey70864282009-04-07 21:08:40 -0700101 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800102 * @param source DragSource where the drag started
103 * @param x X coordinate of the drop location
104 * @param y Y coordinate of the drop location
Jeff Sharkey70864282009-04-07 21:08:40 -0700105 * @param xOffset Horizontal offset with the object being dragged where the
106 * original touch happened
107 * @param yOffset Vertical offset with the object being dragged where the
108 * original touch happened
Joe Onorato00acb122009-08-04 16:04:30 -0400109 * @param dragView The DragView that's being dragged around on screen.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800110 * @param dragInfo Data associated with the object being dragged
Jeff Sharkey70864282009-04-07 21:08:40 -0700111 * @return True if the drop will be accepted, false otherwise.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800112 */
Adam Cohencb3382b2011-05-24 14:07:08 -0700113 boolean acceptDrop(DragObject dragObject);
Jeff Sharkey70864282009-04-07 21:08:40 -0700114
Joe Onorato00acb122009-08-04 16:04:30 -0400115 // These methods are implemented in Views
116 void getHitRect(Rect outRect);
117 void getLocationOnScreen(int[] loc);
118 int getLeft();
119 int getTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800120}