blob: f7e0ea488ecc105f7147cdea15f590d3bdad28f7 [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
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019import android.content.ContentValues;
Kenny Guyed131872014-04-30 03:02:21 +010020import android.content.Context;
Winson Chungbe365162012-05-07 10:34:12 -070021import android.content.Intent;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080023
Kenny Guyed131872014-04-30 03:02:21 +010024import com.android.launcher3.compat.UserHandleCompat;
25import com.android.launcher3.compat.UserManagerCompat;
26
Sameer Padalabe3e4102014-04-21 19:36:14 -070027import java.util.Arrays;
Winson Chungbe365162012-05-07 10:34:12 -070028
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029/**
30 * Represents an item in the launcher.
31 */
Mathew Inwood72fbec12013-11-19 15:45:07 +000032public class ItemInfo {
Kenny Guyed131872014-04-30 03:02:21 +010033
34 /**
35 * Intent extra to store the profile. Format: UserHandle
36 */
37 static final String EXTRA_PROFILE = "profile";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038
Hyunyoung Song3f471442015-04-08 19:01:34 -070039 public static final int NO_ID = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040
41 /**
42 * The id in the settings database for this item
43 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070044 public long id = NO_ID;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045
46 /**
47 * One of {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
48 * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
Adam Cohendf2cc412011-04-27 16:56:57 -070049 * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER}, or
The Android Open Source Project7376fae2009-03-11 12:11:58 -070050 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET}.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070052 public int itemType;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080053
54 /**
55 * The id of the container that holds this item. For the desktop, this will be
56 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. For the all applications folder it
57 * will be {@link #NO_ID} (since it is not stored in the settings DB). For user folders
58 * it will be the id of the folder.
59 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070060 public long container = NO_ID;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061
62 /**
63 * Iindicates the screen in which the shortcut appears.
64 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070065 public long screenId = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066
67 /**
68 * Indicates the X position of the associated cell.
69 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070070 public int cellX = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080071
72 /**
73 * Indicates the Y position of the associated cell.
74 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070075 public int cellY = -1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076
77 /**
78 * Indicates the X cell span.
79 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070080 public int spanX = 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080081
82 /**
83 * Indicates the Y cell span.
84 */
Hyunyoung Song3f471442015-04-08 19:01:34 -070085 public int spanY = 1;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080086
Romain Guy73b979d2009-06-09 12:57:21 -070087 /**
Adam Cohend41fbf52012-02-16 23:53:59 -080088 * Indicates the minimum X cell span.
89 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070090 public int minSpanX = 1;
Adam Cohend41fbf52012-02-16 23:53:59 -080091
92 /**
93 * Indicates the minimum Y cell span.
94 */
Anjali Koppale3e646e2014-03-17 09:34:39 -070095 public int minSpanY = 1;
Adam Cohen487f7dd2012-06-28 18:12:10 -070096
Adam Cohend41fbf52012-02-16 23:53:59 -080097 /**
Sunny Goyal08f72612015-01-05 13:41:43 -080098 * Indicates the position in an ordered list.
99 */
100 public int rank = 0;
101
102 /**
Adam Cohen487f7dd2012-06-28 18:12:10 -0700103 * Indicates that this item needs to be updated in the db
Romain Guy73b979d2009-06-09 12:57:21 -0700104 */
Anjali Koppale3e646e2014-03-17 09:34:39 -0700105 public boolean requiresDbUpdate = false;
Adam Cohen487f7dd2012-06-28 18:12:10 -0700106
107 /**
108 * Title of the item
109 */
Hyunyoung Song3f471442015-04-08 19:01:34 -0700110 public CharSequence title;
Romain Guy73b979d2009-06-09 12:57:21 -0700111
Patrick Dubroybbaa75c2011-03-08 18:47:40 -0800112 /**
Kenny Guyc2bd8102014-06-30 12:30:31 +0100113 * Content description of the item.
114 */
Hyunyoung Song3f471442015-04-08 19:01:34 -0700115 public CharSequence contentDescription;
Kenny Guyc2bd8102014-06-30 12:30:31 +0100116
117 /**
Patrick Dubroybbaa75c2011-03-08 18:47:40 -0800118 * The position of the item in a drag-and-drop operation.
119 */
Hyunyoung Song3f471442015-04-08 19:01:34 -0700120 public int[] dropPos = null;
Patrick Dubroybbaa75c2011-03-08 18:47:40 -0800121
Hyunyoung Song3f471442015-04-08 19:01:34 -0700122 public UserHandleCompat user;
Kenny Guyed131872014-04-30 03:02:21 +0100123
Hyunyoung Song3f471442015-04-08 19:01:34 -0700124 public ItemInfo() {
Kenny Guyc2bd8102014-06-30 12:30:31 +0100125 user = UserHandleCompat.myUserHandle();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800126 }
127
Michael Jurkac9d95c52011-08-29 14:03:34 -0700128 ItemInfo(ItemInfo info) {
Sunny Goyalff572272014-07-23 13:58:07 -0700129 copyFrom(info);
130 // tempdebug:
131 LauncherModel.checkItemInfo(this);
132 }
133
134 public void copyFrom(ItemInfo info) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800135 id = info.id;
136 cellX = info.cellX;
137 cellY = info.cellY;
138 spanX = info.spanX;
139 spanY = info.spanY;
Sunny Goyal08f72612015-01-05 13:41:43 -0800140 rank = info.rank;
Adam Cohendcd297f2013-06-18 13:13:40 -0700141 screenId = info.screenId;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142 itemType = info.itemType;
143 container = info.container;
Kenny Guyed131872014-04-30 03:02:21 +0100144 user = info.user;
Kenny Guyc2bd8102014-06-30 12:30:31 +0100145 contentDescription = info.contentDescription;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800146 }
147
Anjali Koppale3e646e2014-03-17 09:34:39 -0700148 public Intent getIntent() {
Winson Chung997a9232013-07-24 15:33:46 -0700149 throw new RuntimeException("Unexpected Intent");
150 }
151
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 /**
153 * Write the fields of this item to the DB
154 *
Kenny Guyed131872014-04-30 03:02:21 +0100155 * @param context A context object to use for getting UserManagerCompat
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 * @param values
157 */
Kenny Guyed131872014-04-30 03:02:21 +0100158
159 void onAddToDatabase(Context context, ContentValues values) {
Romain Guy73b979d2009-06-09 12:57:21 -0700160 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType);
Adam Cohen487f7dd2012-06-28 18:12:10 -0700161 values.put(LauncherSettings.Favorites.CONTAINER, container);
Adam Cohendcd297f2013-06-18 13:13:40 -0700162 values.put(LauncherSettings.Favorites.SCREEN, screenId);
Adam Cohen487f7dd2012-06-28 18:12:10 -0700163 values.put(LauncherSettings.Favorites.CELLX, cellX);
164 values.put(LauncherSettings.Favorites.CELLY, cellY);
165 values.put(LauncherSettings.Favorites.SPANX, spanX);
166 values.put(LauncherSettings.Favorites.SPANY, spanY);
Sunny Goyal08f72612015-01-05 13:41:43 -0800167 values.put(LauncherSettings.Favorites.RANK, rank);
Kenny Guyed131872014-04-30 03:02:21 +0100168 long serialNumber = UserManagerCompat.getInstance(context).getSerialNumberForUser(user);
169 values.put(LauncherSettings.Favorites.PROFILE_ID, serialNumber);
Adrian Roos8f3f6832014-04-28 15:45:52 +0200170
171 if (screenId == Workspace.EXTRA_EMPTY_SCREEN_ID) {
172 // We should never persist an item on the extra empty screen.
173 throw new RuntimeException("Screen id should not be EXTRA_EMPTY_SCREEN_ID");
174 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 }
176
177 static void writeBitmap(ContentValues values, Bitmap bitmap) {
178 if (bitmap != null) {
Sunny Goyal5b0e6692015-03-19 14:31:19 -0700179 byte[] data = Utilities.flattenBitmap(bitmap);
Joe Onorato0589f0f2010-02-08 13:44:00 -0800180 values.put(LauncherSettings.Favorites.ICON, data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 }
182 }
Adam Cohen4eac29a2011-07-11 17:53:37 -0700183
184 /**
185 * It is very important that sub-classes implement this if they contain any references
186 * to the activity (anything in the view hierarchy etc.). If not, leaks can result since
187 * ItemInfo objects persist across rotation and can hence leak by holding stale references
188 * to the old view hierarchy / activity.
189 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400190 void unbind() {
191 }
Daniel Sandler8802e962010-05-26 16:28:16 -0400192
193 @Override
194 public String toString() {
Winson Chungc07918d2011-07-01 15:35:26 -0700195 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
Adam Cohendcd297f2013-06-18 13:13:40 -0700196 + " screen=" + screenId + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
Kenny Guyed131872014-04-30 03:02:21 +0100197 + " spanY=" + spanY + " dropPos=" + Arrays.toString(dropPos)
198 + " user=" + user + ")";
Daniel Sandler8802e962010-05-26 16:28:16 -0400199 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200}