blob: 5c05f163f66dba2deabddaf4c0150bd2dd5d2a8f [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
19import java.io.ByteArrayOutputStream;
20import java.io.IOException;
21
22import android.content.ContentValues;
23import android.graphics.Bitmap;
24import android.util.Log;
25
26/**
27 * Represents an item in the launcher.
28 */
29class ItemInfo {
30
31 static final int NO_ID = -1;
32
33 /**
34 * The id in the settings database for this item
35 */
36 long id = NO_ID;
37
38 /**
39 * One of {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
40 * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
Adam Cohendf2cc412011-04-27 16:56:57 -070041 * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER}, or
The Android Open Source Project7376fae2009-03-11 12:11:58 -070042 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET}.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043 */
44 int itemType;
45
46 /**
47 * The id of the container that holds this item. For the desktop, this will be
48 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. For the all applications folder it
49 * will be {@link #NO_ID} (since it is not stored in the settings DB). For user folders
50 * it will be the id of the folder.
51 */
52 long container = NO_ID;
53
54 /**
55 * Iindicates the screen in which the shortcut appears.
56 */
57 int screen = -1;
58
59 /**
60 * Indicates the X position of the associated cell.
61 */
62 int cellX = -1;
63
64 /**
65 * Indicates the Y position of the associated cell.
66 */
67 int cellY = -1;
68
69 /**
70 * Indicates the X cell span.
71 */
72 int spanX = 1;
73
74 /**
75 * Indicates the Y cell span.
76 */
77 int spanY = 1;
78
Romain Guy73b979d2009-06-09 12:57:21 -070079 /**
80 * Indicates whether the item is a gesture.
81 */
82 boolean isGesture = false;
83
Patrick Dubroybbaa75c2011-03-08 18:47:40 -080084 /**
85 * The position of the item in a drag-and-drop operation.
86 */
87 int[] dropPos = null;
88
Michael Jurkab60fd0e2011-08-29 14:02:47 -070089 /*
90 * A tag to know where this item was created
91 */
92 String whereCreated;
93
94 ItemInfo(String whereCreated) {
95 this.whereCreated = whereCreated;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080096 }
97
Michael Jurkab60fd0e2011-08-29 14:02:47 -070098 ItemInfo(ItemInfo info, String whereCreated) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080099 id = info.id;
100 cellX = info.cellX;
101 cellY = info.cellY;
102 spanX = info.spanX;
103 spanY = info.spanY;
104 screen = info.screen;
105 itemType = info.itemType;
106 container = info.container;
Michael Jurkab60fd0e2011-08-29 14:02:47 -0700107 this.whereCreated = whereCreated;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108 }
109
110 /**
111 * Write the fields of this item to the DB
112 *
113 * @param values
114 */
115 void onAddToDatabase(ContentValues values) {
Romain Guy73b979d2009-06-09 12:57:21 -0700116 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType);
117 if (!isGesture) {
118 values.put(LauncherSettings.Favorites.CONTAINER, container);
119 values.put(LauncherSettings.Favorites.SCREEN, screen);
120 values.put(LauncherSettings.Favorites.CELLX, cellX);
121 values.put(LauncherSettings.Favorites.CELLY, cellY);
122 values.put(LauncherSettings.Favorites.SPANX, spanX);
123 values.put(LauncherSettings.Favorites.SPANY, spanY);
124 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800125 }
126
Winson Chungaafa03c2010-06-11 17:34:16 -0700127 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
128 values.put(LauncherSettings.Favorites.CELLX, cellX);
129 values.put(LauncherSettings.Favorites.CELLY, cellY);
130 }
131
Joe Onorato0589f0f2010-02-08 13:44:00 -0800132 static byte[] flattenBitmap(Bitmap bitmap) {
133 // Try go guesstimate how much space the icon will take when serialized
134 // to avoid unnecessary allocations/copies during the write.
135 int size = bitmap.getWidth() * bitmap.getHeight() * 4;
136 ByteArrayOutputStream out = new ByteArrayOutputStream(size);
137 try {
138 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
139 out.flush();
140 out.close();
141 return out.toByteArray();
142 } catch (IOException e) {
143 Log.w("Favorite", "Could not write icon");
144 return null;
145 }
146 }
147
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800148 static void writeBitmap(ContentValues values, Bitmap bitmap) {
149 if (bitmap != null) {
Joe Onorato0589f0f2010-02-08 13:44:00 -0800150 byte[] data = flattenBitmap(bitmap);
151 values.put(LauncherSettings.Favorites.ICON, data);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 }
153 }
Adam Cohen4eac29a2011-07-11 17:53:37 -0700154
155 /**
156 * It is very important that sub-classes implement this if they contain any references
157 * to the activity (anything in the view hierarchy etc.). If not, leaks can result since
158 * ItemInfo objects persist across rotation and can hence leak by holding stale references
159 * to the old view hierarchy / activity.
160 */
Joe Onorato9c1289c2009-08-17 11:03:03 -0400161 void unbind() {
162 }
Daniel Sandler8802e962010-05-26 16:28:16 -0400163
164 @Override
165 public String toString() {
Winson Chungc07918d2011-07-01 15:35:26 -0700166 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
167 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
168 + " spanY=" + spanY + " isGesture=" + isGesture + " dropPos=" + dropPos + ")";
Daniel Sandler8802e962010-05-26 16:28:16 -0400169 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170}