2009-03-03 19:32:27 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-07-30 13:37:37 -07:00
|
|
|
package com.android.launcher2;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2009-03-11 12:11:58 -07:00
|
|
|
import android.appwidget.AppWidgetHostView;
|
2010-06-10 17:01:57 -07:00
|
|
|
import android.content.ComponentName;
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.content.ContentValues;
|
|
|
|
|
|
|
|
|
|
/**
|
2010-07-12 14:25:18 -07:00
|
|
|
* Represents a widget (either instantiated or about to be) in the Launcher.
|
2009-03-03 19:32:27 -08:00
|
|
|
*/
|
2009-03-11 12:11:58 -07:00
|
|
|
class LauncherAppWidgetInfo extends ItemInfo {
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-07-12 14:25:18 -07:00
|
|
|
/**
|
|
|
|
|
* Indicates that the widget hasn't been instantiated yet.
|
|
|
|
|
*/
|
|
|
|
|
static final int NO_ID = -1;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
/**
|
2010-01-13 12:20:59 -08:00
|
|
|
* Identifier for this widget when talking with
|
|
|
|
|
* {@link android.appwidget.AppWidgetManager} for updates.
|
2009-03-03 19:32:27 -08:00
|
|
|
*/
|
2010-07-12 14:25:18 -07:00
|
|
|
int appWidgetId = NO_ID;
|
|
|
|
|
|
2010-06-10 17:01:57 -07:00
|
|
|
ComponentName providerName;
|
2010-11-03 13:25:16 -07:00
|
|
|
|
2010-07-12 14:25:18 -07:00
|
|
|
// TODO: Are these necessary here?
|
|
|
|
|
int minWidth = -1;
|
|
|
|
|
int minHeight = -1;
|
|
|
|
|
|
2012-05-15 13:43:57 -07:00
|
|
|
private boolean mHasNotifiedInitialWidgetSizeChanged;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
/**
|
2009-03-11 12:11:58 -07:00
|
|
|
* View that holds this widget after it's been created. This view isn't created
|
2009-03-03 19:32:27 -08:00
|
|
|
* until Launcher knows it's needed.
|
|
|
|
|
*/
|
2009-03-11 12:11:58 -07:00
|
|
|
AppWidgetHostView hostView = null;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2012-04-27 15:12:38 -07:00
|
|
|
LauncherAppWidgetInfo(int appWidgetId, ComponentName providerName) {
|
2010-07-12 14:25:18 -07:00
|
|
|
itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
|
2012-04-27 15:12:38 -07:00
|
|
|
this.appWidgetId = appWidgetId;
|
2010-07-12 14:25:18 -07:00
|
|
|
this.providerName = providerName;
|
|
|
|
|
|
|
|
|
|
// Since the widget isn't instantiated yet, we don't know these values. Set them to -1
|
|
|
|
|
// to indicate that they should be calculated based on the layout and minWidth/minHeight
|
|
|
|
|
spanX = -1;
|
|
|
|
|
spanY = -1;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
@Override
|
|
|
|
|
void onAddToDatabase(ContentValues values) {
|
|
|
|
|
super.onAddToDatabase(values);
|
2009-03-11 12:11:58 -07:00
|
|
|
values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
|
|
|
|
|
2012-05-15 13:43:57 -07:00
|
|
|
/**
|
|
|
|
|
* When we bind the widget, we should notify the widget that the size has changed if we have not
|
|
|
|
|
* done so already (only really for default workspace widgets).
|
|
|
|
|
*/
|
|
|
|
|
void onBindAppWidget(Launcher launcher) {
|
|
|
|
|
if (!mHasNotifiedInitialWidgetSizeChanged) {
|
|
|
|
|
notifyWidgetSizeChanged(launcher);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Trigger an update callback to the widget to notify it that its size has changed.
|
|
|
|
|
*/
|
|
|
|
|
void notifyWidgetSizeChanged(Launcher launcher) {
|
|
|
|
|
AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
|
|
|
|
|
mHasNotifiedInitialWidgetSizeChanged = true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
2010-05-26 16:28:16 -04:00
|
|
|
return "AppWidget(id=" + Integer.toString(appWidgetId) + ")";
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
2009-08-17 11:03:03 -04:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
void unbind() {
|
|
|
|
|
super.unbind();
|
|
|
|
|
hostView = null;
|
|
|
|
|
}
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|