• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 package com.android.launcher3;
18 
19 import android.content.Context;
20 import android.graphics.Rect;
21 
22 import com.android.launcher3.accessibility.DragViewStateAnnouncer;
23 import com.android.launcher3.config.FeatureFlags;
24 import com.android.launcher3.dragndrop.DragOptions;
25 import com.android.launcher3.dragndrop.DragView;
26 import com.android.launcher3.dragndrop.DraggableView;
27 import com.android.launcher3.folder.FolderNameProvider;
28 import com.android.launcher3.logging.InstanceId;
29 import com.android.launcher3.logging.InstanceIdSequence;
30 import com.android.launcher3.model.data.ItemInfo;
31 import com.android.launcher3.util.Executors;
32 
33 /**
34  * Interface defining an object that can receive a drag.
35  *
36  */
37 public interface DropTarget {
38 
39     class DragObject {
40         public int x = -1;
41         public int y = -1;
42 
43         /** X offset from the upper-left corner of the cell to where we touched.  */
44         public int xOffset = -1;
45 
46         /** Y offset from the upper-left corner of the cell to where we touched.  */
47         public int yOffset = -1;
48 
49         /** This indicates whether a drag is in final stages, either drop or cancel. It
50          * differentiates onDragExit, since this is called when the drag is ending, above
51          * the current drag target, or when the drag moves off the current drag object.
52          */
53         public boolean dragComplete = false;
54 
55         /** The view that moves around while you drag.  */
56         public DragView dragView = null;
57 
58         /** The data associated with the object, after item is dropped. */
59         public ItemInfo dragInfo = null;
60 
61         /** The data associated with the object  being dragged */
62         public ItemInfo originalDragInfo = null;
63 
64         /** Where the drag originated */
65         public DragSource dragSource = null;
66 
67         /** Indicates that the drag operation was cancelled */
68         public boolean cancelled = false;
69 
70         /** Defers removing the DragView from the DragLayer until after the drop animation. */
71         public boolean deferDragViewCleanupPostAnimation = true;
72 
73         public DragViewStateAnnouncer stateAnnouncer;
74 
75         public FolderNameProvider folderNameProvider;
76 
77         /** The source view (ie. icon, widget etc.) that is being dragged and which the
78          * DragView represents. May be an actual View class or a virtual stand-in */
79         public DraggableView originalView = null;
80 
81         /** Used for matching DROP event with its corresponding DRAG event on the server side. */
82         public final InstanceId logInstanceId = new InstanceIdSequence().newInstanceId();
83 
DragObject(Context context)84         public DragObject(Context context) {
85             if (FeatureFlags.FOLDER_NAME_SUGGEST.get()) {
86                 Executors.MODEL_EXECUTOR.post(() -> {
87                     folderNameProvider = FolderNameProvider.newInstance(context);
88                 });
89             }
90         }
91 
92         /**
93          * This is used to compute the visual center of the dragView. This point is then
94          * used to visualize drop locations and determine where to drop an item. The idea is that
95          * the visual center represents the user's interpretation of where the item is, and hence
96          * is the appropriate point to use when determining drop location.
97          */
getVisualCenter(float[] recycle)98         public final float[] getVisualCenter(float[] recycle) {
99             final float res[] = (recycle == null) ? new float[2] : recycle;
100             Rect dragRegion = dragView.getDragRegion();
101 
102             // These represent the visual top and left of drag view if a dragRect was provided.
103             // If a dragRect was not provided, then they correspond to the actual view left and
104             // top, as the dragRect is in that case taken to be the entire dragView.
105             int left = x - xOffset - dragRegion.left;
106             int top = y - yOffset - dragRegion.top;
107 
108             // In order to find the visual center, we shift by half the dragRect
109             res[0] = left + dragRegion.width() / 2;
110             res[1] = top + dragRegion.height() / 2;
111 
112             return res;
113         }
114     }
115 
116     /**
117      * Used to temporarily disable certain drop targets
118      *
119      * @return boolean specifying whether this drop target is currently enabled
120      */
isDropEnabled()121     boolean isDropEnabled();
122 
123     /**
124      * Handle an object being dropped on the DropTarget.
125      *
126      * This will be called only if this target previously returned true for {@link #acceptDrop}. It
127      * is the responsibility of this target to exit out of the spring loaded mode (either
128      * immediately or after any pending animations).
129      *
130      * If the drop was cancelled for some reason, onDrop will never get called, the UI will
131      * automatically exit out of this mode.
132      */
onDrop(DragObject dragObject, DragOptions options)133     void onDrop(DragObject dragObject, DragOptions options);
134 
onDragEnter(DragObject dragObject)135     void onDragEnter(DragObject dragObject);
136 
onDragOver(DragObject dragObject)137     void onDragOver(DragObject dragObject);
138 
onDragExit(DragObject dragObject)139     void onDragExit(DragObject dragObject);
140 
141     /**
142      * Check if a drop action can occur at, or near, the requested location.
143      * This will be called just before onDrop.
144      * @return True if the drop will be accepted, false otherwise.
145      */
acceptDrop(DragObject dragObject)146     boolean acceptDrop(DragObject dragObject);
147 
prepareAccessibilityDrop()148     void prepareAccessibilityDrop();
149 
150     // These methods are implemented in Views
getHitRectRelativeToDragLayer(Rect outRect)151     void getHitRectRelativeToDragLayer(Rect outRect);
152 }
153