| /* |
| * Copyright (C) 2008 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. |
| */ |
| |
| package com.android.launcher2; |
| |
| import android.content.BroadcastReceiver; |
| import android.content.ComponentName; |
| import android.content.Context; |
| import android.content.Intent; |
| import android.content.pm.ActivityInfo; |
| import android.content.pm.PackageManager; |
| import android.widget.Toast; |
| |
| import com.android.launcher.R; |
| |
| import java.util.ArrayList; |
| |
| public class InstallShortcutReceiver extends BroadcastReceiver { |
| public static final String ACTION_INSTALL_SHORTCUT = |
| "com.android.launcher.action.INSTALL_SHORTCUT"; |
| |
| // A mime-type representing shortcut data |
| public static final String SHORTCUT_MIMETYPE = |
| "com.android.launcher/shortcut"; |
| |
| private final int[] mCoordinates = new int[2]; |
| |
| public void onReceive(Context context, Intent data) { |
| if (!ACTION_INSTALL_SHORTCUT.equals(data.getAction())) { |
| return; |
| } |
| |
| final int screen = Launcher.getScreen(); |
| final Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT); |
| if (intent == null) { |
| return; |
| } |
| // This name is only used for comparisons and notifications, so fall back to activity name |
| // if not supplied |
| String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME); |
| if (name == null) { |
| try { |
| PackageManager pm = context.getPackageManager(); |
| ActivityInfo info = pm.getActivityInfo(intent.getComponent(), 0); |
| name = info.loadLabel(pm).toString(); |
| } catch (PackageManager.NameNotFoundException nnfe) { |
| return; |
| } |
| } |
| |
| final ArrayList<ItemInfo> items = LauncherModel.getItemsInLocalCoordinates(context); |
| final boolean shortcutExists = LauncherModel.shortcutExists(context, name, intent); |
| final String[] errorMsgs = {""}; |
| |
| if (!installShortcut(context, data, items, name, intent, screen, shortcutExists, |
| errorMsgs)) { |
| // The target screen is full, let's try the other screens |
| for (int i = 0; i < Launcher.SCREEN_COUNT; i++) { |
| if (i != screen && installShortcut(context, data, items, name, intent, i, |
| shortcutExists, errorMsgs)) break; |
| } |
| } |
| |
| if (!errorMsgs[0].isEmpty()) { |
| Toast.makeText(context, errorMsgs[0], |
| Toast.LENGTH_SHORT).show(); |
| } |
| } |
| |
| private boolean installShortcut(Context context, Intent data, ArrayList<ItemInfo> items, |
| String name, Intent intent, int screen, boolean shortcutExists, String[] errorMsgs) { |
| if (findEmptyCell(context, items, mCoordinates, screen)) { |
| if (intent != null) { |
| if (intent.getAction() == null) { |
| intent.setAction(Intent.ACTION_VIEW); |
| } |
| |
| // By default, we allow for duplicate entries (located in |
| // different places) |
| boolean duplicate = data.getBooleanExtra(Launcher.EXTRA_SHORTCUT_DUPLICATE, true); |
| if (duplicate || !shortcutExists) { |
| LauncherApplication app = (LauncherApplication) context.getApplicationContext(); |
| ShortcutInfo info = app.getModel().addShortcut(context, data, |
| LauncherSettings.Favorites.CONTAINER_DESKTOP, screen, mCoordinates[0], |
| mCoordinates[1], true); |
| if (info != null) { |
| errorMsgs[0] = context.getString(R.string.shortcut_installed, name); |
| } else { |
| return false; |
| } |
| } else { |
| errorMsgs[0] = context.getString(R.string.shortcut_duplicate, name); |
| } |
| |
| return true; |
| } |
| } else { |
| errorMsgs[0] = context.getString(R.string.out_of_space); |
| } |
| |
| return false; |
| } |
| |
| private static boolean findEmptyCell(Context context, ArrayList<ItemInfo> items, int[] xy, |
| int screen) { |
| final int xCount = LauncherModel.getCellCountX(); |
| final int yCount = LauncherModel.getCellCountY(); |
| boolean[][] occupied = new boolean[xCount][yCount]; |
| |
| ItemInfo item = null; |
| int cellX, cellY, spanX, spanY; |
| for (int i = 0; i < items.size(); ++i) { |
| item = items.get(i); |
| if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) { |
| if (item.screen == screen) { |
| cellX = item.cellX; |
| cellY = item.cellY; |
| spanX = item.spanX; |
| spanY = item.spanY; |
| for (int x = cellX; x < cellX + spanX && x < xCount; x++) { |
| for (int y = cellY; y < cellY + spanY && y < yCount; y++) { |
| occupied[x][y] = true; |
| } |
| } |
| } |
| } |
| } |
| |
| return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied); |
| } |
| } |