The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 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 Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 19 | import android.appwidget.AppWidgetHostView; |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 20 | import android.content.ComponentName; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 21 | import android.content.ContentValues; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 22 | import android.content.Context; |
| 23 | |
| 24 | import com.android.launcher3.compat.UserHandleCompat; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 25 | |
| 26 | /** |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 27 | * Represents a widget (either instantiated or about to be) in the Launcher. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 28 | */ |
Anjali Koppal | 7b168a1 | 2014-03-04 17:16:11 -0800 | [diff] [blame] | 29 | public class LauncherAppWidgetInfo extends ItemInfo { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame^] | 31 | public static final int RESTORE_COMPLETED = 0; |
| 32 | |
| 33 | /** |
| 34 | * This is set during the package backup creation. |
| 35 | */ |
| 36 | public static final int RESTORE_REMAP_PENDING = 1; |
| 37 | |
| 38 | /** |
| 39 | * Widget provider is not yet installed. |
| 40 | */ |
| 41 | public static final int RESTORE_PROVIDER_PENDING = 2; |
| 42 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 43 | /** |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 44 | * Indicates that the widget hasn't been instantiated yet. |
| 45 | */ |
| 46 | static final int NO_ID = -1; |
| 47 | |
| 48 | /** |
Romain Guy | 629de3e | 2010-01-13 12:20:59 -0800 | [diff] [blame] | 49 | * Identifier for this widget when talking with |
| 50 | * {@link android.appwidget.AppWidgetManager} for updates. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 51 | */ |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 52 | int appWidgetId = NO_ID; |
| 53 | |
Michael Jurka | af44209 | 2010-06-10 17:01:57 -0700 | [diff] [blame] | 54 | ComponentName providerName; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 55 | |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 56 | // TODO: Are these necessary here? |
| 57 | int minWidth = -1; |
| 58 | int minHeight = -1; |
| 59 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame^] | 60 | /** |
| 61 | * Indicates the restore status of the widget. |
| 62 | */ |
| 63 | int restoreStatus; |
| 64 | |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 65 | private boolean mHasNotifiedInitialWidgetSizeChanged; |
| 66 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 67 | /** |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 68 | * View that holds this widget after it's been created. This view isn't created |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 69 | * until Launcher knows it's needed. |
| 70 | */ |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 71 | AppWidgetHostView hostView = null; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 72 | |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 73 | LauncherAppWidgetInfo(int appWidgetId, ComponentName providerName) { |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 74 | itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 75 | this.appWidgetId = appWidgetId; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 76 | this.providerName = providerName; |
| 77 | |
| 78 | // Since the widget isn't instantiated yet, we don't know these values. Set them to -1 |
| 79 | // to indicate that they should be calculated based on the layout and minWidth/minHeight |
| 80 | spanX = -1; |
| 81 | spanY = -1; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 82 | // We only support app widgets on current user. |
| 83 | user = UserHandleCompat.myUserHandle(); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame^] | 84 | restoreStatus = RESTORE_COMPLETED; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 85 | } |
| 86 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 87 | @Override |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 88 | void onAddToDatabase(Context context, ContentValues values) { |
| 89 | super.onAddToDatabase(context, values); |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 90 | values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId); |
Chris Wren | d5e66bf | 2013-09-16 14:02:29 -0400 | [diff] [blame] | 91 | values.put(LauncherSettings.Favorites.APPWIDGET_PROVIDER, providerName.flattenToString()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 92 | } |
| 93 | |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 94 | /** |
| 95 | * When we bind the widget, we should notify the widget that the size has changed if we have not |
| 96 | * done so already (only really for default workspace widgets). |
| 97 | */ |
| 98 | void onBindAppWidget(Launcher launcher) { |
Adam Cohen | aaa5c21 | 2012-10-05 18:14:31 -0700 | [diff] [blame] | 99 | if (!mHasNotifiedInitialWidgetSizeChanged) { |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 100 | notifyWidgetSizeChanged(launcher); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Trigger an update callback to the widget to notify it that its size has changed. |
| 106 | */ |
| 107 | void notifyWidgetSizeChanged(Launcher launcher) { |
| 108 | AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY); |
| 109 | mHasNotifiedInitialWidgetSizeChanged = true; |
| 110 | } |
| 111 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 112 | @Override |
| 113 | public String toString() { |
Daniel Sandler | 8802e96 | 2010-05-26 16:28:16 -0400 | [diff] [blame] | 114 | return "AppWidget(id=" + Integer.toString(appWidgetId) + ")"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 115 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 116 | |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 117 | @Override |
| 118 | void unbind() { |
| 119 | super.unbind(); |
| 120 | hostView = null; |
| 121 | } |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame^] | 122 | |
| 123 | public final boolean isWidgetIdValid() { |
| 124 | return restoreStatus != RESTORE_REMAP_PENDING; |
| 125 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 126 | } |