Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -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 | |
Joe Onorato | 79de0c5 | 2010-05-26 17:03:26 -0400 | [diff] [blame] | 17 | package com.android.systemui.statusbar; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 18 | |
| 19 | import android.os.Handler; |
Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 20 | import android.os.IBinder; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 21 | import android.os.Message; |
Jorim Jaggi | 24bec7c | 2015-02-04 12:40:14 +0100 | [diff] [blame] | 22 | import android.util.Pair; |
John Spurlock | de84f0e | 2013-06-12 12:41:00 -0400 | [diff] [blame] | 23 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 24 | import com.android.internal.statusbar.IStatusBar; |
| 25 | import com.android.internal.statusbar.StatusBarIcon; |
| 26 | import com.android.internal.statusbar.StatusBarIconList; |
| 27 | |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 28 | /** |
| 29 | * This class takes the functions from IStatusBar that come in on |
| 30 | * binder pool threads and posts messages to get them onto the main |
| 31 | * thread, and calls onto Callbacks. It also takes care of |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 32 | * coalescing these calls so they don't stack up. For the calls |
| 33 | * are coalesced, note that they are all idempotent. |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 34 | */ |
Joe Onorato | 808182d | 2010-07-09 18:52:06 -0400 | [diff] [blame] | 35 | public class CommandQueue extends IStatusBar.Stub { |
Daniel Sandler | 1d4d30a | 2011-04-28 12:35:29 -0400 | [diff] [blame] | 36 | private static final int INDEX_MASK = 0xffff; |
| 37 | private static final int MSG_SHIFT = 16; |
| 38 | private static final int MSG_MASK = 0xffff << MSG_SHIFT; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 39 | |
Daniel Sandler | 1d4d30a | 2011-04-28 12:35:29 -0400 | [diff] [blame] | 40 | private static final int OP_SET_ICON = 1; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 41 | private static final int OP_REMOVE_ICON = 2; |
| 42 | |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 43 | private static final int MSG_ICON = 1 << MSG_SHIFT; |
Christoph Studer | e71fefc | 2014-06-24 16:16:49 +0200 | [diff] [blame] | 44 | private static final int MSG_DISABLE = 2 << MSG_SHIFT; |
| 45 | private static final int MSG_EXPAND_NOTIFICATIONS = 3 << MSG_SHIFT; |
| 46 | private static final int MSG_COLLAPSE_PANELS = 4 << MSG_SHIFT; |
| 47 | private static final int MSG_EXPAND_SETTINGS = 5 << MSG_SHIFT; |
| 48 | private static final int MSG_SET_SYSTEMUI_VISIBILITY = 6 << MSG_SHIFT; |
| 49 | private static final int MSG_TOP_APP_WINDOW_CHANGED = 7 << MSG_SHIFT; |
| 50 | private static final int MSG_SHOW_IME_BUTTON = 8 << MSG_SHIFT; |
Michael Wright | 665366a | 2014-08-07 15:44:40 -0700 | [diff] [blame] | 51 | private static final int MSG_TOGGLE_RECENT_APPS = 9 << MSG_SHIFT; |
| 52 | private static final int MSG_PRELOAD_RECENT_APPS = 10 << MSG_SHIFT; |
| 53 | private static final int MSG_CANCEL_PRELOAD_RECENT_APPS = 11 << MSG_SHIFT; |
| 54 | private static final int MSG_SET_WINDOW_STATE = 12 << MSG_SHIFT; |
| 55 | private static final int MSG_SHOW_RECENT_APPS = 13 << MSG_SHIFT; |
| 56 | private static final int MSG_HIDE_RECENT_APPS = 14 << MSG_SHIFT; |
| 57 | private static final int MSG_BUZZ_BEEP_BLINKED = 15 << MSG_SHIFT; |
| 58 | private static final int MSG_NOTIFICATION_LIGHT_OFF = 16 << MSG_SHIFT; |
| 59 | private static final int MSG_NOTIFICATION_LIGHT_PULSE = 17 << MSG_SHIFT; |
Jason Monk | 5565cb4 | 2014-09-12 10:59:21 -0400 | [diff] [blame] | 60 | private static final int MSG_SHOW_SCREEN_PIN_REQUEST = 18 << MSG_SHIFT; |
Jorim Jaggi | 24bec7c | 2015-02-04 12:40:14 +0100 | [diff] [blame] | 61 | private static final int MSG_APP_TRANSITION_PENDING = 19 << MSG_SHIFT; |
| 62 | private static final int MSG_APP_TRANSITION_CANCELLED = 20 << MSG_SHIFT; |
| 63 | private static final int MSG_APP_TRANSITION_STARTING = 21 << MSG_SHIFT; |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 64 | |
Jim Miller | 9a720f5 | 2012-05-30 03:19:43 -0700 | [diff] [blame] | 65 | public static final int FLAG_EXCLUDE_NONE = 0; |
| 66 | public static final int FLAG_EXCLUDE_SEARCH_PANEL = 1 << 0; |
| 67 | public static final int FLAG_EXCLUDE_RECENTS_PANEL = 1 << 1; |
| 68 | public static final int FLAG_EXCLUDE_NOTIFICATION_PANEL = 1 << 2; |
| 69 | public static final int FLAG_EXCLUDE_INPUT_METHODS_PANEL = 1 << 3; |
| 70 | public static final int FLAG_EXCLUDE_COMPAT_MODE_PANEL = 1 << 4; |
| 71 | |
Jason Monk | b605fecd | 2014-05-02 17:04:10 -0400 | [diff] [blame] | 72 | private static final String SHOW_IME_SWITCHER_KEY = "showImeSwitcherKey"; |
| 73 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 74 | private StatusBarIconList mList; |
| 75 | private Callbacks mCallbacks; |
| 76 | private Handler mHandler = new H(); |
| 77 | |
| 78 | /** |
| 79 | * These methods are called back on the main thread. |
| 80 | */ |
| 81 | public interface Callbacks { |
| 82 | public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); |
| 83 | public void updateIcon(String slot, int index, int viewIndex, |
| 84 | StatusBarIcon old, StatusBarIcon icon); |
| 85 | public void removeIcon(String slot, int index, int viewIndex); |
Benjamin Franz | cde0a2a | 2015-04-23 17:19:48 +0100 | [diff] [blame] | 86 | public void disable(int state1, int state2, boolean animate); |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 87 | public void animateExpandNotificationsPanel(); |
| 88 | public void animateCollapsePanels(int flags); |
| 89 | public void animateExpandSettingsPanel(); |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 90 | public void setSystemUiVisibility(int vis, int mask); |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 91 | public void topAppWindowChanged(boolean visible); |
Jason Monk | b605fecd | 2014-05-02 17:04:10 -0400 | [diff] [blame] | 92 | public void setImeWindowStatus(IBinder token, int vis, int backDisposition, |
| 93 | boolean showImeSwitcher); |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 94 | public void showRecentApps(boolean triggeredFromAltTab); |
Winson Chung | cdcd487 | 2014-08-05 18:00:13 -0700 | [diff] [blame] | 95 | public void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey); |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 96 | public void toggleRecentApps(); |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 97 | public void preloadRecentApps(); |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 98 | public void cancelPreloadRecentApps(); |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 99 | public void setWindowState(int window, int state); |
John Spurlock | cad5768 | 2014-07-26 17:09:56 -0400 | [diff] [blame] | 100 | public void buzzBeepBlinked(); |
John Spurlock | cb566aa | 2014-08-03 22:58:28 -0400 | [diff] [blame] | 101 | public void notificationLightOff(); |
| 102 | public void notificationLightPulse(int argb, int onMillis, int offMillis); |
Jason Monk | 5565cb4 | 2014-09-12 10:59:21 -0400 | [diff] [blame] | 103 | public void showScreenPinningRequest(); |
Jorim Jaggi | 24bec7c | 2015-02-04 12:40:14 +0100 | [diff] [blame] | 104 | public void appTransitionPending(); |
| 105 | public void appTransitionCancelled(); |
| 106 | public void appTransitionStarting(long startTime, long duration); |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | public CommandQueue(Callbacks callbacks, StatusBarIconList list) { |
| 110 | mCallbacks = callbacks; |
| 111 | mList = list; |
| 112 | } |
| 113 | |
| 114 | public void setIcon(int index, StatusBarIcon icon) { |
| 115 | synchronized (mList) { |
| 116 | int what = MSG_ICON | index; |
| 117 | mHandler.removeMessages(what); |
| 118 | mHandler.obtainMessage(what, OP_SET_ICON, 0, icon.clone()).sendToTarget(); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | public void removeIcon(int index) { |
| 123 | synchronized (mList) { |
| 124 | int what = MSG_ICON | index; |
| 125 | mHandler.removeMessages(what); |
| 126 | mHandler.obtainMessage(what, OP_REMOVE_ICON, 0, null).sendToTarget(); |
| 127 | } |
| 128 | } |
| 129 | |
Benjamin Franz | cde0a2a | 2015-04-23 17:19:48 +0100 | [diff] [blame] | 130 | public void disable(int state1, int state2) { |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 131 | synchronized (mList) { |
| 132 | mHandler.removeMessages(MSG_DISABLE); |
Benjamin Franz | cde0a2a | 2015-04-23 17:19:48 +0100 | [diff] [blame] | 133 | mHandler.obtainMessage(MSG_DISABLE, state1, state2, null).sendToTarget(); |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 134 | } |
| 135 | } |
| 136 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 137 | public void animateExpandNotificationsPanel() { |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 138 | synchronized (mList) { |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 139 | mHandler.removeMessages(MSG_EXPAND_NOTIFICATIONS); |
| 140 | mHandler.sendEmptyMessage(MSG_EXPAND_NOTIFICATIONS); |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 141 | } |
| 142 | } |
| 143 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 144 | public void animateCollapsePanels() { |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 145 | synchronized (mList) { |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 146 | mHandler.removeMessages(MSG_COLLAPSE_PANELS); |
| 147 | mHandler.sendEmptyMessage(MSG_COLLAPSE_PANELS); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 148 | } |
Jim Miller | 9a720f5 | 2012-05-30 03:19:43 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 151 | public void animateExpandSettingsPanel() { |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 152 | synchronized (mList) { |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 153 | mHandler.removeMessages(MSG_EXPAND_SETTINGS); |
| 154 | mHandler.sendEmptyMessage(MSG_EXPAND_SETTINGS); |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 155 | } |
| 156 | } |
| 157 | |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 158 | public void setSystemUiVisibility(int vis, int mask) { |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 159 | synchronized (mList) { |
Selim Cinek | 4a4a2bddc | 2015-05-07 12:50:19 -0700 | [diff] [blame^] | 160 | // Don't coalesce these, since it might have one time flags set such as |
| 161 | // STATUS_BAR_UNHIDE which might get lost. |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 162 | mHandler.obtainMessage(MSG_SET_SYSTEMUI_VISIBILITY, vis, mask, null).sendToTarget(); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 166 | public void topAppWindowChanged(boolean menuVisible) { |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 167 | synchronized (mList) { |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 168 | mHandler.removeMessages(MSG_TOP_APP_WINDOW_CHANGED); |
| 169 | mHandler.obtainMessage(MSG_TOP_APP_WINDOW_CHANGED, menuVisible ? 1 : 0, 0, |
| 170 | null).sendToTarget(); |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | |
Jason Monk | b605fecd | 2014-05-02 17:04:10 -0400 | [diff] [blame] | 174 | public void setImeWindowStatus(IBinder token, int vis, int backDisposition, |
| 175 | boolean showImeSwitcher) { |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 176 | synchronized (mList) { |
| 177 | mHandler.removeMessages(MSG_SHOW_IME_BUTTON); |
Jason Monk | b605fecd | 2014-05-02 17:04:10 -0400 | [diff] [blame] | 178 | Message m = mHandler.obtainMessage(MSG_SHOW_IME_BUTTON, vis, backDisposition, token); |
| 179 | m.getData().putBoolean(SHOW_IME_SWITCHER_KEY, showImeSwitcher); |
| 180 | m.sendToTarget(); |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 184 | public void showRecentApps(boolean triggeredFromAltTab) { |
| 185 | synchronized (mList) { |
| 186 | mHandler.removeMessages(MSG_SHOW_RECENT_APPS); |
| 187 | mHandler.obtainMessage(MSG_SHOW_RECENT_APPS, |
| 188 | triggeredFromAltTab ? 1 : 0, 0, null).sendToTarget(); |
| 189 | } |
| 190 | } |
| 191 | |
Winson Chung | cdcd487 | 2014-08-05 18:00:13 -0700 | [diff] [blame] | 192 | public void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey) { |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 193 | synchronized (mList) { |
| 194 | mHandler.removeMessages(MSG_HIDE_RECENT_APPS); |
Winson Chung | 6cb485f | 2014-05-19 10:30:43 -0700 | [diff] [blame] | 195 | mHandler.obtainMessage(MSG_HIDE_RECENT_APPS, |
Winson Chung | cdcd487 | 2014-08-05 18:00:13 -0700 | [diff] [blame] | 196 | triggeredFromAltTab ? 1 : 0, triggeredFromHomeKey ? 1 : 0, |
| 197 | null).sendToTarget(); |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 201 | public void toggleRecentApps() { |
| 202 | synchronized (mList) { |
| 203 | mHandler.removeMessages(MSG_TOGGLE_RECENT_APPS); |
| 204 | mHandler.obtainMessage(MSG_TOGGLE_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 205 | } |
| 206 | } |
| 207 | |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 208 | public void preloadRecentApps() { |
| 209 | synchronized (mList) { |
| 210 | mHandler.removeMessages(MSG_PRELOAD_RECENT_APPS); |
| 211 | mHandler.obtainMessage(MSG_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | public void cancelPreloadRecentApps() { |
| 216 | synchronized (mList) { |
| 217 | mHandler.removeMessages(MSG_CANCEL_PRELOAD_RECENT_APPS); |
| 218 | mHandler.obtainMessage(MSG_CANCEL_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 219 | } |
| 220 | } |
| 221 | |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 222 | public void setWindowState(int window, int state) { |
| 223 | synchronized (mList) { |
John Spurlock | 5b9145b | 2013-08-20 15:13:47 -0400 | [diff] [blame] | 224 | // don't coalesce these |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 225 | mHandler.obtainMessage(MSG_SET_WINDOW_STATE, window, state, null).sendToTarget(); |
| 226 | } |
| 227 | } |
| 228 | |
John Spurlock | cad5768 | 2014-07-26 17:09:56 -0400 | [diff] [blame] | 229 | public void buzzBeepBlinked() { |
| 230 | synchronized (mList) { |
| 231 | mHandler.removeMessages(MSG_BUZZ_BEEP_BLINKED); |
| 232 | mHandler.sendEmptyMessage(MSG_BUZZ_BEEP_BLINKED); |
| 233 | } |
| 234 | } |
Jorim Jaggi | 380ecb8 | 2014-03-14 17:25:20 +0100 | [diff] [blame] | 235 | |
John Spurlock | cb566aa | 2014-08-03 22:58:28 -0400 | [diff] [blame] | 236 | public void notificationLightOff() { |
| 237 | synchronized (mList) { |
| 238 | mHandler.sendEmptyMessage(MSG_NOTIFICATION_LIGHT_OFF); |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | public void notificationLightPulse(int argb, int onMillis, int offMillis) { |
| 243 | synchronized (mList) { |
| 244 | mHandler.obtainMessage(MSG_NOTIFICATION_LIGHT_PULSE, onMillis, offMillis, argb) |
| 245 | .sendToTarget(); |
| 246 | } |
| 247 | } |
| 248 | |
Jason Monk | 5565cb4 | 2014-09-12 10:59:21 -0400 | [diff] [blame] | 249 | public void showScreenPinningRequest() { |
| 250 | synchronized (mList) { |
| 251 | mHandler.sendEmptyMessage(MSG_SHOW_SCREEN_PIN_REQUEST); |
| 252 | } |
| 253 | } |
| 254 | |
Jorim Jaggi | 24bec7c | 2015-02-04 12:40:14 +0100 | [diff] [blame] | 255 | public void appTransitionPending() { |
| 256 | synchronized (mList) { |
| 257 | mHandler.removeMessages(MSG_APP_TRANSITION_PENDING); |
| 258 | mHandler.sendEmptyMessage(MSG_APP_TRANSITION_PENDING); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | public void appTransitionCancelled() { |
| 263 | synchronized (mList) { |
| 264 | mHandler.removeMessages(MSG_APP_TRANSITION_PENDING); |
| 265 | mHandler.sendEmptyMessage(MSG_APP_TRANSITION_PENDING); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | public void appTransitionStarting(long startTime, long duration) { |
| 270 | synchronized (mList) { |
| 271 | mHandler.removeMessages(MSG_APP_TRANSITION_STARTING); |
| 272 | mHandler.obtainMessage(MSG_APP_TRANSITION_STARTING, Pair.create(startTime, duration)) |
| 273 | .sendToTarget(); |
| 274 | } |
| 275 | } |
| 276 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 277 | private final class H extends Handler { |
| 278 | public void handleMessage(Message msg) { |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 279 | final int what = msg.what & MSG_MASK; |
Joe Onorato | 66d7d01 | 2010-05-14 10:05:10 -0700 | [diff] [blame] | 280 | switch (what) { |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 281 | case MSG_ICON: { |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 282 | final int index = msg.what & INDEX_MASK; |
| 283 | final int viewIndex = mList.getViewIndex(index); |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 284 | switch (msg.arg1) { |
| 285 | case OP_SET_ICON: { |
| 286 | StatusBarIcon icon = (StatusBarIcon)msg.obj; |
| 287 | StatusBarIcon old = mList.getIcon(index); |
| 288 | if (old == null) { |
| 289 | mList.setIcon(index, icon); |
| 290 | mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon); |
| 291 | } else { |
| 292 | mList.setIcon(index, icon); |
| 293 | mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex, |
| 294 | old, icon); |
| 295 | } |
| 296 | break; |
| 297 | } |
| 298 | case OP_REMOVE_ICON: |
Joe Onorato | 795f284 | 2010-09-27 11:34:46 -0700 | [diff] [blame] | 299 | if (mList.getIcon(index) != null) { |
| 300 | mList.removeIcon(index); |
| 301 | mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex); |
| 302 | } |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 303 | break; |
| 304 | } |
| 305 | break; |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 306 | } |
| 307 | case MSG_DISABLE: |
Benjamin Franz | cde0a2a | 2015-04-23 17:19:48 +0100 | [diff] [blame] | 308 | mCallbacks.disable(msg.arg1, msg.arg2, true /* animate */); |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 309 | break; |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 310 | case MSG_EXPAND_NOTIFICATIONS: |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 311 | mCallbacks.animateExpandNotificationsPanel(); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 312 | break; |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 313 | case MSG_COLLAPSE_PANELS: |
| 314 | mCallbacks.animateCollapsePanels(0); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 315 | break; |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 316 | case MSG_EXPAND_SETTINGS: |
| 317 | mCallbacks.animateExpandSettingsPanel(); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 318 | break; |
Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 319 | case MSG_SET_SYSTEMUI_VISIBILITY: |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 320 | mCallbacks.setSystemUiVisibility(msg.arg1, msg.arg2); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 321 | break; |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 322 | case MSG_TOP_APP_WINDOW_CHANGED: |
| 323 | mCallbacks.topAppWindowChanged(msg.arg1 != 0); |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 324 | break; |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 325 | case MSG_SHOW_IME_BUTTON: |
Jason Monk | b605fecd | 2014-05-02 17:04:10 -0400 | [diff] [blame] | 326 | mCallbacks.setImeWindowStatus((IBinder) msg.obj, msg.arg1, msg.arg2, |
| 327 | msg.getData().getBoolean(SHOW_IME_SWITCHER_KEY, false)); |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 328 | break; |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 329 | case MSG_SHOW_RECENT_APPS: |
| 330 | mCallbacks.showRecentApps(msg.arg1 != 0); |
| 331 | break; |
| 332 | case MSG_HIDE_RECENT_APPS: |
Winson Chung | cdcd487 | 2014-08-05 18:00:13 -0700 | [diff] [blame] | 333 | mCallbacks.hideRecentApps(msg.arg1 != 0, msg.arg2 != 0); |
Winson Chung | 1e8d71b | 2014-05-16 17:05:22 -0700 | [diff] [blame] | 334 | break; |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 335 | case MSG_TOGGLE_RECENT_APPS: |
| 336 | mCallbacks.toggleRecentApps(); |
| 337 | break; |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 338 | case MSG_PRELOAD_RECENT_APPS: |
| 339 | mCallbacks.preloadRecentApps(); |
| 340 | break; |
| 341 | case MSG_CANCEL_PRELOAD_RECENT_APPS: |
| 342 | mCallbacks.cancelPreloadRecentApps(); |
| 343 | break; |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 344 | case MSG_SET_WINDOW_STATE: |
| 345 | mCallbacks.setWindowState(msg.arg1, msg.arg2); |
| 346 | break; |
John Spurlock | cad5768 | 2014-07-26 17:09:56 -0400 | [diff] [blame] | 347 | case MSG_BUZZ_BEEP_BLINKED: |
| 348 | mCallbacks.buzzBeepBlinked(); |
| 349 | break; |
John Spurlock | cb566aa | 2014-08-03 22:58:28 -0400 | [diff] [blame] | 350 | case MSG_NOTIFICATION_LIGHT_OFF: |
| 351 | mCallbacks.notificationLightOff(); |
| 352 | break; |
| 353 | case MSG_NOTIFICATION_LIGHT_PULSE: |
| 354 | mCallbacks.notificationLightPulse((Integer) msg.obj, msg.arg1, msg.arg2); |
| 355 | break; |
Jason Monk | 5565cb4 | 2014-09-12 10:59:21 -0400 | [diff] [blame] | 356 | case MSG_SHOW_SCREEN_PIN_REQUEST: |
| 357 | mCallbacks.showScreenPinningRequest(); |
| 358 | break; |
Jorim Jaggi | 24bec7c | 2015-02-04 12:40:14 +0100 | [diff] [blame] | 359 | case MSG_APP_TRANSITION_PENDING: |
| 360 | mCallbacks.appTransitionPending(); |
| 361 | break; |
| 362 | case MSG_APP_TRANSITION_CANCELLED: |
| 363 | mCallbacks.appTransitionCancelled(); |
| 364 | break; |
| 365 | case MSG_APP_TRANSITION_STARTING: |
| 366 | Pair<Long, Long> data = (Pair<Long, Long>) msg.obj; |
| 367 | mCallbacks.appTransitionStarting(data.first, data.second); |
| 368 | break; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 369 | } |
| 370 | } |
| 371 | } |
| 372 | } |
| 373 | |