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