2009-03-03 19:32:27 -08:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-07-30 13:37:37 -07:00
|
|
|
package com.android.launcher2;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-06-11 17:34:16 -07:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.content.Intent;
|
2009-03-24 21:17:50 -07:00
|
|
|
import android.widget.Toast;
|
2009-03-03 19:32:27 -08:00
|
|
|
|
2010-03-04 13:03:17 -08:00
|
|
|
import com.android.launcher.R;
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
public class InstallShortcutReceiver extends BroadcastReceiver {
|
2009-06-17 10:20:34 -07:00
|
|
|
private static final String ACTION_INSTALL_SHORTCUT =
|
|
|
|
|
"com.android.launcher.action.INSTALL_SHORTCUT";
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
private final int[] mCoordinates = new int[2];
|
|
|
|
|
|
|
|
|
|
public void onReceive(Context context, Intent data) {
|
2009-06-17 10:20:34 -07:00
|
|
|
if (!ACTION_INSTALL_SHORTCUT.equals(data.getAction())) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
int screen = Launcher.getScreen();
|
|
|
|
|
|
|
|
|
|
if (!installShortcut(context, data, screen)) {
|
|
|
|
|
// 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, i)) break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean installShortcut(Context context, Intent data, int screen) {
|
2009-03-24 21:17:50 -07:00
|
|
|
String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
|
|
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
if (findEmptyCell(context, mCoordinates, screen)) {
|
|
|
|
|
CellLayout.CellInfo cell = new CellLayout.CellInfo();
|
|
|
|
|
cell.cellX = mCoordinates[0];
|
|
|
|
|
cell.cellY = mCoordinates[1];
|
|
|
|
|
cell.screen = screen;
|
|
|
|
|
|
|
|
|
|
Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
|
|
|
|
|
|
|
|
|
|
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 || !LauncherModel.shortcutExists(context, name, intent)) {
|
2010-02-08 13:44:00 -08:00
|
|
|
((LauncherApplication)context.getApplicationContext()).getModel()
|
|
|
|
|
.addShortcut(context, data, cell, true);
|
2009-03-24 21:17:50 -07:00
|
|
|
Toast.makeText(context, context.getString(R.string.shortcut_installed, name),
|
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
|
} else {
|
|
|
|
|
Toast.makeText(context, context.getString(R.string.shortcut_duplicate, name),
|
|
|
|
|
Toast.LENGTH_SHORT).show();
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
2009-03-24 21:17:50 -07:00
|
|
|
} else {
|
|
|
|
|
Toast.makeText(context, context.getString(R.string.out_of_space),
|
|
|
|
|
Toast.LENGTH_SHORT).show();
|
2009-03-03 19:32:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static boolean findEmptyCell(Context context, int[] xy, int screen) {
|
2010-07-26 22:02:18 -07:00
|
|
|
final int xCount = LauncherModel.getCellCountX();
|
|
|
|
|
final int yCount = LauncherModel.getCellCountY();
|
2009-03-03 19:32:27 -08:00
|
|
|
boolean[][] occupied = new boolean[xCount][yCount];
|
|
|
|
|
|
2010-06-11 17:34:16 -07:00
|
|
|
ArrayList<ItemInfo> items = LauncherModel.getItemsInLocalCoordinates(context);
|
|
|
|
|
ItemInfo item = null;
|
|
|
|
|
int cellX, cellY, spanX, spanY;
|
|
|
|
|
for (int i = 0; i < items.size(); ++i) {
|
|
|
|
|
item = items.get(i);
|
|
|
|
|
if (item.screen == screen) {
|
|
|
|
|
cellX = item.cellX;
|
|
|
|
|
cellY = item.cellY;
|
|
|
|
|
spanX = item.spanX;
|
|
|
|
|
spanY = item.spanY;
|
2009-03-03 19:32:27 -08:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|