Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | |
| 17 | package com.android.launcher2; |
| 18 | |
Winson Chung | 68846fd | 2010-10-29 11:00:27 -0700 | [diff] [blame] | 19 | import android.appwidget.AppWidgetProviderInfo; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 20 | import android.content.ComponentName; |
Winson Chung | 55cef26 | 2010-10-28 14:14:18 -0700 | [diff] [blame] | 21 | import android.os.Parcelable; |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 22 | |
| 23 | /** |
| 24 | * We pass this object with a drag from the customization tray |
| 25 | */ |
| 26 | class PendingAddItemInfo extends ItemInfo { |
| 27 | /** |
| 28 | * The component that will be created. |
| 29 | */ |
| 30 | ComponentName componentName; |
Michael Jurka | 3e7c763 | 2010-10-02 16:01:03 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | class PendingAddWidgetInfo extends PendingAddItemInfo { |
| 34 | int minWidth; |
| 35 | int minHeight; |
Michael Jurka | 038f9d8 | 2011-11-03 13:50:45 -0700 | [diff] [blame^] | 36 | int previewImage; |
| 37 | int icon; |
Winson Chung | 55cef26 | 2010-10-28 14:14:18 -0700 | [diff] [blame] | 38 | |
| 39 | // Any configuration data that we want to pass to a configuration activity when |
| 40 | // starting up a widget |
Winson Chung | 68846fd | 2010-10-29 11:00:27 -0700 | [diff] [blame] | 41 | String mimeType; |
Winson Chung | 55cef26 | 2010-10-28 14:14:18 -0700 | [diff] [blame] | 42 | Parcelable configurationData; |
Winson Chung | 68846fd | 2010-10-29 11:00:27 -0700 | [diff] [blame] | 43 | |
Michael Jurka | c9d95c5 | 2011-08-29 14:03:34 -0700 | [diff] [blame] | 44 | public PendingAddWidgetInfo(AppWidgetProviderInfo i, String dataMimeType, Parcelable data) { |
Winson Chung | 68846fd | 2010-10-29 11:00:27 -0700 | [diff] [blame] | 45 | itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; |
| 46 | componentName = i.provider; |
| 47 | minWidth = i.minWidth; |
| 48 | minHeight = i.minHeight; |
Michael Jurka | 038f9d8 | 2011-11-03 13:50:45 -0700 | [diff] [blame^] | 49 | previewImage = i.previewImage; |
| 50 | icon = i.icon; |
Winson Chung | 68846fd | 2010-10-29 11:00:27 -0700 | [diff] [blame] | 51 | if (dataMimeType != null && data != null) { |
| 52 | mimeType = dataMimeType; |
| 53 | configurationData = data; |
| 54 | } |
| 55 | } |
Michael Jurka | 0280c3b | 2010-09-17 15:00:07 -0700 | [diff] [blame] | 56 | } |