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 | */ |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 36 | public static final int FLAG_ID_NOT_VALID = 1; |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 37 | |
| 38 | /** |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 39 | * Indicates that the provider is not available yet. |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 40 | */ |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 41 | public static final int FLAG_PROVIDER_NOT_READY = 2; |
| 42 | |
| 43 | /** |
| 44 | * Indicates that the widget UI is not yet ready, and user needs to set it up again. |
| 45 | */ |
| 46 | public static final int FLAG_UI_NOT_READY = 4; |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 47 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 48 | /** |
Sunny Goyal | 9448536 | 2014-09-18 16:13:58 -0700 | [diff] [blame] | 49 | * Indicates that the widget restore has started. |
| 50 | */ |
| 51 | public static final int FLAG_RESTORE_STARTED = 8; |
| 52 | |
| 53 | /** |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 54 | * Indicates that the widget has been allocated an Id. The id is still not valid, as it has |
| 55 | * not been bound yet. |
| 56 | */ |
| 57 | public static final int FLAG_ID_ALLOCATED = 16; |
| 58 | |
| 59 | /** |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 60 | * Indicates that the widget hasn't been instantiated yet. |
| 61 | */ |
| 62 | static final int NO_ID = -1; |
| 63 | |
| 64 | /** |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 65 | * Indicates that this is a locally defined widget and hence has no system allocated id. |
| 66 | */ |
| 67 | static final int CUSTOM_WIDGET_ID = -100; |
| 68 | |
| 69 | /** |
Romain Guy | 629de3e | 2010-01-13 12:20:59 -0800 | [diff] [blame] | 70 | * Identifier for this widget when talking with |
| 71 | * {@link android.appwidget.AppWidgetManager} for updates. |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 72 | */ |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 73 | int appWidgetId = NO_ID; |
| 74 | |
Sunny Goyal | 6d02c7a | 2016-05-19 12:15:39 -0700 | [diff] [blame] | 75 | public ComponentName providerName; |
Adam Cohen | ded9f8d | 2010-11-03 13:25:16 -0700 | [diff] [blame] | 76 | |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 77 | /** |
| 78 | * Indicates the restore status of the widget. |
| 79 | */ |
| 80 | int restoreStatus; |
| 81 | |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 82 | /** |
| 83 | * Indicates the installation progress of the widget provider |
| 84 | */ |
Sunny Goyal | e7b8cd9 | 2014-08-27 14:04:33 -0700 | [diff] [blame] | 85 | int installProgress = -1; |
Sunny Goyal | 0fc1be1 | 2014-08-11 17:05:23 -0700 | [diff] [blame] | 86 | |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 87 | private boolean mHasNotifiedInitialWidgetSizeChanged; |
| 88 | |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 89 | LauncherAppWidgetInfo(int appWidgetId, ComponentName providerName) { |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 90 | if (appWidgetId == CUSTOM_WIDGET_ID) { |
| 91 | itemType = LauncherSettings.Favorites.ITEM_TYPE_CUSTOM_APPWIDGET; |
| 92 | } else { |
| 93 | itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; |
| 94 | } |
| 95 | |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 96 | this.appWidgetId = appWidgetId; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 97 | this.providerName = providerName; |
| 98 | |
| 99 | // Since the widget isn't instantiated yet, we don't know these values. Set them to -1 |
| 100 | // to indicate that they should be calculated based on the layout and minWidth/minHeight |
| 101 | spanX = -1; |
| 102 | spanY = -1; |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 103 | // We only support app widgets on current user. |
| 104 | user = UserHandleCompat.myUserHandle(); |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 105 | restoreStatus = RESTORE_COMPLETED; |
Patrick Dubroy | 6569f2c | 2010-07-12 14:25:18 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 108 | public boolean isCustomWidget() { |
| 109 | return appWidgetId == CUSTOM_WIDGET_ID; |
| 110 | } |
| 111 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 112 | @Override |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 113 | void onAddToDatabase(Context context, ContentValues values) { |
| 114 | super.onAddToDatabase(context, values); |
The Android Open Source Project | 7376fae | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 115 | values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId); |
Chris Wren | d5e66bf | 2013-09-16 14:02:29 -0400 | [diff] [blame] | 116 | values.put(LauncherSettings.Favorites.APPWIDGET_PROVIDER, providerName.flattenToString()); |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 117 | values.put(LauncherSettings.Favorites.RESTORED, restoreStatus); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 120 | /** |
| 121 | * When we bind the widget, we should notify the widget that the size has changed if we have not |
| 122 | * done so already (only really for default workspace widgets). |
| 123 | */ |
Sunny Goyal | 87af0fd | 2016-05-16 14:56:02 -0700 | [diff] [blame] | 124 | void onBindAppWidget(Launcher launcher, AppWidgetHostView hostView) { |
Adam Cohen | aaa5c21 | 2012-10-05 18:14:31 -0700 | [diff] [blame] | 125 | if (!mHasNotifiedInitialWidgetSizeChanged) { |
Sunny Goyal | 25c2e3e | 2015-10-28 23:28:21 -0700 | [diff] [blame] | 126 | AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY); |
| 127 | mHasNotifiedInitialWidgetSizeChanged = true; |
Winson Chung | 211bac3 | 2012-05-15 13:43:57 -0700 | [diff] [blame] | 128 | } |
| 129 | } |
| 130 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 131 | @Override |
| 132 | public String toString() { |
Daniel Sandler | 8802e96 | 2010-05-26 16:28:16 -0400 | [diff] [blame] | 133 | return "AppWidget(id=" + Integer.toString(appWidgetId) + ")"; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 134 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 135 | |
Sunny Goyal | d478c83 | 2016-04-01 12:04:16 -0700 | [diff] [blame] | 136 | public final boolean isWidgetIdAllocated() { |
| 137 | return (restoreStatus & FLAG_ID_NOT_VALID) == 0 || |
| 138 | (restoreStatus & FLAG_ID_ALLOCATED) == FLAG_ID_ALLOCATED; |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | public final boolean hasRestoreFlag(int flag) { |
| 142 | return (restoreStatus & flag) == flag; |
Sunny Goyal | 651077b | 2014-06-30 14:15:31 -0700 | [diff] [blame] | 143 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 144 | } |