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; |
Daniel Sandler | 5feceeb | 2013-03-22 18:29:23 -0700 | [diff] [blame] | 22 | import android.service.notification.StatusBarNotification; |
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; |
| 44 | private static final int MSG_ADD_NOTIFICATION = 2 << MSG_SHIFT; |
| 45 | private static final int MSG_UPDATE_NOTIFICATION = 3 << MSG_SHIFT; |
| 46 | private static final int MSG_REMOVE_NOTIFICATION = 4 << MSG_SHIFT; |
| 47 | private static final int MSG_DISABLE = 5 << MSG_SHIFT; |
| 48 | private static final int MSG_EXPAND_NOTIFICATIONS = 6 << MSG_SHIFT; |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 49 | private static final int MSG_COLLAPSE_PANELS = 7 << MSG_SHIFT; |
| 50 | private static final int MSG_EXPAND_SETTINGS = 8 << MSG_SHIFT; |
| 51 | private static final int MSG_SET_SYSTEMUI_VISIBILITY = 9 << MSG_SHIFT; |
| 52 | private static final int MSG_TOP_APP_WINDOW_CHANGED = 10 << MSG_SHIFT; |
| 53 | private static final int MSG_SHOW_IME_BUTTON = 11 << MSG_SHIFT; |
| 54 | private static final int MSG_SET_HARD_KEYBOARD_STATUS = 12 << MSG_SHIFT; |
| 55 | private static final int MSG_TOGGLE_RECENT_APPS = 13 << MSG_SHIFT; |
| 56 | private static final int MSG_PRELOAD_RECENT_APPS = 14 << MSG_SHIFT; |
| 57 | private static final int MSG_CANCEL_PRELOAD_RECENT_APPS = 15 << MSG_SHIFT; |
| 58 | private static final int MSG_SET_NAVIGATION_ICON_HINTS = 16 << MSG_SHIFT; |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 59 | private static final int MSG_SET_WINDOW_STATE = 17 << 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 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 68 | private StatusBarIconList mList; |
| 69 | private Callbacks mCallbacks; |
| 70 | private Handler mHandler = new H(); |
| 71 | |
Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 72 | private class NotificationQueueEntry { |
| 73 | IBinder key; |
| 74 | StatusBarNotification notification; |
| 75 | } |
| 76 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 77 | /** |
| 78 | * These methods are called back on the main thread. |
| 79 | */ |
| 80 | public interface Callbacks { |
| 81 | public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); |
| 82 | public void updateIcon(String slot, int index, int viewIndex, |
| 83 | StatusBarIcon old, StatusBarIcon icon); |
| 84 | public void removeIcon(String slot, int index, int viewIndex); |
Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 85 | public void addNotification(IBinder key, StatusBarNotification notification); |
| 86 | public void updateNotification(IBinder key, StatusBarNotification notification); |
| 87 | public void removeNotification(IBinder key); |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 88 | public void disable(int state); |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 89 | public void animateExpandNotificationsPanel(); |
| 90 | public void animateCollapsePanels(int flags); |
| 91 | public void animateExpandSettingsPanel(); |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 92 | public void setSystemUiVisibility(int vis, int mask); |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 93 | public void topAppWindowChanged(boolean visible); |
Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 94 | public void setImeWindowStatus(IBinder token, int vis, int backDisposition); |
Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 95 | public void setHardKeyboardStatus(boolean available, boolean enabled); |
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(); |
Jim Miller | e898ac5 | 2012-04-06 17:10:57 -0700 | [diff] [blame] | 98 | public void showSearchPanel(); |
| 99 | public void hideSearchPanel(); |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 100 | public void cancelPreloadRecentApps(); |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 101 | public void setNavigationIconHints(int hints); |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 102 | public void setWindowState(int window, int state); |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | public CommandQueue(Callbacks callbacks, StatusBarIconList list) { |
| 106 | mCallbacks = callbacks; |
| 107 | mList = list; |
| 108 | } |
| 109 | |
| 110 | public void setIcon(int index, StatusBarIcon icon) { |
| 111 | synchronized (mList) { |
| 112 | int what = MSG_ICON | index; |
| 113 | mHandler.removeMessages(what); |
| 114 | mHandler.obtainMessage(what, OP_SET_ICON, 0, icon.clone()).sendToTarget(); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | public void removeIcon(int index) { |
| 119 | synchronized (mList) { |
| 120 | int what = MSG_ICON | index; |
| 121 | mHandler.removeMessages(what); |
| 122 | mHandler.obtainMessage(what, OP_REMOVE_ICON, 0, null).sendToTarget(); |
| 123 | } |
| 124 | } |
| 125 | |
Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 126 | public void addNotification(IBinder key, StatusBarNotification notification) { |
| 127 | synchronized (mList) { |
| 128 | NotificationQueueEntry ne = new NotificationQueueEntry(); |
| 129 | ne.key = key; |
| 130 | ne.notification = notification; |
| 131 | mHandler.obtainMessage(MSG_ADD_NOTIFICATION, 0, 0, ne).sendToTarget(); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | public void updateNotification(IBinder key, StatusBarNotification notification) { |
| 136 | synchronized (mList) { |
| 137 | NotificationQueueEntry ne = new NotificationQueueEntry(); |
| 138 | ne.key = key; |
| 139 | ne.notification = notification; |
| 140 | mHandler.obtainMessage(MSG_UPDATE_NOTIFICATION, 0, 0, ne).sendToTarget(); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | public void removeNotification(IBinder key) { |
| 145 | synchronized (mList) { |
| 146 | mHandler.obtainMessage(MSG_REMOVE_NOTIFICATION, 0, 0, key).sendToTarget(); |
| 147 | } |
| 148 | } |
| 149 | |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 150 | public void disable(int state) { |
| 151 | synchronized (mList) { |
| 152 | mHandler.removeMessages(MSG_DISABLE); |
| 153 | mHandler.obtainMessage(MSG_DISABLE, state, 0, null).sendToTarget(); |
| 154 | } |
| 155 | } |
| 156 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 157 | public void animateExpandNotificationsPanel() { |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 158 | synchronized (mList) { |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 159 | mHandler.removeMessages(MSG_EXPAND_NOTIFICATIONS); |
| 160 | mHandler.sendEmptyMessage(MSG_EXPAND_NOTIFICATIONS); |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 161 | } |
| 162 | } |
| 163 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 164 | public void animateCollapsePanels() { |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 165 | synchronized (mList) { |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 166 | mHandler.removeMessages(MSG_COLLAPSE_PANELS); |
| 167 | mHandler.sendEmptyMessage(MSG_COLLAPSE_PANELS); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 168 | } |
Jim Miller | 9a720f5 | 2012-05-30 03:19:43 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 171 | public void animateExpandSettingsPanel() { |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 172 | synchronized (mList) { |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 173 | mHandler.removeMessages(MSG_EXPAND_SETTINGS); |
| 174 | mHandler.sendEmptyMessage(MSG_EXPAND_SETTINGS); |
Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 178 | public void setSystemUiVisibility(int vis, int mask) { |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 179 | synchronized (mList) { |
Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 180 | mHandler.removeMessages(MSG_SET_SYSTEMUI_VISIBILITY); |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 181 | mHandler.obtainMessage(MSG_SET_SYSTEMUI_VISIBILITY, vis, mask, null).sendToTarget(); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 182 | } |
| 183 | } |
| 184 | |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 185 | public void topAppWindowChanged(boolean menuVisible) { |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 186 | synchronized (mList) { |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 187 | mHandler.removeMessages(MSG_TOP_APP_WINDOW_CHANGED); |
| 188 | mHandler.obtainMessage(MSG_TOP_APP_WINDOW_CHANGED, menuVisible ? 1 : 0, 0, |
| 189 | null).sendToTarget(); |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 193 | public void setImeWindowStatus(IBinder token, int vis, int backDisposition) { |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 194 | synchronized (mList) { |
| 195 | mHandler.removeMessages(MSG_SHOW_IME_BUTTON); |
Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 196 | mHandler.obtainMessage(MSG_SHOW_IME_BUTTON, vis, backDisposition, token) |
| 197 | .sendToTarget(); |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 201 | public void setHardKeyboardStatus(boolean available, boolean enabled) { |
| 202 | synchronized (mList) { |
| 203 | mHandler.removeMessages(MSG_SET_HARD_KEYBOARD_STATUS); |
| 204 | mHandler.obtainMessage(MSG_SET_HARD_KEYBOARD_STATUS, |
| 205 | available ? 1 : 0, enabled ? 1 : 0).sendToTarget(); |
| 206 | } |
| 207 | } |
| 208 | |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 209 | public void toggleRecentApps() { |
| 210 | synchronized (mList) { |
| 211 | mHandler.removeMessages(MSG_TOGGLE_RECENT_APPS); |
| 212 | mHandler.obtainMessage(MSG_TOGGLE_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 213 | } |
| 214 | } |
| 215 | |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 216 | public void preloadRecentApps() { |
| 217 | synchronized (mList) { |
| 218 | mHandler.removeMessages(MSG_PRELOAD_RECENT_APPS); |
| 219 | mHandler.obtainMessage(MSG_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | public void cancelPreloadRecentApps() { |
| 224 | synchronized (mList) { |
| 225 | mHandler.removeMessages(MSG_CANCEL_PRELOAD_RECENT_APPS); |
| 226 | mHandler.obtainMessage(MSG_CANCEL_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget(); |
| 227 | } |
| 228 | } |
| 229 | |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 230 | public void setNavigationIconHints(int hints) { |
| 231 | synchronized (mList) { |
| 232 | mHandler.removeMessages(MSG_SET_NAVIGATION_ICON_HINTS); |
| 233 | mHandler.obtainMessage(MSG_SET_NAVIGATION_ICON_HINTS, hints, 0, null).sendToTarget(); |
| 234 | } |
| 235 | } |
| 236 | |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 237 | public void setWindowState(int window, int state) { |
| 238 | synchronized (mList) { |
John Spurlock | 5b9145b | 2013-08-20 15:13:47 -0400 | [diff] [blame^] | 239 | // don't coalesce these |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 240 | mHandler.obtainMessage(MSG_SET_WINDOW_STATE, window, state, null).sendToTarget(); |
| 241 | } |
| 242 | } |
| 243 | |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 244 | private final class H extends Handler { |
| 245 | public void handleMessage(Message msg) { |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 246 | final int what = msg.what & MSG_MASK; |
Joe Onorato | 66d7d01 | 2010-05-14 10:05:10 -0700 | [diff] [blame] | 247 | switch (what) { |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 248 | case MSG_ICON: { |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 249 | final int index = msg.what & INDEX_MASK; |
| 250 | final int viewIndex = mList.getViewIndex(index); |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 251 | switch (msg.arg1) { |
| 252 | case OP_SET_ICON: { |
| 253 | StatusBarIcon icon = (StatusBarIcon)msg.obj; |
| 254 | StatusBarIcon old = mList.getIcon(index); |
| 255 | if (old == null) { |
| 256 | mList.setIcon(index, icon); |
| 257 | mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon); |
| 258 | } else { |
| 259 | mList.setIcon(index, icon); |
| 260 | mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex, |
| 261 | old, icon); |
| 262 | } |
| 263 | break; |
| 264 | } |
| 265 | case OP_REMOVE_ICON: |
Joe Onorato | 795f284 | 2010-09-27 11:34:46 -0700 | [diff] [blame] | 266 | if (mList.getIcon(index) != null) { |
| 267 | mList.removeIcon(index); |
| 268 | mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex); |
| 269 | } |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 270 | break; |
| 271 | } |
| 272 | break; |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 273 | } |
Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 274 | case MSG_ADD_NOTIFICATION: { |
| 275 | final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; |
| 276 | mCallbacks.addNotification(ne.key, ne.notification); |
| 277 | break; |
| 278 | } |
| 279 | case MSG_UPDATE_NOTIFICATION: { |
| 280 | final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj; |
| 281 | mCallbacks.updateNotification(ne.key, ne.notification); |
| 282 | break; |
| 283 | } |
| 284 | case MSG_REMOVE_NOTIFICATION: { |
| 285 | mCallbacks.removeNotification((IBinder)msg.obj); |
| 286 | break; |
| 287 | } |
Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 288 | case MSG_DISABLE: |
| 289 | mCallbacks.disable(msg.arg1); |
| 290 | break; |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 291 | case MSG_EXPAND_NOTIFICATIONS: |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 292 | mCallbacks.animateExpandNotificationsPanel(); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 293 | break; |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 294 | case MSG_COLLAPSE_PANELS: |
| 295 | mCallbacks.animateCollapsePanels(0); |
Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 296 | break; |
Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame] | 297 | case MSG_EXPAND_SETTINGS: |
| 298 | mCallbacks.animateExpandSettingsPanel(); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 299 | break; |
Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 300 | case MSG_SET_SYSTEMUI_VISIBILITY: |
Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 301 | mCallbacks.setSystemUiVisibility(msg.arg1, msg.arg2); |
Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 302 | break; |
Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 303 | case MSG_TOP_APP_WINDOW_CHANGED: |
| 304 | mCallbacks.topAppWindowChanged(msg.arg1 != 0); |
Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 305 | break; |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 306 | case MSG_SHOW_IME_BUTTON: |
Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 307 | mCallbacks.setImeWindowStatus((IBinder)msg.obj, msg.arg1, msg.arg2); |
satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 308 | break; |
Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 309 | case MSG_SET_HARD_KEYBOARD_STATUS: |
| 310 | mCallbacks.setHardKeyboardStatus(msg.arg1 != 0, msg.arg2 != 0); |
| 311 | break; |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 312 | case MSG_TOGGLE_RECENT_APPS: |
| 313 | mCallbacks.toggleRecentApps(); |
| 314 | break; |
Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 315 | case MSG_PRELOAD_RECENT_APPS: |
| 316 | mCallbacks.preloadRecentApps(); |
| 317 | break; |
| 318 | case MSG_CANCEL_PRELOAD_RECENT_APPS: |
| 319 | mCallbacks.cancelPreloadRecentApps(); |
| 320 | break; |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 321 | case MSG_SET_NAVIGATION_ICON_HINTS: |
| 322 | mCallbacks.setNavigationIconHints(msg.arg1); |
| 323 | break; |
John Spurlock | 9764218 | 2013-07-29 17:58:39 -0400 | [diff] [blame] | 324 | case MSG_SET_WINDOW_STATE: |
| 325 | mCallbacks.setWindowState(msg.arg1, msg.arg2); |
| 326 | break; |
Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 327 | } |
| 328 | } |
| 329 | } |
| 330 | } |
| 331 | |