blob: bd65532979290f0d9e7ee4c21dcbd1d57c75e62e [file] [log] [blame]
Dianne Hackborn7da6ac32010-12-09 19:22:04 -08001/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002** Copyright 2006, The Android Open Source Project
3**
Jim Miller4eeb4f62012-11-08 00:04:29 -08004** 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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007**
Jim Miller4eeb4f62012-11-08 00:04:29 -08008** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009**
Jim Miller4eeb4f62012-11-08 00:04:29 -080010** 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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014** limitations under the License.
15*/
16
17package android.view;
18
Dianne Hackborn27eac1d2015-03-16 17:15:53 -070019import com.android.internal.app.IAssistScreenshotReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import com.android.internal.view.IInputContext;
21import com.android.internal.view.IInputMethodClient;
22
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070023import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080025import android.graphics.Bitmap;
Dianne Hackbornac8dea12011-04-20 18:18:51 -070026import android.graphics.Point;
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -070027import android.graphics.Rect;
Adam Cohenf7522022012-10-03 20:03:18 -070028import android.os.Bundle;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070029import android.os.IRemoteCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.view.IApplicationToken;
Jorim Jaggi2f7d2922015-10-29 13:08:29 +010031import android.view.IAppTransitionAnimationSpecsFuture;
Filip Gruszczynski64cdc142015-11-29 21:10:07 -080032import android.view.IDockDividerVisibilityListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.view.IOnKeyguardExitResult;
34import android.view.IRotationWatcher;
35import android.view.IWindowSession;
Dianne Hackborneb94fa72014-06-03 17:48:12 -070036import android.view.IWindowSessionCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.view.KeyEvent;
Jeff Brown6ec402b2010-07-28 15:48:59 -070038import android.view.InputEvent;
Svetoslav Ganov152e9bb2012-10-12 20:15:29 -070039import android.view.MagnificationSpec;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.view.MotionEvent;
Jeff Browna41ca772010-08-11 14:46:32 -070041import android.view.InputChannel;
Jeff Brown8d608662010-08-30 03:02:23 -070042import android.view.InputDevice;
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -070043import android.view.IInputFilter;
Filip Gruszczynski170192a2015-08-16 17:46:34 -070044import android.view.AppTransitionAnimationSpec;
Svetoslav1376d602014-03-13 11:17:26 -070045import android.view.WindowContentFrameStats;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
47/**
48 * System private interface to the window manager.
49 *
50 * {@hide}
51 */
52interface IWindowManager
53{
54 /**
55 * ===== NOTICE =====
56 * The first three methods must remain the first three methods. Scripts
57 * and tools rely on their transaction number to work properly.
58 */
59 // This is used for debugging
60 boolean startViewServer(int port); // Transaction #1
61 boolean stopViewServer(); // Transaction #2
62 boolean isViewServerRunning(); // Transaction #3
63
Dianne Hackborneb94fa72014-06-03 17:48:12 -070064 IWindowSession openSession(in IWindowSessionCallback callback, in IInputMethodClient client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065 in IInputContext inputContext);
66 boolean inputMethodClientHasFocus(IInputMethodClient client);
Dianne Hackbornac8dea12011-04-20 18:18:51 -070067
Dianne Hackborn672cf452013-03-26 15:24:24 -070068 void getInitialDisplaySize(int displayId, out Point size);
69 void getBaseDisplaySize(int displayId, out Point size);
Jeff Brown43aa1592012-09-10 17:36:31 -070070 void setForcedDisplaySize(int displayId, int width, int height);
Craig Mautner59c00972012-07-30 12:10:24 -070071 void clearForcedDisplaySize(int displayId);
Dianne Hackborn672cf452013-03-26 15:24:24 -070072 int getInitialDisplayDensity(int displayId);
73 int getBaseDisplayDensity(int displayId);
Dianne Hackborndde331c2012-08-03 14:01:57 -070074 void setForcedDisplayDensity(int displayId, int density);
75 void clearForcedDisplayDensity(int displayId);
Jeff Brownd46747a2015-04-15 19:02:36 -070076 void setForcedDisplayScalingMode(int displayId, int mode); // 0 = auto, 1 = disable
Dianne Hackborn7916ac62011-05-16 20:45:48 -070077
Dianne Hackbornc652de82013-02-15 16:32:56 -080078 void setOverscan(int displayId, int left, int top, int right, int bottom);
79
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 // These can only be called when holding the MANAGE_APP_TOKENS permission.
81 void pauseKeyDispatching(IBinder token);
82 void resumeKeyDispatching(IBinder token);
83 void setEventDispatching(boolean enabled);
Dianne Hackborne4fbd622009-03-27 18:09:16 -070084 void addWindowToken(IBinder token, int type);
85 void removeWindowToken(IBinder token);
Wale Ogunwale706ed792015-08-02 10:29:44 -070086 /**
87 * Adds an application token to the specified task Id.
88 * @param addPos The position to add the token to in the task.
89 * @param token The token to add.
90 * @param taskId The Id of the task we are adding the token to.
91 * @param stackId Stack Id to create a new Task with the input task Id on
92 * if the task doesn't exist yet.
93 * @param requestedOrientation Orientation to use.
94 * @param fullscreen True if the application token is fullscreen.
95 * @param showWhenLocked True if the application token should be shown when locked.
96 * @param userId Id of user to associate the token with.
97 * @param configChanges Input configuration changes.
98 * @param voiceInteraction True if the token is in voice interaction mode.
99 * @param launchTaskBehind True if the token is been launched from behind.
100 * @param taskBounds Bounds to use when creating a new Task with the input task Id if
101 * the task doesn't exist yet.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700102 * @param configuration Configuration that is being used with this task.
Wale Ogunwale61b009e2015-09-16 15:43:05 -0700103 * @param cropWindowsToStack True if the app windows should be cropped to the stack bounds.
Wale Ogunwale706ed792015-08-02 10:29:44 -0700104 */
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700105 void addAppToken(int addPos, IApplicationToken token, int taskId, int stackId,
Craig Mautner5d9f5472013-11-12 14:02:52 -0800106 int requestedOrientation, boolean fullscreen, boolean showWhenLocked, int userId,
Wale Ogunwale706ed792015-08-02 10:29:44 -0700107 int configChanges, boolean voiceInteraction, boolean launchTaskBehind,
Wale Ogunwale61b009e2015-09-16 15:43:05 -0700108 in Rect taskBounds, in Configuration configuration, boolean cropWindowsToStack);
Wale Ogunwale706ed792015-08-02 10:29:44 -0700109 /**
110 *
111 * @param token The token we are adding to the input task Id.
112 * @param taskId The Id of the task we are adding the token to.
113 * @param taskBounds Bounds to use when creating a new Task with the input task Id if
114 * the task doesn't exist yet.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700115 * @param config Configuration that is being used with this task.
Wale Ogunwale706ed792015-08-02 10:29:44 -0700116 */
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700117 void setAppTask(IBinder token, int taskId, in Rect taskBounds, in Configuration config);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 void setAppOrientation(IApplicationToken token, int requestedOrientation);
119 int getAppOrientation(IApplicationToken token);
120 void setFocusedApp(IBinder token, boolean moveFocusNow);
Dianne Hackborn7da6ac32010-12-09 19:22:04 -0800121 void prepareAppTransition(int transit, boolean alwaysKeepCurrent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 int getPendingAppTransition();
Dianne Hackborn84375872012-06-01 19:03:50 -0700123 void overridePendingAppTransition(String packageName, int enterAnim, int exitAnim,
124 IRemoteCallback startedCallback);
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700125 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
126 int startHeight);
Chet Haase10e23ab2015-02-11 15:08:38 -0800127 void overridePendingAppTransitionClipReveal(int startX, int startY,
128 int startWidth, int startHeight);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700129 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int startY,
Michael Jurka832cb222012-04-13 09:32:47 -0700130 IRemoteCallback startedCallback, boolean scaleUp);
Winson Chunga4ccb862014-08-22 15:26:27 -0700131 void overridePendingAppTransitionAspectScaledThumb(in Bitmap srcThumb, int startX,
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200132 int startY, int targetWidth, int targetHeight, IRemoteCallback startedCallback,
133 boolean scaleUp);
Filip Gruszczynski170192a2015-08-16 17:46:34 -0700134 /**
135 * Overrides animation for app transition that exits from an application to a multi-window
136 * environment and allows specifying transition animation parameters for each window.
137 *
138 * @param specs Array of transition animation descriptions for entering windows.
139 *
140 * @hide
141 */
142 void overridePendingAppTransitionMultiThumb(in AppTransitionAnimationSpec[] specs,
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -0700143 IRemoteCallback startedCallback, IRemoteCallback finishedCallback, boolean scaleUp);
Winson Chung044d5292014-11-06 11:05:19 -0800144 void overridePendingAppTransitionInPlace(String packageName, int anim);
Jorim Jaggi2f7d2922015-10-29 13:08:29 +0100145
146 /**
147 * Like overridePendingAppTransitionMultiThumb, but uses a future to supply the specs. This is
148 * used for recents, where generating the thumbnails of the specs takes a non-trivial amount of
149 * time, so we want to move that off the critical path for starting the new activity.
150 */
151 void overridePendingAppTransitionMultiThumbFuture(
152 IAppTransitionAnimationSpecsFuture specsFuture, IRemoteCallback startedCallback,
153 boolean scaleUp);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 void executeAppTransition();
155 void setAppStartingWindow(IBinder token, String pkg, int theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -0700156 in CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -0700157 int icon, int logo, int windowFlags, IBinder transferFrom, boolean createIfNeeded);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 void setAppVisibility(IBinder token, boolean visible);
159 void startAppFreezingScreen(IBinder token, int configChanges);
160 void stopAppFreezingScreen(IBinder token, boolean force);
161 void removeAppToken(IBinder token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162
Filip Gruszczynski14b4e572015-11-03 15:53:55 -0800163 /** Used by system ui to report that recents has shown itself. */
164 void endProlongedAnimations();
165
Dianne Hackborne36d6e22010-02-17 19:46:25 -0800166 // Re-evaluate the current orientation from the caller's state.
167 // If there is a change, the new Configuration is returned and the
168 // caller must call setNewConfiguration() sometime later.
169 Configuration updateOrientationFromAppTokens(in Configuration currentConfig,
170 IBinder freezeThisOneIfNeeded);
171 void setNewConfiguration(in Configuration config);
Jim Miller4eeb4f62012-11-08 00:04:29 -0800172
Dianne Hackborn9d9ece32012-09-10 15:33:52 -0700173 void startFreezingScreen(int exitAnim, int enterAnim);
174 void stopFreezingScreen();
175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 // these require DISABLE_KEYGUARD permission
177 void disableKeyguard(IBinder token, String tag);
178 void reenableKeyguard(IBinder token);
179 void exitKeyguardSecurely(IOnKeyguardExitResult callback);
Mike Lockwood520d8bc2011-02-18 13:23:13 -0500180 boolean isKeyguardLocked();
181 boolean isKeyguardSecure();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 boolean inKeyguardRestrictedInputMode();
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700183 void dismissKeyguard();
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +0200184 void keyguardGoingAway(boolean disableWindowAnimations,
185 boolean keyguardGoingToNotificationShade);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186
Dianne Hackbornffa42482009-09-23 22:20:11 -0700187 void closeSystemDialogs(String reason);
Jim Miller4eeb4f62012-11-08 00:04:29 -0800188
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 // These can only be called with the SET_ANIMATON_SCALE permission.
190 float getAnimationScale(int which);
191 float[] getAnimationScales();
192 void setAnimationScale(int which, float scale);
193 void setAnimationScales(in float[] scales);
Jim Miller4eeb4f62012-11-08 00:04:29 -0800194
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700195 float getCurrentAnimatorScale();
196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 // For testing
198 void setInTouchMode(boolean showFocus);
Brad Fitzpatrick68044332010-11-22 18:19:48 -0800199
200 // For StrictMode flashing a red border on violations from the UI
201 // thread. The uid/pid is implicit from the Binder call, and the Window
202 // Manager uses that to determine whether or not the red border should
203 // actually be shown. (it will be ignored that pid doesn't have windows
204 // on screen)
205 void showStrictModeViolation(boolean on);
206
Brad Fitzpatrickc1a968a2010-11-24 08:56:40 -0800207 // Proxy to set the system property for whether the flashing
208 // should be enabled. The 'enabled' value is null or blank for
209 // the system default (differs per build variant) or any valid
210 // boolean string as parsed by SystemProperties.getBoolean().
211 void setStrictModeVisualIndicatorPreference(String enabled);
212
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +0100213 /**
Sander Alewijnsea87863a2014-07-29 12:01:38 +0100214 * Set whether screen capture is disabled for all windows of a specific user
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +0100215 */
Sander Alewijnsea87863a2014-07-29 12:01:38 +0100216 void setScreenCaptureDisabled(int userId, boolean disabled);
Sander Alewijnsed2a1eec2014-07-09 12:57:05 +0100217
Winsonc28098f2015-10-30 14:50:19 -0700218 /**
219 * Cancels the window transitions for the given task.
220 */
221 void cancelTaskWindowTransition(int taskId);
222
Winson13d30662015-11-06 15:30:29 -0800223 /**
224 * Cancels the thumbnail transitions for the given task.
225 */
226 void cancelTaskThumbnailTransition(int taskId);
227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228 // These can only be called with the SET_ORIENTATION permission.
229 /**
Jeff Brown01a98dd2011-09-20 15:08:29 -0700230 * Update the current screen rotation based on the current state of
231 * the world.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 * @param alwaysSendConfiguration Flag to force a new configuration to
233 * be evaluated. This can be used when there are other parameters in
234 * configuration that are changing.
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700235 * @param forceRelayout If true, the window manager will always do a relayout
236 * of its windows even if the rotation hasn't changed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 */
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700238 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239
240 /**
241 * Retrieve the current screen orientation, constants as per
242 * {@link android.view.Surface}.
243 */
244 int getRotation();
Jim Miller4eeb4f62012-11-08 00:04:29 -0800245
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 /**
247 * Watch the rotation of the screen. Returns the current rotation,
248 * calls back when it changes.
249 */
250 int watchRotation(IRotationWatcher watcher);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400251
Adam Powelldfee59a2011-08-05 20:48:30 -0700252 /**
Brian Colonnab1b9a8a2013-03-29 11:52:42 -0400253 * Remove a rotation watcher set using watchRotation.
254 * @hide
255 */
256 void removeRotationWatcher(IRotationWatcher watcher);
257
258 /**
Adam Powelldfee59a2011-08-05 20:48:30 -0700259 * Determine the preferred edge of the screen to pin the compact options menu against.
260 * @return a Gravity value for the options menu panel
261 * @hide
262 */
263 int getPreferredOptionsPanelGravity();
264
Jim Miller4eeb4f62012-11-08 00:04:29 -0800265 /**
266 * Lock the device orientation to the specified rotation, or to the
267 * current rotation if -1. Sensor input will be ignored until
268 * thawRotation() is called.
269 * @hide
270 */
271 void freezeRotation(int rotation);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400272
Jim Miller4eeb4f62012-11-08 00:04:29 -0800273 /**
274 * Release the orientation lock imposed by freezeRotation().
275 * @hide
276 */
277 void thawRotation();
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800278
Jim Miller4eeb4f62012-11-08 00:04:29 -0800279 /**
Svetoslav8e3feb12014-02-24 13:46:47 -0800280 * Gets whether the rotation is frozen.
Svetoslav Ganov80943d82013-01-02 10:25:37 -0800281 *
282 * @return Whether the rotation is frozen.
283 */
284 boolean isRotationFrozen();
285
286 /**
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700287 * Used only for assist -- request a screenshot of the current application.
288 */
289 boolean requestAssistScreenshot(IAssistScreenshotReceiver receiver);
290
291 /**
Jim Miller4eeb4f62012-11-08 00:04:29 -0800292 * Create a screenshot of the applications currently displayed.
Winson8b1871d2015-11-20 09:56:20 -0800293 *
Filip Gruszczynski64cdc142015-11-29 21:10:07 -0800294 * @param frameScale the scale to apply to the frame, only used when width = -1 and
Winson8b1871d2015-11-20 09:56:20 -0800295 * height = -1
Jim Miller4eeb4f62012-11-08 00:04:29 -0800296 */
Filip Gruszczynski64cdc142015-11-29 21:10:07 -0800297 Bitmap screenshotApplications(IBinder appToken, int displayId, int maxWidth, int maxHeight,
Winson8b1871d2015-11-20 09:56:20 -0800298 float frameScale);
Joe Onorato664644d2011-01-23 17:53:23 -0800299
300 /**
301 * Called by the status bar to notify Views of changes to System UI visiblity.
302 */
John Spurlocke7c28572013-10-29 14:23:51 -0400303 oneway void statusBarVisibilityChanged(int visibility);
Jeff Brown1a84fd12011-06-02 01:26:32 -0700304
305 /**
Daniel Sandler0c4ccff2011-10-19 16:39:14 -0400306 * Device has a software navigation bar (separate from the status bar).
307 */
308 boolean hasNavigationBar();
Jim Miller93c518e2012-01-17 15:55:31 -0800309
310 /**
Adam Cohenf7522022012-10-03 20:03:18 -0700311 * Lock the device immediately with the specified options (can be null).
Jim Miller93c518e2012-01-17 15:55:31 -0800312 */
Adam Cohenf7522022012-10-03 20:03:18 -0700313 void lockNow(in Bundle options);
Svetoslav Ganovc9c9a482012-07-16 08:46:07 -0700314
315 /**
Jim Millerbfec0a82012-11-05 20:05:22 -0800316 * Device is in safe mode.
317 */
318 boolean isSafeModeEnabled();
Jorim Jaggicff0acb2014-03-31 16:35:15 +0200319
320 /**
321 * Enables the screen if all conditions are met.
322 */
323 void enableScreenIfNeeded();
Svetoslavdd137a82014-04-10 12:48:07 -0700324
325 /**
Svetoslav1376d602014-03-13 11:17:26 -0700326 * Clears the frame statistics for a given window.
327 *
328 * @param token The window token.
329 * @return Whether the frame statistics were cleared.
330 */
331 boolean clearWindowContentFrameStats(IBinder token);
332
333 /**
334 * Gets the content frame statistics for a given window.
335 *
336 * @param token The window token.
337 * @return The frame statistics or null if the window does not exist.
338 */
339 WindowContentFrameStats getWindowContentFrameStats(IBinder token);
Jorim Jaggi61f39a72015-10-29 16:54:18 +0100340
341 /**
342 * @return the dock side the current docked stack is at; must be one of the
343 * WindowManagerGlobal.DOCKED_* values
344 */
345 int getDockedStackSide();
346
347 /**
348 * Sets whether we are currently in a drag resize operation where we are changing the docked
349 * stack size.
350 */
351 void setDockedStackResizing(boolean resizing);
Filip Gruszczynski64cdc142015-11-29 21:10:07 -0800352
353 /**
354 * Registers a listener that will be called when the dock divider changes its visibility.
355 */
356 void registerDockDividerVisibilityListener(IDockDividerVisibilityListener listener);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357}