blob: 9d00d023514d60d6b84c5ec2c4a9f960c4c52d42 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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
17package android.view;
18
19import android.content.Context;
20import android.content.res.Configuration;
21import android.graphics.Rect;
22import android.os.IBinder;
23import android.os.LocalPowerManager;
24import android.view.animation.Animation;
25
Dianne Hackbornf99f9c52011-01-12 15:49:25 -080026import java.io.FileDescriptor;
27import java.io.PrintWriter;
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029/**
30 * This interface supplies all UI-specific behavior of the window manager. An
31 * instance of it is created by the window manager when it starts up, and allows
32 * customization of window layering, special window types, key dispatching, and
33 * layout.
34 *
35 * <p>Because this provides deep interaction with the system window manager,
36 * specific methods on this interface can be called from a variety of contexts
37 * with various restrictions on what they can do. These are encoded through
38 * a suffixes at the end of a method encoding the thread the method is called
39 * from and any locks that are held when it is being called; if no suffix
40 * is attached to a method, then it is not called with any locks and may be
41 * called from the main window manager thread or another thread calling into
42 * the window manager.
43 *
44 * <p>The current suffixes are:
45 *
46 * <dl>
47 * <dt> Ti <dd> Called from the input thread. This is the thread that
48 * collects pending input events and dispatches them to the appropriate window.
49 * It may block waiting for events to be processed, so that the input stream is
50 * properly serialized.
51 * <dt> Tq <dd> Called from the low-level input queue thread. This is the
52 * thread that reads events out of the raw input devices and places them
53 * into the global input queue that is read by the <var>Ti</var> thread.
54 * This thread should not block for a long period of time on anything but the
55 * key driver.
56 * <dt> Lw <dd> Called with the main window manager lock held. Because the
57 * window manager is a very low-level system service, there are few other
58 * system services you can call with this lock held. It is explicitly okay to
59 * make calls into the package manager and power manager; it is explicitly not
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070060 * okay to make calls into the activity manager or most other services. Note that
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 * {@link android.content.Context#checkPermission(String, int, int)} and
62 * variations require calling into the activity manager.
63 * <dt> Li <dd> Called with the input thread lock held. This lock can be
64 * acquired by the window manager while it holds the window lock, so this is
65 * even more restrictive than <var>Lw</var>.
66 * </dl>
67 *
68 * @hide
69 */
70public interface WindowManagerPolicy {
Jeff Brownb6997262010-10-08 22:31:17 -070071 // Policy flags. These flags are also defined in frameworks/base/include/ui/Input.h.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 public final static int FLAG_WAKE = 0x00000001;
73 public final static int FLAG_WAKE_DROPPED = 0x00000002;
74 public final static int FLAG_SHIFT = 0x00000004;
75 public final static int FLAG_CAPS_LOCK = 0x00000008;
76 public final static int FLAG_ALT = 0x00000010;
77 public final static int FLAG_ALT_GR = 0x00000020;
78 public final static int FLAG_MENU = 0x00000040;
79 public final static int FLAG_LAUNCHER = 0x00000080;
Jeff Brown0eaf3932010-10-01 14:55:30 -070080 public final static int FLAG_VIRTUAL = 0x00000100;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081
Jeff Brown85a31762010-09-01 17:01:00 -070082 public final static int FLAG_INJECTED = 0x01000000;
Jeff Browne20c9e02010-10-11 14:20:19 -070083 public final static int FLAG_TRUSTED = 0x02000000;
Jeff Brown0029c662011-03-30 02:25:18 -070084 public final static int FLAG_FILTERED = 0x04000000;
85 public final static int FLAG_DISABLE_KEY_REPEAT = 0x08000000;
Jeff Brown85a31762010-09-01 17:01:00 -070086
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 public final static int FLAG_WOKE_HERE = 0x10000000;
88 public final static int FLAG_BRIGHT_HERE = 0x20000000;
Jeff Brownb6997262010-10-08 22:31:17 -070089 public final static int FLAG_PASS_TO_USER = 0x40000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090
91 public final static boolean WATCH_POINTER = false;
92
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080093 /**
94 * Sticky broadcast of the current HDMI plugged state.
95 */
96 public final static String ACTION_HDMI_PLUGGED = "android.intent.action.HDMI_PLUGGED";
97
98 /**
99 * Extra in {@link #ACTION_HDMI_PLUGGED} indicating the state: true if
100 * plugged in to HDMI, false if not.
101 */
102 public final static String EXTRA_HDMI_PLUGGED_STATE = "state";
103
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 // flags for interceptKeyTq
105 /**
106 * Pass this event to the user / app. To be returned from {@link #interceptKeyTq}.
107 */
108 public final static int ACTION_PASS_TO_USER = 0x00000001;
109
110 /**
111 * This key event should extend the user activity timeout and turn the lights on.
112 * To be returned from {@link #interceptKeyTq}. Do not return this and
113 * {@link #ACTION_GO_TO_SLEEP} or {@link #ACTION_PASS_TO_USER}.
114 */
115 public final static int ACTION_POKE_USER_ACTIVITY = 0x00000002;
116
117 /**
118 * This key event should put the device to sleep (and engage keyguard if necessary)
119 * To be returned from {@link #interceptKeyTq}. Do not return this and
120 * {@link #ACTION_POKE_USER_ACTIVITY} or {@link #ACTION_PASS_TO_USER}.
121 */
122 public final static int ACTION_GO_TO_SLEEP = 0x00000004;
123
124 /**
125 * Interface to the Window Manager state associated with a particular
126 * window. You can hold on to an instance of this interface from the call
127 * to prepareAddWindow() until removeWindow().
128 */
129 public interface WindowState {
130 /**
131 * Perform standard frame computation. The result can be obtained with
132 * getFrame() if so desired. Must be called with the window manager
133 * lock held.
134 *
135 * @param parentFrame The frame of the parent container this window
136 * is in, used for computing its basic position.
137 * @param displayFrame The frame of the overall display in which this
138 * window can appear, used for constraining the overall dimensions
139 * of the window.
140 * @param contentFrame The frame within the display in which we would
141 * like active content to appear. This will cause windows behind to
142 * be resized to match the given content frame.
143 * @param visibleFrame The frame within the display that the window
144 * is actually visible, used for computing its visible insets to be
145 * given to windows behind.
146 * This can be used as a hint for scrolling (avoiding resizing)
147 * the window to make certain that parts of its content
148 * are visible.
149 */
150 public void computeFrameLw(Rect parentFrame, Rect displayFrame,
151 Rect contentFrame, Rect visibleFrame);
152
153 /**
154 * Retrieve the current frame of the window that has been assigned by
155 * the window manager. Must be called with the window manager lock held.
156 *
157 * @return Rect The rectangle holding the window frame.
158 */
159 public Rect getFrameLw();
160
161 /**
162 * Retrieve the current frame of the window that is actually shown.
163 * Must be called with the window manager lock held.
164 *
165 * @return Rect The rectangle holding the shown window frame.
166 */
167 public Rect getShownFrameLw();
168
169 /**
170 * Retrieve the frame of the display that this window was last
171 * laid out in. Must be called with the
172 * window manager lock held.
173 *
174 * @return Rect The rectangle holding the display frame.
175 */
176 public Rect getDisplayFrameLw();
177
178 /**
179 * Retrieve the frame of the content area that this window was last
180 * laid out in. This is the area in which the content of the window
181 * should be placed. It will be smaller than the display frame to
182 * account for screen decorations such as a status bar or soft
183 * keyboard. Must be called with the
184 * window manager lock held.
185 *
186 * @return Rect The rectangle holding the content frame.
187 */
188 public Rect getContentFrameLw();
189
190 /**
191 * Retrieve the frame of the visible area that this window was last
192 * laid out in. This is the area of the screen in which the window
193 * will actually be fully visible. It will be smaller than the
194 * content frame to account for transient UI elements blocking it
195 * such as an input method's candidates UI. Must be called with the
196 * window manager lock held.
197 *
198 * @return Rect The rectangle holding the visible frame.
199 */
200 public Rect getVisibleFrameLw();
201
202 /**
203 * Returns true if this window is waiting to receive its given
204 * internal insets from the client app, and so should not impact the
205 * layout of other windows.
206 */
207 public boolean getGivenInsetsPendingLw();
208
209 /**
210 * Retrieve the insets given by this window's client for the content
211 * area of windows behind it. Must be called with the
212 * window manager lock held.
213 *
214 * @return Rect The left, top, right, and bottom insets, relative
215 * to the window's frame, of the actual contents.
216 */
217 public Rect getGivenContentInsetsLw();
218
219 /**
220 * Retrieve the insets given by this window's client for the visible
221 * area of windows behind it. Must be called with the
222 * window manager lock held.
223 *
224 * @return Rect The left, top, right, and bottom insets, relative
225 * to the window's frame, of the actual visible area.
226 */
227 public Rect getGivenVisibleInsetsLw();
228
229 /**
230 * Retrieve the current LayoutParams of the window.
231 *
232 * @return WindowManager.LayoutParams The window's internal LayoutParams
233 * instance.
234 */
235 public WindowManager.LayoutParams getAttrs();
236
237 /**
238 * Get the layer at which this window's surface will be Z-ordered.
239 */
240 public int getSurfaceLayer();
241
242 /**
243 * Return the token for the application (actually activity) that owns
244 * this window. May return null for system windows.
245 *
246 * @return An IApplicationToken identifying the owning activity.
247 */
248 public IApplicationToken getAppToken();
249
250 /**
251 * Return true if, at any point, the application token associated with
252 * this window has actually displayed any windows. This is most useful
253 * with the "starting up" window to determine if any windows were
254 * displayed when it is closed.
255 *
256 * @return Returns true if one or more windows have been displayed,
257 * else false.
258 */
259 public boolean hasAppShownWindows();
260
261 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 * Is this window visible? It is not visible if there is no
263 * surface, or we are in the process of running an exit animation
264 * that will remove the surface.
265 */
266 boolean isVisibleLw();
267
268 /**
Dianne Hackborn3d163f072009-10-07 21:26:57 -0700269 * Like {@link #isVisibleLw}, but also counts a window that is currently
270 * "hidden" behind the keyguard as visible. This allows us to apply
271 * things like window flags that impact the keyguard.
272 */
273 boolean isVisibleOrBehindKeyguardLw();
274
275 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 * Is this window currently visible to the user on-screen? It is
277 * displayed either if it is visible or it is currently running an
278 * animation before no longer being visible. Must be called with the
279 * window manager lock held.
280 */
281 boolean isDisplayedLw();
282
283 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 * Returns true if this window has been shown on screen at some time in
285 * the past. Must be called with the window manager lock held.
286 *
287 * @return boolean
288 */
289 public boolean hasDrawnLw();
290
291 /**
292 * Can be called by the policy to force a window to be hidden,
293 * regardless of whether the client or window manager would like
294 * it shown. Must be called with the window manager lock held.
295 * Returns true if {@link #showLw} was last called for the window.
296 */
297 public boolean hideLw(boolean doAnimation);
298
299 /**
300 * Can be called to undo the effect of {@link #hideLw}, allowing a
301 * window to be shown as long as the window manager and client would
302 * also like it to be shown. Must be called with the window manager
303 * lock held.
304 * Returns true if {@link #hideLw} was last called for the window.
305 */
306 public boolean showLw(boolean doAnimation);
307 }
308
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700309 /**
310 * Bit mask that is set for all enter transition.
311 */
312 public final int TRANSIT_ENTER_MASK = 0x1000;
313
314 /**
315 * Bit mask that is set for all exit transitions.
316 */
317 public final int TRANSIT_EXIT_MASK = 0x2000;
318
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700319 /** Not set up for a transition. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700320 public final int TRANSIT_UNSET = -1;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700321 /** No animation for transition. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800322 public final int TRANSIT_NONE = 0;
323 /** Window has been added to the screen. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700324 public final int TRANSIT_ENTER = 1 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 /** Window has been removed from the screen. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700326 public final int TRANSIT_EXIT = 2 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327 /** Window has been made visible. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700328 public final int TRANSIT_SHOW = 3 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 /** Window has been made invisible. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700330 public final int TRANSIT_HIDE = 4 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331 /** The "application starting" preview window is no longer needed, and will
332 * animate away to show the real window. */
333 public final int TRANSIT_PREVIEW_DONE = 5;
334 /** A window in a new activity is being opened on top of an existing one
335 * in the same task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700336 public final int TRANSIT_ACTIVITY_OPEN = 6 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 /** The window in the top-most activity is being closed to reveal the
338 * previous activity in the same task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700339 public final int TRANSIT_ACTIVITY_CLOSE = 7 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340 /** A window in a new task is being opened on top of an existing one
341 * in another activity's task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700342 public final int TRANSIT_TASK_OPEN = 8 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 /** A window in the top-most activity is being closed to reveal the
344 * previous activity in a different task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700345 public final int TRANSIT_TASK_CLOSE = 9 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 /** A window in an existing task is being displayed on top of an existing one
347 * in another activity's task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700348 public final int TRANSIT_TASK_TO_FRONT = 10 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 /** A window in an existing task is being put below all other tasks. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700350 public final int TRANSIT_TASK_TO_BACK = 11 | TRANSIT_EXIT_MASK;
Dianne Hackborn25994b42009-09-04 14:21:19 -0700351 /** A window in a new activity that doesn't have a wallpaper is being
352 * opened on top of one that does, effectively closing the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700353 public final int TRANSIT_WALLPAPER_CLOSE = 12 | TRANSIT_EXIT_MASK;
Dianne Hackborn25994b42009-09-04 14:21:19 -0700354 /** A window in a new activity that does have a wallpaper is being
355 * opened on one that didn't, effectively opening the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700356 public final int TRANSIT_WALLPAPER_OPEN = 13 | TRANSIT_ENTER_MASK;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -0700357 /** A window in a new activity is being opened on top of an existing one,
358 * and both are on top of the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700359 public final int TRANSIT_WALLPAPER_INTRA_OPEN = 14 | TRANSIT_ENTER_MASK;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -0700360 /** The window in the top-most activity is being closed to reveal the
361 * previous activity, and both are on top of he wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700362 public final int TRANSIT_WALLPAPER_INTRA_CLOSE = 15 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363
Dianne Hackborn254cb442010-01-27 19:23:59 -0800364 // NOTE: screen off reasons are in order of significance, with more
365 // important ones lower than less important ones.
366
367 /** Screen turned off because of a device admin */
368 public final int OFF_BECAUSE_OF_ADMIN = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 /** Screen turned off because of power button */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800370 public final int OFF_BECAUSE_OF_USER = 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 /** Screen turned off because of timeout */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800372 public final int OFF_BECAUSE_OF_TIMEOUT = 3;
Mike Lockwood435eb642009-12-03 08:40:18 -0500373 /** Screen turned off because of proximity sensor */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800374 public final int OFF_BECAUSE_OF_PROX_SENSOR = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375
376 /**
377 * Magic constant to {@link IWindowManager#setRotation} to not actually
378 * modify the rotation.
379 */
380 public final int USE_LAST_ROTATION = -1000;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400381
382 /** When not otherwise specified by the activity's screenOrientation, rotation should be
383 * determined by the system (that is, using sensors). */
384 public final int USER_ROTATION_FREE = 0;
385 /** When not otherwise specified by the activity's screenOrientation, rotation is set by
386 * the user. */
387 public final int USER_ROTATION_LOCKED = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388
389 /**
390 * Perform initialization of the policy.
391 *
392 * @param context The system context we are running in.
393 * @param powerManager
394 */
395 public void init(Context context, IWindowManager windowManager,
396 LocalPowerManager powerManager);
397
398 /**
399 * Check permissions when adding a window.
400 *
401 * @param attrs The window's LayoutParams.
402 *
403 * @return {@link WindowManagerImpl#ADD_OKAY} if the add can proceed;
404 * else an error code, usually
405 * {@link WindowManagerImpl#ADD_PERMISSION_DENIED}, to abort the add.
406 */
407 public int checkAddPermission(WindowManager.LayoutParams attrs);
408
409 /**
410 * Sanitize the layout parameters coming from a client. Allows the policy
411 * to do things like ensure that windows of a specific type can't take
412 * input focus.
413 *
414 * @param attrs The window layout parameters to be modified. These values
415 * are modified in-place.
416 */
417 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs);
418
419 /**
420 * After the window manager has computed the current configuration based
421 * on its knowledge of the display and input devices, it gives the policy
422 * a chance to adjust the information contained in it. If you want to
423 * leave it as-is, simply do nothing.
424 *
425 * <p>This method may be called by any thread in the window manager, but
426 * no internal locks in the window manager will be held.
427 *
428 * @param config The Configuration being computed, for you to change as
429 * desired.
430 */
431 public void adjustConfigurationLw(Configuration config);
432
433 /**
434 * Assign a window type to a layer. Allows you to control how different
435 * kinds of windows are ordered on-screen.
436 *
437 * @param type The type of window being assigned.
438 *
439 * @return int An arbitrary integer used to order windows, with lower
440 * numbers below higher ones.
441 */
442 public int windowTypeToLayerLw(int type);
443
444 /**
445 * Return how to Z-order sub-windows in relation to the window they are
446 * attached to. Return positive to have them ordered in front, negative for
447 * behind.
448 *
449 * @param type The sub-window type code.
450 *
451 * @return int Layer in relation to the attached window, where positive is
452 * above and negative is below.
453 */
454 public int subWindowTypeToLayerLw(int type);
455
456 /**
Dianne Hackborn6136b7e2009-09-18 01:53:49 -0700457 * Get the highest layer (actually one more than) that the wallpaper is
458 * allowed to be in.
459 */
460 public int getMaxWallpaperLayer();
461
462 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700463 * Return whether the given window should forcibly hide everything
464 * behind it. Typically returns true for the keyguard.
465 */
466 public boolean doesForceHide(WindowState win, WindowManager.LayoutParams attrs);
467
468 /**
469 * Determine if a window that is behind one that is force hiding
470 * (as determined by {@link #doesForceHide}) should actually be hidden.
471 * For example, typically returns false for the status bar. Be careful
472 * to return false for any window that you may hide yourself, since this
473 * will conflict with what you set.
474 */
475 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs);
476
477 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 * Called when the system would like to show a UI to indicate that an
479 * application is starting. You can use this to add a
480 * APPLICATION_STARTING_TYPE window with the given appToken to the window
481 * manager (using the normal window manager APIs) that will be shown until
482 * the application displays its own window. This is called without the
483 * window manager locked so that you can call back into it.
484 *
485 * @param appToken Token of the application being started.
486 * @param packageName The name of the application package being started.
487 * @param theme Resource defining the application's overall visual theme.
488 * @param nonLocalizedLabel The default title label of the application if
489 * no data is found in the resource.
490 * @param labelRes The resource ID the application would like to use as its name.
491 * @param icon The resource ID the application would like to use as its icon.
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800492 * @param windowFlags Window layout flags.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 *
494 * @return Optionally you can return the View that was used to create the
495 * window, for easy removal in removeStartingWindow.
496 *
497 * @see #removeStartingWindow
498 */
499 public View addStartingWindow(IBinder appToken, String packageName,
500 int theme, CharSequence nonLocalizedLabel,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800501 int labelRes, int icon, int windowFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502
503 /**
504 * Called when the first window of an application has been displayed, while
505 * {@link #addStartingWindow} has created a temporary initial window for
506 * that application. You should at this point remove the window from the
507 * window manager. This is called without the window manager locked so
508 * that you can call back into it.
509 *
510 * <p>Note: due to the nature of these functions not being called with the
511 * window manager locked, you must be prepared for this function to be
512 * called multiple times and/or an initial time with a null View window
513 * even if you previously returned one.
514 *
515 * @param appToken Token of the application that has started.
516 * @param window Window View that was returned by createStartingWindow.
517 *
518 * @see #addStartingWindow
519 */
520 public void removeStartingWindow(IBinder appToken, View window);
521
522 /**
523 * Prepare for a window being added to the window manager. You can throw an
524 * exception here to prevent the window being added, or do whatever setup
525 * you need to keep track of the window.
526 *
527 * @param win The window being added.
528 * @param attrs The window's LayoutParams.
529 *
530 * @return {@link WindowManagerImpl#ADD_OKAY} if the add can proceed, else an
531 * error code to abort the add.
532 */
533 public int prepareAddWindowLw(WindowState win,
534 WindowManager.LayoutParams attrs);
535
536 /**
537 * Called when a window is being removed from a window manager. Must not
538 * throw an exception -- clean up as much as possible.
539 *
540 * @param win The window being removed.
541 */
542 public void removeWindowLw(WindowState win);
543
544 /**
545 * Control the animation to run when a window's state changes. Return a
546 * non-0 number to force the animation to a specific resource ID, or 0
547 * to use the default animation.
548 *
549 * @param win The window that is changing.
550 * @param transit What is happening to the window: {@link #TRANSIT_ENTER},
551 * {@link #TRANSIT_EXIT}, {@link #TRANSIT_SHOW}, or
552 * {@link #TRANSIT_HIDE}.
553 *
554 * @return Resource ID of the actual animation to use, or 0 for none.
555 */
556 public int selectAnimationLw(WindowState win, int transit);
557
558 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700559 * Create and return an animation to re-display a force hidden window.
560 */
561 public Animation createForceHideEnterAnimation();
562
563 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700564 * Called from the input reader thread before a key is enqueued.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565 *
566 * <p>There are some actions that need to be handled here because they
567 * affect the power state of the device, for example, the power keys.
568 * Generally, it's best to keep as little as possible in the queue thread
569 * because it's the most fragile.
Jeff Brown1f245102010-11-18 20:53:46 -0800570 * @param event The key event.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700571 * @param policyFlags The policy flags associated with the key.
572 * @param isScreenOn True if the screen is already on
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 * @return The bitwise or of the {@link #ACTION_PASS_TO_USER},
575 * {@link #ACTION_POKE_USER_ACTIVITY} and {@link #ACTION_GO_TO_SLEEP} flags.
576 */
Jeff Brown1f245102010-11-18 20:53:46 -0800577 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags, boolean isScreenOn);
Jeff Brown56194eb2011-03-02 19:23:13 -0800578
579 /**
580 * Called from the input reader thread before a motion is enqueued when the screen is off.
581 *
582 * <p>There are some actions that need to be handled here because they
583 * affect the power state of the device, for example, waking on motions.
584 * Generally, it's best to keep as little as possible in the queue thread
585 * because it's the most fragile.
586 * @param policyFlags The policy flags associated with the motion.
587 *
588 * @return The bitwise or of the {@link #ACTION_PASS_TO_USER},
589 * {@link #ACTION_POKE_USER_ACTIVITY} and {@link #ACTION_GO_TO_SLEEP} flags.
590 */
591 public int interceptMotionBeforeQueueingWhenScreenOff(int policyFlags);
592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700594 * Called from the input dispatcher thread before a key is dispatched to a window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 *
596 * <p>Allows you to define
Jeff Brown3915bb82010-11-05 15:02:16 -0700597 * behavior for keys that can not be overridden by applications.
598 * This method is called from the input thread, with no locks held.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 *
600 * @param win The window that currently has focus. This is where the key
601 * event will normally go.
Jeff Brown1f245102010-11-18 20:53:46 -0800602 * @param event The key event.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700603 * @param policyFlags The policy flags associated with the key.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 * @return Returns true if the policy consumed the event and it should
605 * not be further dispatched.
606 */
Jeff Brown1f245102010-11-18 20:53:46 -0800607 public boolean interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608
609 /**
Jeff Brown3915bb82010-11-05 15:02:16 -0700610 * Called from the input dispatcher thread when an application did not handle
611 * a key that was dispatched to it.
612 *
613 * <p>Allows you to define default global behavior for keys that were not handled
614 * by applications. This method is called from the input thread, with no locks held.
615 *
616 * @param win The window that currently has focus. This is where the key
617 * event will normally go.
Jeff Brown1f245102010-11-18 20:53:46 -0800618 * @param event The key event.
Jeff Brown3915bb82010-11-05 15:02:16 -0700619 * @param policyFlags The policy flags associated with the key.
Jeff Brown49ed71d2010-12-06 17:13:33 -0800620 * @return Returns an alternate key event to redispatch as a fallback, or null to give up.
621 * The caller is responsible for recycling the key event.
Jeff Brown3915bb82010-11-05 15:02:16 -0700622 */
Jeff Brown49ed71d2010-12-06 17:13:33 -0800623 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -0700624
625 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626 * Called when layout of the windows is about to start.
627 *
628 * @param displayWidth The current full width of the screen.
629 * @param displayHeight The current full height of the screen.
630 */
631 public void beginLayoutLw(int displayWidth, int displayHeight);
632
633 /**
634 * Called for each window attached to the window manager as layout is
635 * proceeding. The implementation of this function must take care of
636 * setting the window's frame, either here or in finishLayout().
637 *
638 * @param win The window being positioned.
639 * @param attrs The LayoutParams of the window.
640 * @param attached For sub-windows, the window it is attached to; this
641 * window will already have had layoutWindow() called on it
642 * so you can use its Rect. Otherwise null.
643 */
644 public void layoutWindowLw(WindowState win,
645 WindowManager.LayoutParams attrs, WindowState attached);
646
647
648 /**
649 * Return the insets for the areas covered by system windows. These values
650 * are computed on the most recent layout, so they are not guaranteed to
651 * be correct.
652 *
653 * @param attrs The LayoutParams of the window.
654 * @param contentInset The areas covered by system windows, expressed as positive insets
655 *
656 */
657 public void getContentInsetHintLw(WindowManager.LayoutParams attrs, Rect contentInset);
658
659 /**
660 * Called when layout of the windows is finished. After this function has
661 * returned, all windows given to layoutWindow() <em>must</em> have had a
662 * frame assigned.
Dianne Hackborn7ac3f672009-03-31 18:00:53 -0700663 *
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800664 * @return Return any bit set of {@link #FINISH_LAYOUT_REDO_LAYOUT},
665 * {@link #FINISH_LAYOUT_REDO_CONFIG}, {@link #FINISH_LAYOUT_REDO_WALLPAPER},
666 * or {@link #FINISH_LAYOUT_REDO_ANIM}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 */
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700668 public int finishLayoutLw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800669
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700670 /** Layout state may have changed (so another layout will be performed) */
671 static final int FINISH_LAYOUT_REDO_LAYOUT = 0x0001;
672 /** Configuration state may have changed */
673 static final int FINISH_LAYOUT_REDO_CONFIG = 0x0002;
674 /** Wallpaper may need to move */
675 static final int FINISH_LAYOUT_REDO_WALLPAPER = 0x0004;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800676 /** Need to recompute animations */
677 static final int FINISH_LAYOUT_REDO_ANIM = 0x0008;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700678
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 /**
680 * Called when animation of the windows is about to start.
681 *
682 * @param displayWidth The current full width of the screen.
683 * @param displayHeight The current full height of the screen.
684 */
685 public void beginAnimationLw(int displayWidth, int displayHeight);
686
687 /**
688 * Called each time a window is animating.
689 *
690 * @param win The window being positioned.
691 * @param attrs The LayoutParams of the window.
692 */
693 public void animatingWindowLw(WindowState win,
694 WindowManager.LayoutParams attrs);
695
696 /**
697 * Called when animation of the windows is finished. If in this function you do
698 * something that may have modified the animation state of another window,
699 * be sure to return true in order to perform another animation frame.
700 *
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800701 * @return Return any bit set of {@link #FINISH_LAYOUT_REDO_LAYOUT},
702 * {@link #FINISH_LAYOUT_REDO_CONFIG}, {@link #FINISH_LAYOUT_REDO_WALLPAPER},
703 * or {@link #FINISH_LAYOUT_REDO_ANIM}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704 */
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800705 public int finishAnimationLw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800706
707 /**
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800708 * Return true if it is okay to perform animations for an app transition
709 * that is about to occur. You may return false for this if, for example,
710 * the lock screen is currently displayed so the switch should happen
711 * immediately.
712 */
713 public boolean allowAppAnimationsLw();
Joe Onorato664644d2011-01-23 17:53:23 -0800714
715
716 /**
717 * A new window has been focused.
718 */
719 public void focusChanged(WindowState lastFocus, WindowState newFocus);
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800720
721 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722 * Called after the screen turns off.
723 *
724 * @param why {@link #OFF_BECAUSE_OF_USER} or
725 * {@link #OFF_BECAUSE_OF_TIMEOUT}.
726 */
727 public void screenTurnedOff(int why);
728
729 /**
730 * Called after the screen turns on.
731 */
732 public void screenTurnedOn();
733
734 /**
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800735 * Return whether the screen is currently on.
736 */
737 public boolean isScreenOn();
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700738
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800739 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700740 * Tell the policy that the lid switch has changed state.
741 * @param whenNanos The time when the change occurred in uptime nanoseconds.
742 * @param lidOpen True if the lid is now open.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800743 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700744 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen);
745
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800746 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800747 * Tell the policy if anyone is requesting that keyguard not come on.
748 *
749 * @param enabled Whether keyguard can be on or not. does not actually
750 * turn it on, unless it was previously disabled with this function.
751 *
752 * @see android.app.KeyguardManager.KeyguardLock#disableKeyguard()
753 * @see android.app.KeyguardManager.KeyguardLock#reenableKeyguard()
754 */
755 public void enableKeyguard(boolean enabled);
756
757 /**
758 * Callback used by {@link WindowManagerPolicy#exitKeyguardSecurely}
759 */
760 interface OnKeyguardExitResult {
761 void onKeyguardExitResult(boolean success);
762 }
763
764 /**
765 * Tell the policy if anyone is requesting the keyguard to exit securely
766 * (this would be called after the keyguard was disabled)
767 * @param callback Callback to send the result back.
768 * @see android.app.KeyguardManager#exitKeyguardSecurely(android.app.KeyguardManager.OnKeyguardExitResult)
769 */
770 void exitKeyguardSecurely(OnKeyguardExitResult callback);
771
772 /**
Mike Lockwood520d8bc2011-02-18 13:23:13 -0500773 * isKeyguardLocked
774 *
775 * Return whether the keyguard is currently locked.
776 *
777 * @return true if in keyguard is locked.
778 */
779 public boolean isKeyguardLocked();
780
781 /**
782 * isKeyguardSecure
783 *
784 * Return whether the keyguard requires a password to unlock.
785 *
786 * @return true if in keyguard is secure.
787 */
788 public boolean isKeyguardSecure();
789
790 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791 * inKeyguardRestrictedKeyInputMode
792 *
793 * if keyguard screen is showing or in restricted key input mode (i.e. in
794 * keyguard password emergency screen). When in such mode, certain keys,
795 * such as the Home key and the right soft keys, don't work.
796 *
797 * @return true if in keyguard restricted input mode.
798 */
799 public boolean inKeyguardRestrictedKeyInputMode();
800
801 /**
802 * Given an orientation constant
803 * ({@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE
804 * ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE} or
805 * {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT
806 * ActivityInfo.SCREEN_ORIENTATION_PORTRAIT}), return a surface
807 * rotation.
808 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700809 public int rotationForOrientationLw(int orientation, int lastRotation,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 boolean displayEnabled);
811
812 /**
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700813 * Called when the system is mostly done booting to determine whether
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 * the system should go into safe mode.
815 */
816 public boolean detectSafeMode();
817
818 /**
819 * Called when the system is mostly done booting.
820 */
821 public void systemReady();
822
823 /**
Mike Lockwoodef731622010-01-27 17:51:34 -0500824 * Called when userActivity is signalled in the power manager.
825 * This is safe to call from any thread, with any window manager locks held or not.
826 */
827 public void userActivity();
828
829 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800830 * Called when we have finished booting and can now display the home
831 * screen to the user. This wilWl happen after systemReady(), and at
832 * this point the display is active.
833 */
834 public void enableScreenAfterBoot();
835
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700836 public void setCurrentOrientationLw(int newOrientation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837
838 /**
839 * Call from application to perform haptic feedback on its window.
840 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700841 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842
843 /**
844 * Called when we have stopped keeping the screen on because a window
845 * requesting this is no longer visible.
846 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700847 public void screenOnStoppedLw();
Mike Lockwood3d0ea722009-10-21 22:58:29 -0400848
849 /**
850 * Return false to disable key repeat events from being generated.
851 */
852 public boolean allowKeyRepeat();
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400853
854 /**
855 * Inform the policy that the user has chosen a preferred orientation ("rotation lock").
856 *
857 * @param mode One of {@link WindowManagerPolicy#USER_ROTATION_LOCKED} or
858 * {@link * WindowManagerPolicy#USER_ROTATION_FREE}.
859 * @param rotation One of {@link Surface#ROTATION_0}, {@link Surface#ROTATION_90},
860 * {@link Surface#ROTATION_180}, {@link Surface#ROTATION_270}.
861 */
862 public void setUserRotationMode(int mode, int rotation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -0800863
864 /**
865 * Print the WindowManagerPolicy's state into the given stream.
866 *
867 * @param prefix Text to print at the front of each line.
868 * @param fd The raw file descriptor that the dump is being sent to.
869 * @param writer The PrintWriter to which you should dump your state. This will be
870 * closed for you after you return.
871 * @param args additional arguments to the dump request.
872 */
873 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874}