blob: cd4643461f762be4f9eec68ad48ac00eaec32234 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
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
Joe Onoratoa5902522009-07-30 13:37:37 -070017package com.android.launcher2;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
The Android Open Source Project7376fae2009-03-11 12:11:58 -070019import android.appwidget.AppWidgetHostView;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080020import android.content.ContentValues;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021
22/**
The Android Open Source Project7376fae2009-03-11 12:11:58 -070023 * Represents a widget, which just contains an identifier.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070025class LauncherAppWidgetInfo extends ItemInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026
27 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -070028 * Identifier for this widget when talking with {@link AppWidgetManager} for updates.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070030 int appWidgetId;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031
32 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -070033 * View that holds this widget after it's been created. This view isn't created
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034 * until Launcher knows it's needed.
35 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070036 AppWidgetHostView hostView = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037
The Android Open Source Project7376fae2009-03-11 12:11:58 -070038 LauncherAppWidgetInfo(int appWidgetId) {
39 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
40 this.appWidgetId = appWidgetId;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041 }
42
43 @Override
44 void onAddToDatabase(ContentValues values) {
45 super.onAddToDatabase(values);
The Android Open Source Project7376fae2009-03-11 12:11:58 -070046 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047 }
48
49 @Override
50 public String toString() {
The Android Open Source Project7376fae2009-03-11 12:11:58 -070051 return Integer.toString(appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080052 }
53}