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