Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | |
| 19 | import android.content.Context; |
| 20 | import android.content.res.Configuration; |
| 21 | import android.content.res.TypedArray; |
| 22 | import android.util.AttributeSet; |
| 23 | import android.view.LayoutInflater; |
| 24 | import android.view.View; |
| 25 | import android.widget.FrameLayout; |
| 26 | |
| 27 | import com.android.launcher.R; |
| 28 | |
| 29 | public class Hotseat extends FrameLayout { |
Winson Chung | f30ad5f | 2011-08-08 10:55:42 -0700 | [diff] [blame^] | 30 | private static final String TAG = "Hotseat"; |
| 31 | private static final int sAllAppsButtonRank = 2; // In the middle of the dock |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 32 | |
| 33 | private Launcher mLauncher; |
| 34 | private CellLayout mContent; |
| 35 | |
| 36 | private int mCellCountX; |
| 37 | private int mCellCountY; |
| 38 | private boolean mIsLandscape; |
| 39 | |
| 40 | public Hotseat(Context context) { |
| 41 | this(context, null); |
| 42 | } |
| 43 | |
| 44 | public Hotseat(Context context, AttributeSet attrs) { |
| 45 | this(context, attrs, 0); |
| 46 | } |
| 47 | |
| 48 | public Hotseat(Context context, AttributeSet attrs, int defStyle) { |
| 49 | super(context, attrs, defStyle); |
| 50 | |
| 51 | TypedArray a = context.obtainStyledAttributes(attrs, |
| 52 | R.styleable.Hotseat, defStyle, 0); |
| 53 | mCellCountX = a.getInt(R.styleable.Hotseat_cellCountX, -1); |
| 54 | mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1); |
| 55 | mIsLandscape = context.getResources().getConfiguration().orientation == |
| 56 | Configuration.ORIENTATION_LANDSCAPE; |
| 57 | } |
| 58 | |
| 59 | public void setup(Launcher launcher) { |
| 60 | mLauncher = launcher; |
Winson Chung | 4d279d9 | 2011-07-21 11:46:32 -0700 | [diff] [blame] | 61 | setOnKeyListener(new HotseatBubbleTextViewKeyEventListener()); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | CellLayout getLayout() { |
| 65 | return mContent; |
| 66 | } |
| 67 | |
| 68 | /* Get the orientation invariant order of the item in the hotseat for persistence. */ |
| 69 | int getOrderInHotseat(int x, int y) { |
| 70 | return mIsLandscape ? (mContent.getCountY() - y - 1) : x; |
| 71 | } |
| 72 | /* Get the orientation specific coordinates given an invariant order in the hotseat. */ |
| 73 | int getCellXFromOrder(int rank) { |
| 74 | return mIsLandscape ? 0 : rank; |
| 75 | } |
| 76 | int getCellYFromOrder(int rank) { |
| 77 | return mIsLandscape ? (mContent.getCountY() - (rank + 1)) : 0; |
| 78 | } |
Winson Chung | f30ad5f | 2011-08-08 10:55:42 -0700 | [diff] [blame^] | 79 | public static boolean isAllAppsButtonRank(int rank) { |
| 80 | return rank == sAllAppsButtonRank; |
| 81 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 82 | |
| 83 | @Override |
| 84 | protected void onFinishInflate() { |
| 85 | super.onFinishInflate(); |
| 86 | if (mCellCountX < 0) mCellCountX = LauncherModel.getCellCountX(); |
| 87 | if (mCellCountY < 0) mCellCountY = LauncherModel.getCellCountY(); |
| 88 | mContent = (CellLayout) findViewById(R.id.layout); |
| 89 | mContent.setGridSize(mCellCountX, mCellCountY); |
| 90 | |
| 91 | resetLayout(); |
| 92 | } |
| 93 | |
| 94 | void resetLayout() { |
| 95 | mContent.removeAllViewsInLayout(); |
| 96 | |
| 97 | // Add the Apps button |
| 98 | Context context = getContext(); |
| 99 | LayoutInflater inflater = LayoutInflater.from(context); |
| 100 | BubbleTextView allAppsButton = (BubbleTextView) |
| 101 | inflater.inflate(R.layout.application, mContent, false); |
| 102 | allAppsButton.setCompoundDrawablesWithIntrinsicBounds(null, |
| 103 | context.getResources().getDrawable(R.drawable.apps_hotseat_button), null, null); |
Winson Chung | 4d279d9 | 2011-07-21 11:46:32 -0700 | [diff] [blame] | 104 | // allAppsButton.setText(context.getString(R.string.all_apps_button_label)); |
| 105 | allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label)); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 106 | allAppsButton.setOnClickListener(new View.OnClickListener() { |
| 107 | @Override |
| 108 | public void onClick(android.view.View v) { |
Winson Chung | 4d279d9 | 2011-07-21 11:46:32 -0700 | [diff] [blame] | 109 | if (mLauncher != null) { |
| 110 | mLauncher.showAllApps(true); |
| 111 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 112 | } |
| 113 | }); |
| 114 | |
| 115 | // Note: We do this to ensure that the hotseat is always laid out in the orientation of |
| 116 | // the hotseat in order regardless of which orientation they were added |
Winson Chung | f30ad5f | 2011-08-08 10:55:42 -0700 | [diff] [blame^] | 117 | int x = getCellXFromOrder(sAllAppsButtonRank); |
| 118 | int y = getCellYFromOrder(sAllAppsButtonRank); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 119 | mContent.addViewToCellLayout(allAppsButton, -1, 0, new CellLayout.LayoutParams(x,y,1,1), |
| 120 | true); |
| 121 | } |
| 122 | } |