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