blob: 4172da2439f680568f0420b389e348a2d76730c3 [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
Adam Cohenbfbfd262011-06-13 16:55:12 -070037 /** This indicates whether a drag is in final stages, either drop or cancel. It
38 * differentiates onDragExit, since this is called when the drag is ending, above
39 * the current drag target, or when the drag moves off the current drag object.
40 */
41 public boolean dragComplete = false;
42
Adam Cohencb3382b2011-05-24 14:07:08 -070043 /** The view that moves around while you drag. */
44 public DragView dragView = null;
45
46 /** The data associated with the object being dragged */
47 public Object dragInfo = null;
48
49 /** Where the drag originated */
50 public DragSource dragSource = null;
51
Winson Chung557d6ed2011-07-08 15:34:52 -070052 /** Post drag animation runnable */
53 public Runnable postAnimationRunnable = null;
54
Adam Cohen36cc09b2011-09-29 17:33:15 -070055 /** Indicates that the drag operation was cancelled */
56 public boolean cancelled = false;
57
Adam Cohencb3382b2011-05-24 14:07:08 -070058 public DragObject() {
59 }
60 }
61
Michael Jurka0280c3b2010-09-17 15:00:07 -070062 /**
63 * Used to temporarily disable certain drop targets
64 *
65 * @return boolean specifying whether this drop target is currently enabled
66 */
67 boolean isDropEnabled();
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068
69 /**
70 * Handle an object being dropped on the DropTarget
71 *
72 * @param source DragSource where the drag started
73 * @param x X coordinate of the drop location
74 * @param y Y coordinate of the drop location
Joe Onorato00acb122009-08-04 16:04:30 -040075 * @param xOffset Horizontal offset with the object being dragged where the original
76 * touch happened
77 * @param yOffset Vertical offset with the object being dragged where the original
78 * touch happened
79 * @param dragView The DragView that's being dragged around on screen.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 * @param dragInfo Data associated with the object being dragged
81 *
82 */
Adam Cohencb3382b2011-05-24 14:07:08 -070083 void onDrop(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084
Adam Cohencb3382b2011-05-24 14:07:08 -070085 void onDragEnter(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086
Adam Cohencb3382b2011-05-24 14:07:08 -070087 void onDragOver(DragObject dragObject);
88
89 void onDragExit(DragObject dragObject);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080090
91 /**
Patrick Dubroy440c3602010-07-13 17:50:32 -070092 * Allows a DropTarget to delegate drag and drop events to another object.
93 *
94 * Most subclasses will should just return null from this method.
95 *
96 * @param source DragSource where the drag started
97 * @param x X coordinate of the drop location
98 * @param y Y coordinate of the drop location
99 * @param xOffset Horizontal offset with the object being dragged where the original
100 * touch happened
101 * @param yOffset Vertical offset with the object being dragged where the original
102 * touch happened
103 * @param dragView The DragView that's being dragged around on screen.
104 * @param dragInfo Data associated with the object being dragged
105 *
106 * @return The DropTarget to delegate to, or null to not delegate to another object.
107 */
Adam Cohencb3382b2011-05-24 14:07:08 -0700108 DropTarget getDropTargetDelegate(DragObject dragObject);
Patrick Dubroy440c3602010-07-13 17:50:32 -0700109
110 /**
Jeff Sharkey70864282009-04-07 21:08:40 -0700111 * Check if a drop action can occur at, or near, the requested location.
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700112 * This will be called just before onDrop.
Jeff Sharkey70864282009-04-07 21:08:40 -0700113 *
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800114 * @param source DragSource where the drag started
115 * @param x X coordinate of the drop location
116 * @param y Y coordinate of the drop location
Jeff Sharkey70864282009-04-07 21:08:40 -0700117 * @param xOffset Horizontal offset with the object being dragged where the
118 * original touch happened
119 * @param yOffset Vertical offset with the object being dragged where the
120 * original touch happened
Joe Onorato00acb122009-08-04 16:04:30 -0400121 * @param dragView The DragView that's being dragged around on screen.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122 * @param dragInfo Data associated with the object being dragged
Jeff Sharkey70864282009-04-07 21:08:40 -0700123 * @return True if the drop will be accepted, false otherwise.
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124 */
Adam Cohencb3382b2011-05-24 14:07:08 -0700125 boolean acceptDrop(DragObject dragObject);
Jeff Sharkey70864282009-04-07 21:08:40 -0700126
Joe Onorato00acb122009-08-04 16:04:30 -0400127 // These methods are implemented in Views
128 void getHitRect(Rect outRect);
Adam Cohen8dfcba42011-07-07 16:38:18 -0700129 void getLocationInDragLayer(int[] loc);
Joe Onorato00acb122009-08-04 16:04:30 -0400130 int getLeft();
131 int getTop();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132}