blob: dd0bffda63d21015bb098e77da982813f2b692b6 [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
Adam Cohendf2cc412011-04-27 16:56:57 -070019import android.animation.Animator;
20import android.animation.AnimatorListenerAdapter;
Adam Cohendf2cc412011-04-27 16:56:57 -070021import android.animation.ObjectAnimator;
22import android.animation.PropertyValuesHolder;
23import android.animation.ValueAnimator;
24import android.animation.ValueAnimator.AnimatorUpdateListener;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Adam Cohen76fc0852011-06-17 13:26:23 -070026import android.content.res.Resources;
Romain Guyfb5411e2010-02-24 10:04:17 -080027import android.graphics.Rect;
Adam Cohenbadf71e2011-05-26 19:08:29 -070028import android.graphics.drawable.Drawable;
Adam Cohen7a14d0b2011-06-24 11:36:35 -070029import android.text.InputType;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.util.AttributeSet;
Adam Cohen76fc0852011-06-17 13:26:23 -070031import android.view.ActionMode;
32import android.view.KeyEvent;
Adam Cohendf2cc412011-04-27 16:56:57 -070033import android.view.LayoutInflater;
Adam Cohen76fc0852011-06-17 13:26:23 -070034import android.view.Menu;
35import android.view.MenuItem;
Adam Cohen0c872ba2011-05-05 10:34:16 -070036import android.view.MotionEvent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037import android.view.View;
Adam Cohen2801caf2011-05-13 20:57:39 -070038import android.view.animation.AccelerateInterpolator;
39import android.view.animation.DecelerateInterpolator;
Adam Cohen76fc0852011-06-17 13:26:23 -070040import android.view.inputmethod.EditorInfo;
41import android.view.inputmethod.InputMethodManager;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080042import android.widget.AdapterView;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043import android.widget.LinearLayout;
Adam Cohendf2cc412011-04-27 16:56:57 -070044import android.widget.TextView;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045
Romain Guyedcce092010-03-04 13:03:17 -080046import com.android.launcher.R;
Adam Cohena9cf38f2011-05-02 15:36:58 -070047import com.android.launcher2.FolderInfo.FolderListener;
Romain Guyedcce092010-03-04 13:03:17 -080048
Adam Cohenc0dcf592011-06-01 15:30:43 -070049import java.util.ArrayList;
50
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051/**
52 * Represents a set of icons chosen by the user or generated by the system.
53 */
Adam Cohen8dfcba42011-07-07 16:38:18 -070054public class Folder extends LinearLayout implements DragSource, View.OnClickListener,
55 View.OnLongClickListener, DropTarget, FolderListener, TextView.OnEditorActionListener {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056
Adam Cohendf2cc412011-04-27 16:56:57 -070057 private static final String TAG = "Launcher.Folder";
58
Adam Cohen4eac29a2011-07-11 17:53:37 -070059 protected DragController mDragController;
60 protected Launcher mLauncher;
61 protected FolderInfo mInfo;
62
Adam Cohendf2cc412011-04-27 16:56:57 -070063 static final int STATE_NONE = -1;
64 static final int STATE_SMALL = 0;
65 static final int STATE_ANIMATING = 1;
66 static final int STATE_OPEN = 2;
67
68 private int mExpandDuration;
69 protected CellLayout mContent;
70 private final LayoutInflater mInflater;
71 private final IconCache mIconCache;
72 private int mState = STATE_NONE;
Adam Cohen2801caf2011-05-13 20:57:39 -070073 private static final int FULL_GROW = 0;
74 private static final int PARTIAL_GROW = 1;
Adam Cohenbfbfd262011-06-13 16:55:12 -070075 private static final int REORDER_ANIMATION_DURATION = 230;
76 private static final int ON_EXIT_CLOSE_DELAY = 800;
Adam Cohen2801caf2011-05-13 20:57:39 -070077 private int mMode = PARTIAL_GROW;
78 private boolean mRearrangeOnClose = false;
79 private FolderIcon mFolderIcon;
80 private int mMaxCountX;
81 private int mMaxCountY;
82 private Rect mNewSize = new Rect();
Adam Cohen3e8f8112011-07-02 18:03:00 -070083 private Rect mIconRect = new Rect();
Adam Cohen7c693212011-05-18 15:26:57 -070084 private ArrayList<View> mItemsInReadingOrder = new ArrayList<View>();
Adam Cohenbadf71e2011-05-26 19:08:29 -070085 private Drawable mIconDrawable;
Adam Cohen7c693212011-05-18 15:26:57 -070086 boolean mItemsInvalidated = false;
Adam Cohenbfbfd262011-06-13 16:55:12 -070087 private ShortcutInfo mCurrentDragInfo;
88 private View mCurrentDragView;
89 boolean mSuppressOnAdd = false;
90 private int[] mTargetCell = new int[2];
91 private int[] mPreviousTargetCell = new int[2];
92 private int[] mEmptyCell = new int[2];
Adam Cohenac8c8762011-07-13 11:15:27 -070093 private int[] mTempXY = new int[2];
Adam Cohenbfbfd262011-06-13 16:55:12 -070094 private Alarm mReorderAlarm = new Alarm();
95 private Alarm mOnExitAlarm = new Alarm();
Adam Cohen76fc0852011-06-17 13:26:23 -070096 private TextView mFolderName;
97 private int mFolderNameHeight;
Adam Cohen4ef610f2011-06-21 22:37:36 -070098 private Rect mHitRect = new Rect();
Adam Cohen8e776a62011-06-28 18:10:06 -070099 private Rect mTempRect = new Rect();
Adam Cohen8dfcba42011-07-07 16:38:18 -0700100 private boolean mFirstOpen = true;
Adam Cohen76fc0852011-06-17 13:26:23 -0700101
102 private boolean mIsEditingName = false;
103 private InputMethodManager mInputMethodManager;
Adam Cohendf2cc412011-04-27 16:56:57 -0700104
Adam Cohena65beee2011-06-27 21:32:23 -0700105 private static String sDefaultFolderName;
106 private static String sHintText;
107
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108 /**
109 * Used to inflate the Workspace from XML.
110 *
111 * @param context The application's context.
112 * @param attrs The attribtues set containing the Workspace's customization values.
113 */
114 public Folder(Context context, AttributeSet attrs) {
115 super(context, attrs);
116 setAlwaysDrawnWithCacheEnabled(false);
Adam Cohendf2cc412011-04-27 16:56:57 -0700117 mInflater = LayoutInflater.from(context);
118 mIconCache = ((LauncherApplication)context.getApplicationContext()).getIconCache();
Adam Cohen8e776a62011-06-28 18:10:06 -0700119 mMaxCountX = LauncherModel.getCellCountX();
120 mMaxCountY = LauncherModel.getCellCountY();
Adam Cohen76fc0852011-06-17 13:26:23 -0700121
122 mInputMethodManager = (InputMethodManager)
123 mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
124
125 Resources res = getResources();
126 mExpandDuration = res.getInteger(R.integer.config_folderAnimDuration);
Adam Cohen4ef610f2011-06-21 22:37:36 -0700127
128 if (sDefaultFolderName == null) {
129 sDefaultFolderName = res.getString(R.string.folder_name);
130 }
Adam Cohena65beee2011-06-27 21:32:23 -0700131 if (sHintText == null) {
132 sHintText = res.getString(R.string.folder_hint_text);
133 }
Adam Cohen4eac29a2011-07-11 17:53:37 -0700134
135 mLauncher = (Launcher) context;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136 }
137
138 @Override
139 protected void onFinishInflate() {
140 super.onFinishInflate();
Adam Cohendf2cc412011-04-27 16:56:57 -0700141 mContent = (CellLayout) findViewById(R.id.folder_content);
Adam Cohen2801caf2011-05-13 20:57:39 -0700142 mContent.setGridSize(0, 0);
Adam Cohen76fc0852011-06-17 13:26:23 -0700143 mFolderName = (TextView) findViewById(R.id.folder_name);
144
145 // We find out how tall the text view wants to be (it is set to wrap_content), so that
146 // we can allocate the appropriate amount of space for it.
147 int measureSpec = MeasureSpec.UNSPECIFIED;
148 mFolderName.measure(measureSpec, measureSpec);
149 mFolderNameHeight = mFolderName.getMeasuredHeight();
150
151 // We disable action mode for now since it messes up the view on phones
152 mFolderName.setCustomSelectionActionModeCallback(mActionModeCallback);
153 mFolderName.setCursorVisible(false);
154 mFolderName.setOnEditorActionListener(this);
Adam Cohen4ef610f2011-06-21 22:37:36 -0700155 mFolderName.setSelectAllOnFocus(true);
Adam Cohen7a14d0b2011-06-24 11:36:35 -0700156 mFolderName.setInputType(mFolderName.getInputType() |
157 InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_FLAG_CAP_WORDS);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 }
Adam Cohen2801caf2011-05-13 20:57:39 -0700159
Adam Cohen76fc0852011-06-17 13:26:23 -0700160 private ActionMode.Callback mActionModeCallback = new ActionMode.Callback() {
161 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
162 return false;
163 }
164
165 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
166 return false;
167 }
168
169 public void onDestroyActionMode(ActionMode mode) {
170 }
171
172 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
173 return false;
174 }
175 };
176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 public void onClick(View v) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700178 Object tag = v.getTag();
179 if (tag instanceof ShortcutInfo) {
180 // refactor this code from Folder
181 ShortcutInfo item = (ShortcutInfo) tag;
182 int[] pos = new int[2];
183 v.getLocationOnScreen(pos);
184 item.intent.setSourceBounds(new Rect(pos[0], pos[1],
185 pos[0] + v.getWidth(), pos[1] + v.getHeight()));
186 mLauncher.startActivitySafely(item.intent, item);
Adam Cohendf2cc412011-04-27 16:56:57 -0700187 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 }
189
Adam Cohen76fc0852011-06-17 13:26:23 -0700190 public boolean onInterceptTouchEvent(MotionEvent ev) {
191 if (ev.getAction() == MotionEvent.ACTION_DOWN) {
192 mFolderName.getHitRect(mHitRect);
193 if (mHitRect.contains((int) ev.getX(), (int) ev.getY()) && !mIsEditingName) {
194 startEditingFolderName();
195 }
196 }
197 return false;
198 }
199
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200 public boolean onLongClick(View v) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700201 Object tag = v.getTag();
202 if (tag instanceof ShortcutInfo) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700203 ShortcutInfo item = (ShortcutInfo) tag;
204 if (!v.isInTouchMode()) {
205 return false;
206 }
207
208 mLauncher.getWorkspace().onDragStartedWithItem(v);
Adam Cohenac8c8762011-07-13 11:15:27 -0700209 mLauncher.getWorkspace().beginDragShared(v, this);
Adam Cohenbadf71e2011-05-26 19:08:29 -0700210 mIconDrawable = ((TextView) v).getCompoundDrawables()[1];
Adam Cohen76078c42011-06-09 15:06:52 -0700211
212 mCurrentDragInfo = item;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700213 mEmptyCell[0] = item.cellX;
214 mEmptyCell[1] = item.cellY;
215 mCurrentDragView = v;
Adam Cohendf2cc412011-04-27 16:56:57 -0700216 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217 return true;
218 }
219
Adam Cohen716b51e2011-06-30 12:09:54 -0700220 public void onDragViewVisible() {
221 mContent.removeView(mCurrentDragView);
222 mInfo.remove(mCurrentDragInfo);
223 }
224
Adam Cohen76fc0852011-06-17 13:26:23 -0700225 public boolean isEditingName() {
226 return mIsEditingName;
227 }
228
229 public void startEditingFolderName() {
Adam Cohena65beee2011-06-27 21:32:23 -0700230 mFolderName.setHint("");
Adam Cohen76fc0852011-06-17 13:26:23 -0700231 mFolderName.setCursorVisible(true);
232 mIsEditingName = true;
233 }
234
235 public void dismissEditingName() {
236 mInputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0);
237 doneEditingFolderName(true);
238 }
239
240 public void doneEditingFolderName(boolean commit) {
Adam Cohena65beee2011-06-27 21:32:23 -0700241 mFolderName.setHint(sHintText);
Adam Cohen76fc0852011-06-17 13:26:23 -0700242 mInfo.setTitle(mFolderName.getText());
243 LauncherModel.updateItemInDatabase(mLauncher, mInfo);
244 mFolderName.setCursorVisible(false);
245 mFolderName.clearFocus();
246 mIsEditingName = false;
247 }
248
249 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
250 if (actionId == EditorInfo.IME_ACTION_DONE) {
251 dismissEditingName();
252 return true;
253 }
254 return false;
255 }
256
257 public View getEditTextRegion() {
258 return mFolderName;
259 }
260
Adam Cohenbadf71e2011-05-26 19:08:29 -0700261 public Drawable getDragDrawable() {
262 return mIconDrawable;
263 }
264
Adam Cohen0c872ba2011-05-05 10:34:16 -0700265 /**
266 * We need to handle touch events to prevent them from falling through to the workspace below.
267 */
268 @Override
269 public boolean onTouchEvent(MotionEvent ev) {
270 return true;
271 }
272
Joe Onorato00acb122009-08-04 16:04:30 -0400273 public void setDragController(DragController dragController) {
274 mDragController = dragController;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800275 }
276
Adam Cohen2801caf2011-05-13 20:57:39 -0700277 void setFolderIcon(FolderIcon icon) {
278 mFolderIcon = icon;
279 }
280
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800281 /**
282 * @return the FolderInfo object associated with this folder
283 */
284 FolderInfo getInfo() {
285 return mInfo;
286 }
287
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800288 void onOpen() {
Adam Cohendf2cc412011-04-27 16:56:57 -0700289 // When the folder opens, we need to refresh the GridView's selection by
290 // forcing a layout
291 // TODO: find out if this is still necessary
292 mContent.requestLayout();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800293 }
294
295 void onClose() {
Adam Cohen8e776a62011-06-28 18:10:06 -0700296 DragLayer parent = (DragLayer) getParent();
297 parent.removeView(Folder.this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700298 clearFocus();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 }
300
301 void bind(FolderInfo info) {
302 mInfo = info;
Adam Cohendf2cc412011-04-27 16:56:57 -0700303 ArrayList<ShortcutInfo> children = info.contents;
Adam Cohenc508b2d2011-06-28 14:41:44 -0700304 ArrayList<ShortcutInfo> overflow = new ArrayList<ShortcutInfo>();
Adam Cohen7c693212011-05-18 15:26:57 -0700305 setupContentForNumItems(children.size());
Adam Cohendf2cc412011-04-27 16:56:57 -0700306 for (int i = 0; i < children.size(); i++) {
307 ShortcutInfo child = (ShortcutInfo) children.get(i);
Adam Cohenc508b2d2011-06-28 14:41:44 -0700308 if (!createAndAddShortcut(child)) {
309 overflow.add(child);
310 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700311 }
Adam Cohenc508b2d2011-06-28 14:41:44 -0700312
313 // If our folder has too many items we prune them from the list. This is an issue
314 // when upgrading from the old Folders implementation which could contain an unlimited
315 // number of items.
316 for (ShortcutInfo item: overflow) {
317 mInfo.remove(item);
318 LauncherModel.deleteItemFromDatabase(mLauncher, item);
319 }
320
Adam Cohen4dbe6d92011-05-18 17:14:15 -0700321 mItemsInvalidated = true;
Adam Cohena9cf38f2011-05-02 15:36:58 -0700322 mInfo.addListener(this);
Adam Cohen4ef610f2011-06-21 22:37:36 -0700323
Adam Cohenafb01ee2011-06-23 15:38:03 -0700324 if (!sDefaultFolderName.contentEquals(mInfo.title)) {
Adam Cohen4ef610f2011-06-21 22:37:36 -0700325 mFolderName.setText(mInfo.title);
326 } else {
327 mFolderName.setText("");
328 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700329 }
330
331 /**
332 * Creates a new UserFolder, inflated from R.layout.user_folder.
333 *
334 * @param context The application's context.
335 *
336 * @return A new UserFolder.
337 */
338 static Folder fromXml(Context context) {
339 return (Folder) LayoutInflater.from(context).inflate(R.layout.user_folder, null);
340 }
341
342 /**
343 * This method is intended to make the UserFolder to be visually identical in size and position
344 * to its associated FolderIcon. This allows for a seamless transition into the expanded state.
345 */
346 private void positionAndSizeAsIcon() {
Adam Cohen3e8f8112011-07-02 18:03:00 -0700347 if (!(getParent() instanceof DragLayer)) return;
Adam Cohendf2cc412011-04-27 16:56:57 -0700348
Adam Cohen8e776a62011-06-28 18:10:06 -0700349 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
Adam Cohendf2cc412011-04-27 16:56:57 -0700350
Adam Cohen2801caf2011-05-13 20:57:39 -0700351 if (mMode == PARTIAL_GROW) {
352 setScaleX(0.8f);
353 setScaleY(0.8f);
354 setAlpha(0f);
355 } else {
Adam Cohen3e8f8112011-07-02 18:03:00 -0700356 mLauncher.getDragLayer().getDescendantRectRelativeToSelf(mFolderIcon, mIconRect);
357 lp.width = mIconRect.width();
358 lp.height = mIconRect.height();
359 lp.x = mIconRect.left;
360 lp.y = mIconRect.top;
Adam Cohen2801caf2011-05-13 20:57:39 -0700361 mContent.setAlpha(0);
362 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700363 mState = STATE_SMALL;
364 }
365
366 public void animateOpen() {
Adam Cohen8dfcba42011-07-07 16:38:18 -0700367 if (mFirstOpen) {
368 setLayerType(LAYER_TYPE_HARDWARE, null);
369 buildLayer();
370 mFirstOpen = false;
371 }
372
Adam Cohen3e8f8112011-07-02 18:03:00 -0700373 positionAndSizeAsIcon();
374
Adam Cohen8e776a62011-06-28 18:10:06 -0700375 if (!(getParent() instanceof DragLayer)) return;
Adam Cohendf2cc412011-04-27 16:56:57 -0700376
Adam Cohen2801caf2011-05-13 20:57:39 -0700377 ObjectAnimator oa;
Adam Cohen8e776a62011-06-28 18:10:06 -0700378 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
Adam Cohendf2cc412011-04-27 16:56:57 -0700379
Adam Cohen2801caf2011-05-13 20:57:39 -0700380 centerAboutIcon();
381 if (mMode == PARTIAL_GROW) {
382 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1);
383 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
384 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
385 oa = ObjectAnimator.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
386 } else {
387 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", mNewSize.width());
388 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", mNewSize.height());
389 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", mNewSize.left);
390 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", mNewSize.top);
391 oa = ObjectAnimator.ofPropertyValuesHolder(lp, width, height, x, y);
392 oa.addUpdateListener(new AnimatorUpdateListener() {
393 public void onAnimationUpdate(ValueAnimator animation) {
394 requestLayout();
395 }
396 });
Adam Cohendf2cc412011-04-27 16:56:57 -0700397
Adam Cohen2801caf2011-05-13 20:57:39 -0700398 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1.0f);
399 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
400 alphaOa.setDuration(mExpandDuration);
401 alphaOa.setInterpolator(new AccelerateInterpolator(2.0f));
402 alphaOa.start();
403 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700404
Adam Cohen2801caf2011-05-13 20:57:39 -0700405 oa.addListener(new AnimatorListenerAdapter() {
Adam Cohendf2cc412011-04-27 16:56:57 -0700406 @Override
407 public void onAnimationStart(Animator animation) {
408 mState = STATE_ANIMATING;
409 }
410 @Override
411 public void onAnimationEnd(Animator animation) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700412 mState = STATE_OPEN;
Adam Cohen8dfcba42011-07-07 16:38:18 -0700413 setLayerType(LAYER_TYPE_NONE, null);
414 enableHardwareLayersForChildren();
Adam Cohendf2cc412011-04-27 16:56:57 -0700415 }
416 });
Adam Cohen2801caf2011-05-13 20:57:39 -0700417 oa.setDuration(mExpandDuration);
418 oa.start();
Adam Cohendf2cc412011-04-27 16:56:57 -0700419 }
420
Adam Cohen8dfcba42011-07-07 16:38:18 -0700421 void enableHardwareLayersForChildren() {
422 ArrayList<View> children = getItemsInReadingOrder();
423 for (View child: children) {
424 child.setLayerType(LAYER_TYPE_HARDWARE, null);
425 }
426 }
427
Adam Cohendf2cc412011-04-27 16:56:57 -0700428 public void animateClosed() {
Adam Cohen8e776a62011-06-28 18:10:06 -0700429 if (!(getParent() instanceof DragLayer)) return;
Adam Cohen8dfcba42011-07-07 16:38:18 -0700430 setLayerType(LAYER_TYPE_HARDWARE, null);
431 buildLayer();
Adam Cohendf2cc412011-04-27 16:56:57 -0700432
Adam Cohen2801caf2011-05-13 20:57:39 -0700433 ObjectAnimator oa;
Adam Cohen2801caf2011-05-13 20:57:39 -0700434 if (mMode == PARTIAL_GROW) {
435 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
436 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.9f);
437 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.9f);
438 oa = ObjectAnimator.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
439 } else {
Adam Cohen8e776a62011-06-28 18:10:06 -0700440 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
Adam Cohendf2cc412011-04-27 16:56:57 -0700441
Adam Cohen3e8f8112011-07-02 18:03:00 -0700442 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", mIconRect.width());
443 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", mIconRect.height());
444 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", mIconRect.left);
445 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", mIconRect.top);
Adam Cohen2801caf2011-05-13 20:57:39 -0700446 oa = ObjectAnimator.ofPropertyValuesHolder(lp, width, height, x, y);
447 oa.addUpdateListener(new AnimatorUpdateListener() {
448 public void onAnimationUpdate(ValueAnimator animation) {
449 requestLayout();
450 }
451 });
Adam Cohendf2cc412011-04-27 16:56:57 -0700452
Adam Cohen2801caf2011-05-13 20:57:39 -0700453 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0f);
454 ObjectAnimator alphaOa = ObjectAnimator.ofPropertyValuesHolder(mContent, alpha);
455 alphaOa.setDuration(mExpandDuration);
456 alphaOa.setInterpolator(new DecelerateInterpolator(2.0f));
457 alphaOa.start();
458 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700459
Adam Cohen2801caf2011-05-13 20:57:39 -0700460 oa.addListener(new AnimatorListenerAdapter() {
Adam Cohendf2cc412011-04-27 16:56:57 -0700461 @Override
462 public void onAnimationEnd(Animator animation) {
Adam Cohen76fc0852011-06-17 13:26:23 -0700463 onClose();
Adam Cohen2801caf2011-05-13 20:57:39 -0700464 onCloseComplete();
Adam Cohen2801caf2011-05-13 20:57:39 -0700465 mState = STATE_SMALL;
Adam Cohendf2cc412011-04-27 16:56:57 -0700466 }
467 @Override
468 public void onAnimationStart(Animator animation) {
469 mState = STATE_ANIMATING;
470 }
471 });
Adam Cohen2801caf2011-05-13 20:57:39 -0700472 oa.setDuration(mExpandDuration);
473 oa.start();
Adam Cohendf2cc412011-04-27 16:56:57 -0700474 }
475
476 void notifyDataSetChanged() {
477 // recreate all the children if the data set changes under us. We may want to do this more
478 // intelligently (ie just removing the views that should no longer exist)
479 mContent.removeAllViewsInLayout();
480 bind(mInfo);
481 }
482
Adam Cohencb3382b2011-05-24 14:07:08 -0700483 public boolean acceptDrop(DragObject d) {
484 final ItemInfo item = (ItemInfo) d.dragInfo;
Adam Cohendf2cc412011-04-27 16:56:57 -0700485 final int itemType = item.itemType;
Adam Cohen2801caf2011-05-13 20:57:39 -0700486 return ((itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION ||
487 itemType == LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT) &&
488 !isFull());
Adam Cohendf2cc412011-04-27 16:56:57 -0700489 }
490
Adam Cohendf2cc412011-04-27 16:56:57 -0700491 protected boolean findAndSetEmptyCells(ShortcutInfo item) {
492 int[] emptyCell = new int[2];
493 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) {
494 item.cellX = emptyCell[0];
495 item.cellY = emptyCell[1];
Adam Cohendf2cc412011-04-27 16:56:57 -0700496 return true;
497 } else {
498 return false;
499 }
500 }
501
Adam Cohenc508b2d2011-06-28 14:41:44 -0700502 protected boolean createAndAddShortcut(ShortcutInfo item) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700503 final TextView textView =
Adam Cohene87b9242011-06-29 14:01:26 -0700504 (TextView) mInflater.inflate(R.layout.application, this, false);
Adam Cohendf2cc412011-04-27 16:56:57 -0700505 textView.setCompoundDrawablesWithIntrinsicBounds(null,
506 new FastBitmapDrawable(item.getIcon(mIconCache)), null, null);
507 textView.setText(item.title);
508 textView.setTag(item);
509
510 textView.setOnClickListener(this);
511 textView.setOnLongClickListener(this);
512
Adam Cohenc508b2d2011-06-28 14:41:44 -0700513 // We need to check here to verify that the given item's location isn't already occupied
514 // by another item. If it is, we need to find the next available slot and assign
515 // it that position. This is an issue when upgrading from the old Folders implementation
516 // which could contain an unlimited number of items.
517 if (mContent.getChildAt(item.cellX, item.cellY) != null) {
518 if (!findAndSetEmptyCells(item)) {
519 return false;
520 }
521 }
522
Adam Cohendf2cc412011-04-27 16:56:57 -0700523 CellLayout.LayoutParams lp =
524 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
525 boolean insert = false;
526 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);
Adam Cohenc508b2d2011-06-28 14:41:44 -0700527 return true;
Adam Cohendf2cc412011-04-27 16:56:57 -0700528 }
529
Adam Cohencb3382b2011-05-24 14:07:08 -0700530 public void onDragEnter(DragObject d) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700531 mPreviousTargetCell[0] = -1;
532 mPreviousTargetCell[1] = -1;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700533 mOnExitAlarm.cancelAlarm();
534 }
535
536 OnAlarmListener mReorderAlarmListener = new OnAlarmListener() {
537 public void onAlarm(Alarm alarm) {
538 realTimeReorder(mEmptyCell, mTargetCell);
539 }
540 };
541
542 boolean readingOrderGreaterThan(int[] v1, int[] v2) {
543 if (v1[1] > v2[1] || (v1[1] == v2[1] && v1[0] > v2[0])) {
544 return true;
545 } else {
546 return false;
547 }
548 }
549
550 private void realTimeReorder(int[] empty, int[] target) {
551 boolean wrap;
552 int startX;
553 int endX;
554 int startY;
Adam Cohen76fc0852011-06-17 13:26:23 -0700555 int delay = 0;
556 float delayAmount = 30;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700557 if (readingOrderGreaterThan(target, empty)) {
558 wrap = empty[0] >= mContent.getCountX() - 1;
559 startY = wrap ? empty[1] + 1 : empty[1];
560 for (int y = startY; y <= target[1]; y++) {
561 startX = y == empty[1] ? empty[0] + 1 : 0;
562 endX = y < target[1] ? mContent.getCountX() - 1 : target[0];
563 for (int x = startX; x <= endX; x++) {
564 View v = mContent.getChildAt(x,y);
565 if (mContent.animateChildToPosition(v, empty[0], empty[1],
Adam Cohen76fc0852011-06-17 13:26:23 -0700566 REORDER_ANIMATION_DURATION, delay)) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700567 empty[0] = x;
568 empty[1] = y;
Adam Cohen76fc0852011-06-17 13:26:23 -0700569 delay += delayAmount;
570 delayAmount *= 0.9;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700571 }
572 }
573 }
574 } else {
575 wrap = empty[0] == 0;
576 startY = wrap ? empty[1] - 1 : empty[1];
577 for (int y = startY; y >= target[1]; y--) {
578 startX = y == empty[1] ? empty[0] - 1 : mContent.getCountX() - 1;
579 endX = y > target[1] ? 0 : target[0];
580 for (int x = startX; x >= endX; x--) {
581 View v = mContent.getChildAt(x,y);
582 if (mContent.animateChildToPosition(v, empty[0], empty[1],
Adam Cohen76fc0852011-06-17 13:26:23 -0700583 REORDER_ANIMATION_DURATION, delay)) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700584 empty[0] = x;
585 empty[1] = y;
Adam Cohen76fc0852011-06-17 13:26:23 -0700586 delay += delayAmount;
587 delayAmount *= 0.9;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700588 }
589 }
590 }
591 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700592 }
593
Adam Cohencb3382b2011-05-24 14:07:08 -0700594 public void onDragOver(DragObject d) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700595 float[] r = getDragViewVisualCenter(d.x, d.y, d.xOffset, d.yOffset, d.dragView, null);
596 mTargetCell = mContent.findNearestArea((int) r[0], (int) r[1], 1, 1, mTargetCell);
597
598 if (mTargetCell[0] != mPreviousTargetCell[0] || mTargetCell[1] != mPreviousTargetCell[1]) {
599 mReorderAlarm.cancelAlarm();
600 mReorderAlarm.setOnAlarmListener(mReorderAlarmListener);
601 mReorderAlarm.setAlarm(150);
602 mPreviousTargetCell[0] = mTargetCell[0];
603 mPreviousTargetCell[1] = mTargetCell[1];
604 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700605 }
606
Adam Cohenbfbfd262011-06-13 16:55:12 -0700607 // This is used to compute the visual center of the dragView. The idea is that
608 // the visual center represents the user's interpretation of where the item is, and hence
609 // is the appropriate point to use when determining drop location.
610 private float[] getDragViewVisualCenter(int x, int y, int xOffset, int yOffset,
611 DragView dragView, float[] recycle) {
612 float res[];
613 if (recycle == null) {
614 res = new float[2];
615 } else {
616 res = recycle;
617 }
618
619 // These represent the visual top and left of drag view if a dragRect was provided.
620 // If a dragRect was not provided, then they correspond to the actual view left and
621 // top, as the dragRect is in that case taken to be the entire dragView.
622 // R.dimen.dragViewOffsetY.
623 int left = x - xOffset;
624 int top = y - yOffset;
625
626 // In order to find the visual center, we shift by half the dragRect
627 res[0] = left + dragView.getDragRegion().width() / 2;
628 res[1] = top + dragView.getDragRegion().height() / 2;
629
630 return res;
631 }
632
633 OnAlarmListener mOnExitAlarmListener = new OnAlarmListener() {
634 public void onAlarm(Alarm alarm) {
Adam Cohen3e8f8112011-07-02 18:03:00 -0700635 completeDragExit();
Adam Cohenbfbfd262011-06-13 16:55:12 -0700636 }
637 };
638
Adam Cohen95bb8002011-07-03 23:40:28 -0700639 public void completeDragExit() {
Adam Cohen3e8f8112011-07-02 18:03:00 -0700640 mLauncher.closeFolder();
641 mCurrentDragInfo = null;
642 mCurrentDragView = null;
643 mSuppressOnAdd = false;
644 mRearrangeOnClose = true;
645 }
646
Adam Cohencb3382b2011-05-24 14:07:08 -0700647 public void onDragExit(DragObject d) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700648 // We only close the folder if this is a true drag exit, ie. not because a drop
649 // has occurred above the folder.
650 if (!d.dragComplete) {
651 mOnExitAlarm.setOnAlarmListener(mOnExitAlarmListener);
652 mOnExitAlarm.setAlarm(ON_EXIT_CLOSE_DELAY);
653 }
654 mReorderAlarm.cancelAlarm();
Adam Cohen2801caf2011-05-13 20:57:39 -0700655 }
656
Adam Cohenc0dcf592011-06-01 15:30:43 -0700657 public void onDropCompleted(View target, DragObject d, boolean success) {
Adam Cohenbfbfd262011-06-13 16:55:12 -0700658 mCurrentDragInfo = null;
659 mCurrentDragView = null;
660 mSuppressOnAdd = false;
Adam Cohen76078c42011-06-09 15:06:52 -0700661 if (!success) {
662 if (d.dragView != null) {
663 if (target instanceof CellLayout) {
664 // TODO: we should animate the item back to the folder in this case
665 }
666 }
Adam Cohenbfbfd262011-06-13 16:55:12 -0700667 // TODO: if the drag fails, we need to re-add the item
Adam Cohen3e8f8112011-07-02 18:03:00 -0700668 } else {
669 if (target != this) {
670 mOnExitAlarm.cancelAlarm();
671 completeDragExit();
672 }
Adam Cohen76078c42011-06-09 15:06:52 -0700673 }
Adam Cohendf2cc412011-04-27 16:56:57 -0700674 }
675
676 public boolean isDropEnabled() {
677 return true;
678 }
679
Adam Cohencb3382b2011-05-24 14:07:08 -0700680 public DropTarget getDropTargetDelegate(DragObject d) {
Adam Cohendf2cc412011-04-27 16:56:57 -0700681 return null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800682 }
Adam Cohena9cf38f2011-05-02 15:36:58 -0700683
Adam Cohen2801caf2011-05-13 20:57:39 -0700684 private void setupContentDimension(int count) {
685 ArrayList<View> list = getItemsInReadingOrder();
686
687 int countX = mContent.getCountX();
688 int countY = mContent.getCountY();
Adam Cohen7c693212011-05-18 15:26:57 -0700689 boolean done = false;
Adam Cohen2801caf2011-05-13 20:57:39 -0700690
Adam Cohen7c693212011-05-18 15:26:57 -0700691 while (!done) {
692 int oldCountX = countX;
693 int oldCountY = countY;
694 if (countX * countY < count) {
695 // Current grid is too small, expand it
696 if (countX <= countY && countX < mMaxCountX) {
697 countX++;
698 } else if (countY < mMaxCountY) {
699 countY++;
700 }
701 if (countY == 0) countY++;
702 } else if ((countY - 1) * countX >= count && countY >= countX) {
703 countY = Math.max(0, countY - 1);
704 } else if ((countX - 1) * countY >= count) {
705 countX = Math.max(0, countX - 1);
Adam Cohen2801caf2011-05-13 20:57:39 -0700706 }
Adam Cohen7c693212011-05-18 15:26:57 -0700707 done = countX == oldCountX && countY == oldCountY;
Adam Cohen2801caf2011-05-13 20:57:39 -0700708 }
Adam Cohen7c693212011-05-18 15:26:57 -0700709 mContent.setGridSize(countX, countY);
Adam Cohen2801caf2011-05-13 20:57:39 -0700710 arrangeChildren(list);
711 }
712
713 public boolean isFull() {
714 return getItemCount() >= mMaxCountX * mMaxCountY;
715 }
716
717 private void centerAboutIcon() {
Adam Cohen8e776a62011-06-28 18:10:06 -0700718 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
Adam Cohen2801caf2011-05-13 20:57:39 -0700719
720 int width = getPaddingLeft() + getPaddingRight() + mContent.getDesiredWidth();
Adam Cohen76fc0852011-06-17 13:26:23 -0700721 // Technically there is no padding at the bottom, but we add space equal to the padding
722 // and have to account for that here.
723 int height = getPaddingTop() + mContent.getDesiredHeight() + mFolderNameHeight;
Adam Cohen8e776a62011-06-28 18:10:06 -0700724 DragLayer parent = (DragLayer) mLauncher.findViewById(R.id.drag_layer);
Adam Cohen2801caf2011-05-13 20:57:39 -0700725
Adam Cohen8e776a62011-06-28 18:10:06 -0700726 parent.getDescendantRectRelativeToSelf(mFolderIcon, mTempRect);
727
728 int centerX = mTempRect.centerX();
729 int centerY = mTempRect.centerY();
Adam Cohen2801caf2011-05-13 20:57:39 -0700730 int centeredLeft = centerX - width / 2;
731 int centeredTop = centerY - height / 2;
732
Adam Cohen2801caf2011-05-13 20:57:39 -0700733 int parentWidth = 0;
734 int parentHeight = 0;
Adam Cohen8e776a62011-06-28 18:10:06 -0700735 if (parent != null) {
736 parentWidth = parent.getMeasuredWidth();
737 parentHeight = parent.getMeasuredHeight();
Adam Cohen2801caf2011-05-13 20:57:39 -0700738 }
739
740 int left = Math.min(Math.max(0, centeredLeft), parentWidth - width);
741 int top = Math.min(Math.max(0, centeredTop), parentHeight - height);
Adam Cohen0e4857c2011-06-30 17:05:14 -0700742 if (width >= parentWidth) {
743 left = (parentWidth - width) / 2;
744 }
745 if (height >= parentHeight) {
746 top = (parentHeight - height) / 2;
747 }
Adam Cohen2801caf2011-05-13 20:57:39 -0700748
749 int folderPivotX = width / 2 + (centeredLeft - left);
750 int folderPivotY = height / 2 + (centeredTop - top);
751 setPivotX(folderPivotX);
752 setPivotY(folderPivotY);
753 int folderIconPivotX = (int) (mFolderIcon.getMeasuredWidth() *
754 (1.0f * folderPivotX / width));
755 int folderIconPivotY = (int) (mFolderIcon.getMeasuredHeight() *
756 (1.0f * folderPivotY / height));
757 mFolderIcon.setPivotX(folderIconPivotX);
758 mFolderIcon.setPivotY(folderIconPivotY);
759
760 if (mMode == PARTIAL_GROW) {
761 lp.width = width;
762 lp.height = height;
763 lp.x = left;
764 lp.y = top;
765 } else {
766 mNewSize.set(left, top, left + width, top + height);
767 }
768 }
769
770 private void setupContentForNumItems(int count) {
Adam Cohen2801caf2011-05-13 20:57:39 -0700771 setupContentDimension(count);
772
Adam Cohen8e776a62011-06-28 18:10:06 -0700773 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
Adam Cohen2801caf2011-05-13 20:57:39 -0700774 if (lp == null) {
Adam Cohen8e776a62011-06-28 18:10:06 -0700775 lp = new DragLayer.LayoutParams(0, 0);
776 lp.customPosition = true;
Adam Cohen2801caf2011-05-13 20:57:39 -0700777 setLayoutParams(lp);
778 }
779 centerAboutIcon();
780 }
781
782 private void arrangeChildren(ArrayList<View> list) {
783 int[] vacant = new int[2];
784 if (list == null) {
785 list = getItemsInReadingOrder();
786 }
787 mContent.removeAllViews();
788
789 for (int i = 0; i < list.size(); i++) {
790 View v = list.get(i);
791 mContent.getVacantCell(vacant, 1, 1);
792 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) v.getLayoutParams();
793 lp.cellX = vacant[0];
794 lp.cellY = vacant[1];
795 ItemInfo info = (ItemInfo) v.getTag();
796 info.cellX = vacant[0];
797 info.cellY = vacant[1];
798 boolean insert = false;
799 mContent.addViewToCellLayout(v, insert ? 0 : -1, (int)info.id, lp, true);
Adam Cohen7c693212011-05-18 15:26:57 -0700800 LauncherModel.addOrMoveItemInDatabase(mLauncher, info, mInfo.id, 0,
801 info.cellX, info.cellY);
Adam Cohen2801caf2011-05-13 20:57:39 -0700802 }
Adam Cohen7c693212011-05-18 15:26:57 -0700803 mItemsInvalidated = true;
Adam Cohen2801caf2011-05-13 20:57:39 -0700804 }
805
Adam Cohena9cf38f2011-05-02 15:36:58 -0700806 public int getItemCount() {
807 return mContent.getChildrenLayout().getChildCount();
808 }
809
810 public View getItemAt(int index) {
811 return mContent.getChildrenLayout().getChildAt(index);
812 }
813
Adam Cohen2801caf2011-05-13 20:57:39 -0700814 private void onCloseComplete() {
815 if (mRearrangeOnClose) {
816 setupContentForNumItems(getItemCount());
817 mRearrangeOnClose = false;
818 }
Adam Cohenafb01ee2011-06-23 15:38:03 -0700819 if (getItemCount() <= 1) {
820 replaceFolderWithFinalItem();
821 }
822 }
823
824 private void replaceFolderWithFinalItem() {
825 ItemInfo finalItem = null;
826
827 if (getItemCount() == 1) {
828 finalItem = mInfo.contents.get(0);
829 }
830
831 // Remove the folder completely
832 final CellLayout cellLayout = (CellLayout)
833 mLauncher.getWorkspace().getChildAt(mInfo.screen);
834 cellLayout.removeView(mFolderIcon);
835 if (mFolderIcon instanceof DropTarget) {
836 mDragController.removeDropTarget((DropTarget) mFolderIcon);
837 }
838 mLauncher.removeFolder(mInfo);
839
840 if (finalItem != null) {
841 LauncherModel.addOrMoveItemInDatabase(mLauncher, finalItem,
842 LauncherSettings.Favorites.CONTAINER_DESKTOP, mInfo.screen,
843 mInfo.cellX, mInfo.cellY);
844 }
Adam Cohen716b51e2011-06-30 12:09:54 -0700845 LauncherModel.deleteItemFromDatabase(mLauncher, mInfo);
Adam Cohenafb01ee2011-06-23 15:38:03 -0700846
847 // Add the last remaining child to the workspace in place of the folder
848 if (finalItem != null) {
849 View child = mLauncher.createShortcut(R.layout.application, cellLayout,
850 (ShortcutInfo) finalItem);
851
852 mLauncher.getWorkspace().addInScreen(child, mInfo.screen, mInfo.cellX, mInfo.cellY,
853 mInfo.spanX, mInfo.spanY);
854 }
Adam Cohen2801caf2011-05-13 20:57:39 -0700855 }
856
Adam Cohenbfbfd262011-06-13 16:55:12 -0700857 public void onDrop(DragObject d) {
858 ShortcutInfo item;
859 if (d.dragInfo instanceof ApplicationInfo) {
860 // Came from all apps -- make a copy
861 item = ((ApplicationInfo) d.dragInfo).makeShortcut();
862 item.spanX = 1;
863 item.spanY = 1;
864 } else {
865 item = (ShortcutInfo) d.dragInfo;
866 }
867 // Dragged from self onto self
868 if (item == mCurrentDragInfo) {
869 ShortcutInfo si = (ShortcutInfo) mCurrentDragView.getTag();
870 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) mCurrentDragView.getLayoutParams();
871 si.cellX = lp.cellX = mEmptyCell[0];
872 si.cellX = lp.cellY = mEmptyCell[1];
873 mContent.addViewToCellLayout(mCurrentDragView, -1, (int)item.id, lp, true);
Adam Cohen716b51e2011-06-30 12:09:54 -0700874 mLauncher.getDragLayer().animateViewIntoPosition(d.dragView, mCurrentDragView);
Adam Cohene9166b22011-07-08 17:11:11 -0700875 mItemsInvalidated = true;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700876 setupContentDimension(getItemCount());
Adam Cohen716b51e2011-06-30 12:09:54 -0700877 mSuppressOnAdd = true;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700878 }
879 mInfo.add(item);
880 }
881
882 public void onAdd(ShortcutInfo item) {
883 mItemsInvalidated = true;
884 if (mSuppressOnAdd) return;
885 if (!findAndSetEmptyCells(item)) {
886 // The current layout is full, can we expand it?
887 setupContentForNumItems(getItemCount() + 1);
888 findAndSetEmptyCells(item);
889 }
890 createAndAddShortcut(item);
891 LauncherModel.addOrMoveItemInDatabase(
892 mLauncher, item, mInfo.id, 0, item.cellX, item.cellY);
893 }
894
Adam Cohena9cf38f2011-05-02 15:36:58 -0700895 public void onRemove(ShortcutInfo item) {
Adam Cohen7c693212011-05-18 15:26:57 -0700896 mItemsInvalidated = true;
Adam Cohenbfbfd262011-06-13 16:55:12 -0700897 if (item == mCurrentDragInfo) return;
Adam Cohendf1e4e82011-06-24 15:57:39 -0700898 View v = getViewForInfo(item);
Adam Cohena9cf38f2011-05-02 15:36:58 -0700899 mContent.removeView(v);
Adam Cohen2801caf2011-05-13 20:57:39 -0700900 if (mState == STATE_ANIMATING) {
901 mRearrangeOnClose = true;
902 } else {
903 setupContentForNumItems(getItemCount());
904 }
Adam Cohenafb01ee2011-06-23 15:38:03 -0700905 if (getItemCount() <= 1) {
906 replaceFolderWithFinalItem();
907 }
Adam Cohena9cf38f2011-05-02 15:36:58 -0700908 }
Adam Cohen7c693212011-05-18 15:26:57 -0700909
Adam Cohendf1e4e82011-06-24 15:57:39 -0700910 private View getViewForInfo(ShortcutInfo item) {
911 for (int j = 0; j < mContent.getCountY(); j++) {
912 for (int i = 0; i < mContent.getCountX(); i++) {
913 View v = mContent.getChildAt(i, j);
914 if (v.getTag() == item) {
915 return v;
916 }
917 }
918 }
919 return null;
920 }
921
Adam Cohen76078c42011-06-09 15:06:52 -0700922 public void onItemsChanged() {
923 }
Adam Cohen76fc0852011-06-17 13:26:23 -0700924 public void onTitleChanged(CharSequence title) {
925 }
Adam Cohen76078c42011-06-09 15:06:52 -0700926
Adam Cohen7c693212011-05-18 15:26:57 -0700927 public ArrayList<View> getItemsInReadingOrder() {
Adam Cohen76078c42011-06-09 15:06:52 -0700928 return getItemsInReadingOrder(true);
929 }
930
931 public ArrayList<View> getItemsInReadingOrder(boolean includeCurrentDragItem) {
Adam Cohen7c693212011-05-18 15:26:57 -0700932 if (mItemsInvalidated) {
933 mItemsInReadingOrder.clear();
934 for (int j = 0; j < mContent.getCountY(); j++) {
935 for (int i = 0; i < mContent.getCountX(); i++) {
936 View v = mContent.getChildAt(i, j);
937 if (v != null) {
Adam Cohen76078c42011-06-09 15:06:52 -0700938 ShortcutInfo info = (ShortcutInfo) v.getTag();
939 if (info != mCurrentDragInfo || includeCurrentDragItem) {
940 mItemsInReadingOrder.add(v);
941 }
Adam Cohen7c693212011-05-18 15:26:57 -0700942 }
943 }
944 }
945 mItemsInvalidated = false;
946 }
947 return mItemsInReadingOrder;
948 }
Adam Cohen8dfcba42011-07-07 16:38:18 -0700949
950 public void getLocationInDragLayer(int[] loc) {
951 mLauncher.getDragLayer().getLocationInDragLayer(this, loc);
952 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800953}