blob: 3c81bac8efa9ade843dcbf3575589d203667a5c9 [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;
Michael Jurkaaf442092010-06-10 17:01:57 -070020import android.content.ComponentName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.ContentValues;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022
23/**
The Android Open Source Project7376fae2009-03-11 12:11:58 -070024 * Represents a widget, which just contains an identifier.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070026class LauncherAppWidgetInfo extends ItemInfo {
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027
28 /**
Romain Guy629de3e2010-01-13 12:20:59 -080029 * Identifier for this widget when talking with
30 * {@link android.appwidget.AppWidgetManager} for updates.
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070032 int appWidgetId;
Michael Jurkaaf442092010-06-10 17:01:57 -070033 ComponentName providerName;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034
35 /**
The Android Open Source Project7376fae2009-03-11 12:11:58 -070036 * 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 -080037 * until Launcher knows it's needed.
38 */
The Android Open Source Project7376fae2009-03-11 12:11:58 -070039 AppWidgetHostView hostView = null;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040
The Android Open Source Project7376fae2009-03-11 12:11:58 -070041 LauncherAppWidgetInfo(int appWidgetId) {
42 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
43 this.appWidgetId = appWidgetId;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080044 }
45
46 @Override
47 void onAddToDatabase(ContentValues values) {
48 super.onAddToDatabase(values);
The Android Open Source Project7376fae2009-03-11 12:11:58 -070049 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080050 }
51
52 @Override
53 public String toString() {
Daniel Sandler8802e962010-05-26 16:28:16 -040054 return "AppWidget(id=" + Integer.toString(appWidgetId) + ")";
The Android Open Source Project31dd5032009-03-03 19:32:27 -080055 }
Joe Onorato9c1289c2009-08-17 11:03:03 -040056
57
58 @Override
59 void unbind() {
60 super.unbind();
61 hostView = null;
62 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -080063}