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;
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.content.ContentValues;
|
|
|
|
|
|
|
|
|
|
/**
|
2009-03-11 12:11:58 -07:00
|
|
|
* Represents a widget, which just contains an identifier.
|
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-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
|
|
|
*/
|
2009-03-11 12:11:58 -07:00
|
|
|
int appWidgetId;
|
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
|
|
|
|
2009-03-11 12:11:58 -07:00
|
|
|
LauncherAppWidgetInfo(int appWidgetId) {
|
|
|
|
|
itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
|
|
|
|
|
this.appWidgetId = appWidgetId;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@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
|
|
|
}
|