The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 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 Onorato | a590252 | 2009-07-30 13:37:37 -0700 | [diff] [blame] | 17 | package com.android.launcher2; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 19 | import android.graphics.Rect; |
| 20 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 21 | /** |
| 22 | * Interface defining an object that can receive a drag. |
| 23 | * |
| 24 | */ |
| 25 | public interface DropTarget { |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 26 | /** |
| 27 | * Used to temporarily disable certain drop targets |
| 28 | * |
| 29 | * @return boolean specifying whether this drop target is currently enabled |
| 30 | */ |
| 31 | boolean isDropEnabled(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 32 | |
| 33 | /** |
| 34 | * Handle an object being dropped on the DropTarget |
| 35 | * |
| 36 | * @param source DragSource where the drag started |
| 37 | * @param x X coordinate of the drop location |
| 38 | * @param y Y coordinate of the drop location |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 39 | * @param xOffset Horizontal offset with the object being dragged where the original |
| 40 | * touch happened |
| 41 | * @param yOffset Vertical offset with the object being dragged where the original |
| 42 | * touch happened |
| 43 | * @param dragView The DragView that's being dragged around on screen. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 44 | * @param dragInfo Data associated with the object being dragged |
| 45 | * |
| 46 | */ |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 47 | void onDrop(DragSource source, int x, int y, int xOffset, int yOffset, |
| 48 | DragView dragView, Object dragInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 49 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 50 | void onDragEnter(DragSource source, int x, int y, int xOffset, int yOffset, |
| 51 | DragView dragView, Object dragInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 52 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 53 | void onDragOver(DragSource source, int x, int y, int xOffset, int yOffset, |
| 54 | DragView dragView, Object dragInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 55 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 56 | void onDragExit(DragSource source, int x, int y, int xOffset, int yOffset, |
| 57 | DragView dragView, Object dragInfo); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 58 | |
| 59 | /** |
Patrick Dubroy | 440c360 | 2010-07-13 17:50:32 -0700 | [diff] [blame] | 60 | * Allows a DropTarget to delegate drag and drop events to another object. |
| 61 | * |
| 62 | * Most subclasses will should just return null from this method. |
| 63 | * |
| 64 | * @param source DragSource where the drag started |
| 65 | * @param x X coordinate of the drop location |
| 66 | * @param y Y coordinate of the drop location |
| 67 | * @param xOffset Horizontal offset with the object being dragged where the original |
| 68 | * touch happened |
| 69 | * @param yOffset Vertical offset with the object being dragged where the original |
| 70 | * touch happened |
| 71 | * @param dragView The DragView that's being dragged around on screen. |
| 72 | * @param dragInfo Data associated with the object being dragged |
| 73 | * |
| 74 | * @return The DropTarget to delegate to, or null to not delegate to another object. |
| 75 | */ |
| 76 | DropTarget getDropTargetDelegate(DragSource source, int x, int y, int xOffset, int yOffset, |
| 77 | DragView dragView, Object dragInfo); |
| 78 | |
| 79 | /** |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 80 | * Check if a drop action can occur at, or near, the requested location. |
Patrick Dubroy | 4ed6278 | 2010-08-17 15:11:18 -0700 | [diff] [blame] | 81 | * This will be called just before onDrop. |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 82 | * |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 83 | * @param source DragSource where the drag started |
| 84 | * @param x X coordinate of the drop location |
| 85 | * @param y Y coordinate of the drop location |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 86 | * @param xOffset Horizontal offset with the object being dragged where the |
| 87 | * original touch happened |
| 88 | * @param yOffset Vertical offset with the object being dragged where the |
| 89 | * original touch happened |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 90 | * @param dragView The DragView that's being dragged around on screen. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 91 | * @param dragInfo Data associated with the object being dragged |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 92 | * @return True if the drop will be accepted, false otherwise. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 93 | */ |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 94 | boolean acceptDrop(DragSource source, int x, int y, int xOffset, int yOffset, |
| 95 | DragView dragView, Object dragInfo); |
Jeff Sharkey | 7086428 | 2009-04-07 21:08:40 -0700 | [diff] [blame] | 96 | |
Joe Onorato | 00acb12 | 2009-08-04 16:04:30 -0400 | [diff] [blame] | 97 | // These methods are implemented in Views |
| 98 | void getHitRect(Rect outRect); |
| 99 | void getLocationOnScreen(int[] loc); |
| 100 | int getLeft(); |
| 101 | int getTop(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 102 | } |