blob: 4deff5ec437560224ac80854a8b8b45494e7885b [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
26/**
27 * This interface supplies all UI-specific behavior of the window manager. An
28 * instance of it is created by the window manager when it starts up, and allows
29 * customization of window layering, special window types, key dispatching, and
30 * layout.
31 *
32 * <p>Because this provides deep interaction with the system window manager,
33 * specific methods on this interface can be called from a variety of contexts
34 * with various restrictions on what they can do. These are encoded through
35 * a suffixes at the end of a method encoding the thread the method is called
36 * from and any locks that are held when it is being called; if no suffix
37 * is attached to a method, then it is not called with any locks and may be
38 * called from the main window manager thread or another thread calling into
39 * the window manager.
40 *
41 * <p>The current suffixes are:
42 *
43 * <dl>
44 * <dt> Ti <dd> Called from the input thread. This is the thread that
45 * collects pending input events and dispatches them to the appropriate window.
46 * It may block waiting for events to be processed, so that the input stream is
47 * properly serialized.
48 * <dt> Tq <dd> Called from the low-level input queue thread. This is the
49 * thread that reads events out of the raw input devices and places them
50 * into the global input queue that is read by the <var>Ti</var> thread.
51 * This thread should not block for a long period of time on anything but the
52 * key driver.
53 * <dt> Lw <dd> Called with the main window manager lock held. Because the
54 * window manager is a very low-level system service, there are few other
55 * system services you can call with this lock held. It is explicitly okay to
56 * make calls into the package manager and power manager; it is explicitly not
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070057 * okay to make calls into the activity manager or most other services. Note that
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 * {@link android.content.Context#checkPermission(String, int, int)} and
59 * variations require calling into the activity manager.
60 * <dt> Li <dd> Called with the input thread lock held. This lock can be
61 * acquired by the window manager while it holds the window lock, so this is
62 * even more restrictive than <var>Lw</var>.
63 * </dl>
64 *
65 * @hide
66 */
67public interface WindowManagerPolicy {
Jeff Brownb6997262010-10-08 22:31:17 -070068 // Policy flags. These flags are also defined in frameworks/base/include/ui/Input.h.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 public final static int FLAG_WAKE = 0x00000001;
70 public final static int FLAG_WAKE_DROPPED = 0x00000002;
71 public final static int FLAG_SHIFT = 0x00000004;
72 public final static int FLAG_CAPS_LOCK = 0x00000008;
73 public final static int FLAG_ALT = 0x00000010;
74 public final static int FLAG_ALT_GR = 0x00000020;
75 public final static int FLAG_MENU = 0x00000040;
76 public final static int FLAG_LAUNCHER = 0x00000080;
Jeff Brown0eaf3932010-10-01 14:55:30 -070077 public final static int FLAG_VIRTUAL = 0x00000100;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078
Jeff Brown85a31762010-09-01 17:01:00 -070079 public final static int FLAG_INJECTED = 0x01000000;
Jeff Browne20c9e02010-10-11 14:20:19 -070080 public final static int FLAG_TRUSTED = 0x02000000;
Jeff Brown85a31762010-09-01 17:01:00 -070081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 public final static int FLAG_WOKE_HERE = 0x10000000;
83 public final static int FLAG_BRIGHT_HERE = 0x20000000;
Jeff Brownb6997262010-10-08 22:31:17 -070084 public final static int FLAG_PASS_TO_USER = 0x40000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
86 public final static boolean WATCH_POINTER = false;
87
88 // flags for interceptKeyTq
89 /**
90 * Pass this event to the user / app. To be returned from {@link #interceptKeyTq}.
91 */
92 public final static int ACTION_PASS_TO_USER = 0x00000001;
93
94 /**
95 * This key event should extend the user activity timeout and turn the lights on.
96 * To be returned from {@link #interceptKeyTq}. Do not return this and
97 * {@link #ACTION_GO_TO_SLEEP} or {@link #ACTION_PASS_TO_USER}.
98 */
99 public final static int ACTION_POKE_USER_ACTIVITY = 0x00000002;
100
101 /**
102 * This key event should put the device to sleep (and engage keyguard if necessary)
103 * To be returned from {@link #interceptKeyTq}. Do not return this and
104 * {@link #ACTION_POKE_USER_ACTIVITY} or {@link #ACTION_PASS_TO_USER}.
105 */
106 public final static int ACTION_GO_TO_SLEEP = 0x00000004;
107
108 /**
109 * Interface to the Window Manager state associated with a particular
110 * window. You can hold on to an instance of this interface from the call
111 * to prepareAddWindow() until removeWindow().
112 */
113 public interface WindowState {
114 /**
115 * Perform standard frame computation. The result can be obtained with
116 * getFrame() if so desired. Must be called with the window manager
117 * lock held.
118 *
119 * @param parentFrame The frame of the parent container this window
120 * is in, used for computing its basic position.
121 * @param displayFrame The frame of the overall display in which this
122 * window can appear, used for constraining the overall dimensions
123 * of the window.
124 * @param contentFrame The frame within the display in which we would
125 * like active content to appear. This will cause windows behind to
126 * be resized to match the given content frame.
127 * @param visibleFrame The frame within the display that the window
128 * is actually visible, used for computing its visible insets to be
129 * given to windows behind.
130 * This can be used as a hint for scrolling (avoiding resizing)
131 * the window to make certain that parts of its content
132 * are visible.
133 */
134 public void computeFrameLw(Rect parentFrame, Rect displayFrame,
135 Rect contentFrame, Rect visibleFrame);
136
137 /**
138 * Retrieve the current frame of the window that has been assigned by
139 * the window manager. Must be called with the window manager lock held.
140 *
141 * @return Rect The rectangle holding the window frame.
142 */
143 public Rect getFrameLw();
144
145 /**
146 * Retrieve the current frame of the window that is actually shown.
147 * Must be called with the window manager lock held.
148 *
149 * @return Rect The rectangle holding the shown window frame.
150 */
151 public Rect getShownFrameLw();
152
153 /**
154 * Retrieve the frame of the display that this window was last
155 * laid out in. Must be called with the
156 * window manager lock held.
157 *
158 * @return Rect The rectangle holding the display frame.
159 */
160 public Rect getDisplayFrameLw();
161
162 /**
163 * Retrieve the frame of the content area that this window was last
164 * laid out in. This is the area in which the content of the window
165 * should be placed. It will be smaller than the display frame to
166 * account for screen decorations such as a status bar or soft
167 * keyboard. Must be called with the
168 * window manager lock held.
169 *
170 * @return Rect The rectangle holding the content frame.
171 */
172 public Rect getContentFrameLw();
173
174 /**
175 * Retrieve the frame of the visible area that this window was last
176 * laid out in. This is the area of the screen in which the window
177 * will actually be fully visible. It will be smaller than the
178 * content frame to account for transient UI elements blocking it
179 * such as an input method's candidates UI. Must be called with the
180 * window manager lock held.
181 *
182 * @return Rect The rectangle holding the visible frame.
183 */
184 public Rect getVisibleFrameLw();
185
186 /**
187 * Returns true if this window is waiting to receive its given
188 * internal insets from the client app, and so should not impact the
189 * layout of other windows.
190 */
191 public boolean getGivenInsetsPendingLw();
192
193 /**
194 * Retrieve the insets given by this window's client for the content
195 * area of windows behind it. Must be called with the
196 * window manager lock held.
197 *
198 * @return Rect The left, top, right, and bottom insets, relative
199 * to the window's frame, of the actual contents.
200 */
201 public Rect getGivenContentInsetsLw();
202
203 /**
204 * Retrieve the insets given by this window's client for the visible
205 * area of windows behind it. Must be called with the
206 * window manager lock held.
207 *
208 * @return Rect The left, top, right, and bottom insets, relative
209 * to the window's frame, of the actual visible area.
210 */
211 public Rect getGivenVisibleInsetsLw();
212
213 /**
214 * Retrieve the current LayoutParams of the window.
215 *
216 * @return WindowManager.LayoutParams The window's internal LayoutParams
217 * instance.
218 */
219 public WindowManager.LayoutParams getAttrs();
220
221 /**
222 * Get the layer at which this window's surface will be Z-ordered.
223 */
224 public int getSurfaceLayer();
225
226 /**
227 * Return the token for the application (actually activity) that owns
228 * this window. May return null for system windows.
229 *
230 * @return An IApplicationToken identifying the owning activity.
231 */
232 public IApplicationToken getAppToken();
233
234 /**
235 * Return true if, at any point, the application token associated with
236 * this window has actually displayed any windows. This is most useful
237 * with the "starting up" window to determine if any windows were
238 * displayed when it is closed.
239 *
240 * @return Returns true if one or more windows have been displayed,
241 * else false.
242 */
243 public boolean hasAppShownWindows();
244
245 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 * Is this window visible? It is not visible if there is no
247 * surface, or we are in the process of running an exit animation
248 * that will remove the surface.
249 */
250 boolean isVisibleLw();
251
252 /**
Dianne Hackborn3d163f072009-10-07 21:26:57 -0700253 * Like {@link #isVisibleLw}, but also counts a window that is currently
254 * "hidden" behind the keyguard as visible. This allows us to apply
255 * things like window flags that impact the keyguard.
256 */
257 boolean isVisibleOrBehindKeyguardLw();
258
259 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 * Is this window currently visible to the user on-screen? It is
261 * displayed either if it is visible or it is currently running an
262 * animation before no longer being visible. Must be called with the
263 * window manager lock held.
264 */
265 boolean isDisplayedLw();
266
267 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 * Returns true if this window has been shown on screen at some time in
269 * the past. Must be called with the window manager lock held.
270 *
271 * @return boolean
272 */
273 public boolean hasDrawnLw();
274
275 /**
276 * Can be called by the policy to force a window to be hidden,
277 * regardless of whether the client or window manager would like
278 * it shown. Must be called with the window manager lock held.
279 * Returns true if {@link #showLw} was last called for the window.
280 */
281 public boolean hideLw(boolean doAnimation);
282
283 /**
284 * Can be called to undo the effect of {@link #hideLw}, allowing a
285 * window to be shown as long as the window manager and client would
286 * also like it to be shown. Must be called with the window manager
287 * lock held.
288 * Returns true if {@link #hideLw} was last called for the window.
289 */
290 public boolean showLw(boolean doAnimation);
291 }
292
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700293 /**
294 * Bit mask that is set for all enter transition.
295 */
296 public final int TRANSIT_ENTER_MASK = 0x1000;
297
298 /**
299 * Bit mask that is set for all exit transitions.
300 */
301 public final int TRANSIT_EXIT_MASK = 0x2000;
302
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700303 /** Not set up for a transition. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700304 public final int TRANSIT_UNSET = -1;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700305 /** No animation for transition. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 public final int TRANSIT_NONE = 0;
307 /** Window has been added to the screen. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700308 public final int TRANSIT_ENTER = 1 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 /** Window has been removed from the screen. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700310 public final int TRANSIT_EXIT = 2 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311 /** Window has been made visible. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700312 public final int TRANSIT_SHOW = 3 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 /** Window has been made invisible. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700314 public final int TRANSIT_HIDE = 4 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 /** The "application starting" preview window is no longer needed, and will
316 * animate away to show the real window. */
317 public final int TRANSIT_PREVIEW_DONE = 5;
318 /** A window in a new activity is being opened on top of an existing one
319 * in the same task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700320 public final int TRANSIT_ACTIVITY_OPEN = 6 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 /** The window in the top-most activity is being closed to reveal the
322 * previous activity in the same task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700323 public final int TRANSIT_ACTIVITY_CLOSE = 7 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 /** A window in a new task is being opened on top of an existing one
325 * in another activity's task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700326 public final int TRANSIT_TASK_OPEN = 8 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327 /** A window in the top-most activity is being closed to reveal the
328 * previous activity in a different task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700329 public final int TRANSIT_TASK_CLOSE = 9 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 /** A window in an existing task is being displayed on top of an existing one
331 * in another activity's task. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700332 public final int TRANSIT_TASK_TO_FRONT = 10 | TRANSIT_ENTER_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 /** A window in an existing task is being put below all other tasks. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700334 public final int TRANSIT_TASK_TO_BACK = 11 | TRANSIT_EXIT_MASK;
Dianne Hackborn25994b42009-09-04 14:21:19 -0700335 /** A window in a new activity that doesn't have a wallpaper is being
336 * opened on top of one that does, effectively closing the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700337 public final int TRANSIT_WALLPAPER_CLOSE = 12 | TRANSIT_EXIT_MASK;
Dianne Hackborn25994b42009-09-04 14:21:19 -0700338 /** A window in a new activity that does have a wallpaper is being
339 * opened on one that didn't, effectively opening the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700340 public final int TRANSIT_WALLPAPER_OPEN = 13 | TRANSIT_ENTER_MASK;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -0700341 /** A window in a new activity is being opened on top of an existing one,
342 * and both are on top of the wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700343 public final int TRANSIT_WALLPAPER_INTRA_OPEN = 14 | TRANSIT_ENTER_MASK;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -0700344 /** The window in the top-most activity is being closed to reveal the
345 * previous activity, and both are on top of he wallpaper. */
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700346 public final int TRANSIT_WALLPAPER_INTRA_CLOSE = 15 | TRANSIT_EXIT_MASK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347
Dianne Hackborn254cb442010-01-27 19:23:59 -0800348 // NOTE: screen off reasons are in order of significance, with more
349 // important ones lower than less important ones.
350
351 /** Screen turned off because of a device admin */
352 public final int OFF_BECAUSE_OF_ADMIN = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 /** Screen turned off because of power button */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800354 public final int OFF_BECAUSE_OF_USER = 2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 /** Screen turned off because of timeout */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800356 public final int OFF_BECAUSE_OF_TIMEOUT = 3;
Mike Lockwood435eb642009-12-03 08:40:18 -0500357 /** Screen turned off because of proximity sensor */
Dianne Hackborn254cb442010-01-27 19:23:59 -0800358 public final int OFF_BECAUSE_OF_PROX_SENSOR = 4;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359
360 /**
361 * Magic constant to {@link IWindowManager#setRotation} to not actually
362 * modify the rotation.
363 */
364 public final int USE_LAST_ROTATION = -1000;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400365
366 /** When not otherwise specified by the activity's screenOrientation, rotation should be
367 * determined by the system (that is, using sensors). */
368 public final int USER_ROTATION_FREE = 0;
369 /** When not otherwise specified by the activity's screenOrientation, rotation is set by
370 * the user. */
371 public final int USER_ROTATION_LOCKED = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372
373 /**
374 * Perform initialization of the policy.
375 *
376 * @param context The system context we are running in.
377 * @param powerManager
378 */
379 public void init(Context context, IWindowManager windowManager,
380 LocalPowerManager powerManager);
381
382 /**
383 * Check permissions when adding a window.
384 *
385 * @param attrs The window's LayoutParams.
386 *
387 * @return {@link WindowManagerImpl#ADD_OKAY} if the add can proceed;
388 * else an error code, usually
389 * {@link WindowManagerImpl#ADD_PERMISSION_DENIED}, to abort the add.
390 */
391 public int checkAddPermission(WindowManager.LayoutParams attrs);
392
393 /**
394 * Sanitize the layout parameters coming from a client. Allows the policy
395 * to do things like ensure that windows of a specific type can't take
396 * input focus.
397 *
398 * @param attrs The window layout parameters to be modified. These values
399 * are modified in-place.
400 */
401 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs);
402
403 /**
404 * After the window manager has computed the current configuration based
405 * on its knowledge of the display and input devices, it gives the policy
406 * a chance to adjust the information contained in it. If you want to
407 * leave it as-is, simply do nothing.
408 *
409 * <p>This method may be called by any thread in the window manager, but
410 * no internal locks in the window manager will be held.
411 *
412 * @param config The Configuration being computed, for you to change as
413 * desired.
414 */
415 public void adjustConfigurationLw(Configuration config);
416
417 /**
418 * Assign a window type to a layer. Allows you to control how different
419 * kinds of windows are ordered on-screen.
420 *
421 * @param type The type of window being assigned.
422 *
423 * @return int An arbitrary integer used to order windows, with lower
424 * numbers below higher ones.
425 */
426 public int windowTypeToLayerLw(int type);
427
428 /**
429 * Return how to Z-order sub-windows in relation to the window they are
430 * attached to. Return positive to have them ordered in front, negative for
431 * behind.
432 *
433 * @param type The sub-window type code.
434 *
435 * @return int Layer in relation to the attached window, where positive is
436 * above and negative is below.
437 */
438 public int subWindowTypeToLayerLw(int type);
439
440 /**
Dianne Hackborn6136b7e2009-09-18 01:53:49 -0700441 * Get the highest layer (actually one more than) that the wallpaper is
442 * allowed to be in.
443 */
444 public int getMaxWallpaperLayer();
445
446 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700447 * Return whether the given window should forcibly hide everything
448 * behind it. Typically returns true for the keyguard.
449 */
450 public boolean doesForceHide(WindowState win, WindowManager.LayoutParams attrs);
451
452 /**
453 * Determine if a window that is behind one that is force hiding
454 * (as determined by {@link #doesForceHide}) should actually be hidden.
455 * For example, typically returns false for the status bar. Be careful
456 * to return false for any window that you may hide yourself, since this
457 * will conflict with what you set.
458 */
459 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs);
460
461 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 * Called when the system would like to show a UI to indicate that an
463 * application is starting. You can use this to add a
464 * APPLICATION_STARTING_TYPE window with the given appToken to the window
465 * manager (using the normal window manager APIs) that will be shown until
466 * the application displays its own window. This is called without the
467 * window manager locked so that you can call back into it.
468 *
469 * @param appToken Token of the application being started.
470 * @param packageName The name of the application package being started.
471 * @param theme Resource defining the application's overall visual theme.
472 * @param nonLocalizedLabel The default title label of the application if
473 * no data is found in the resource.
474 * @param labelRes The resource ID the application would like to use as its name.
475 * @param icon The resource ID the application would like to use as its icon.
476 *
477 * @return Optionally you can return the View that was used to create the
478 * window, for easy removal in removeStartingWindow.
479 *
480 * @see #removeStartingWindow
481 */
482 public View addStartingWindow(IBinder appToken, String packageName,
483 int theme, CharSequence nonLocalizedLabel,
484 int labelRes, int icon);
485
486 /**
487 * Called when the first window of an application has been displayed, while
488 * {@link #addStartingWindow} has created a temporary initial window for
489 * that application. You should at this point remove the window from the
490 * window manager. This is called without the window manager locked so
491 * that you can call back into it.
492 *
493 * <p>Note: due to the nature of these functions not being called with the
494 * window manager locked, you must be prepared for this function to be
495 * called multiple times and/or an initial time with a null View window
496 * even if you previously returned one.
497 *
498 * @param appToken Token of the application that has started.
499 * @param window Window View that was returned by createStartingWindow.
500 *
501 * @see #addStartingWindow
502 */
503 public void removeStartingWindow(IBinder appToken, View window);
504
505 /**
506 * Prepare for a window being added to the window manager. You can throw an
507 * exception here to prevent the window being added, or do whatever setup
508 * you need to keep track of the window.
509 *
510 * @param win The window being added.
511 * @param attrs The window's LayoutParams.
512 *
513 * @return {@link WindowManagerImpl#ADD_OKAY} if the add can proceed, else an
514 * error code to abort the add.
515 */
516 public int prepareAddWindowLw(WindowState win,
517 WindowManager.LayoutParams attrs);
518
519 /**
520 * Called when a window is being removed from a window manager. Must not
521 * throw an exception -- clean up as much as possible.
522 *
523 * @param win The window being removed.
524 */
525 public void removeWindowLw(WindowState win);
526
527 /**
528 * Control the animation to run when a window's state changes. Return a
529 * non-0 number to force the animation to a specific resource ID, or 0
530 * to use the default animation.
531 *
532 * @param win The window that is changing.
533 * @param transit What is happening to the window: {@link #TRANSIT_ENTER},
534 * {@link #TRANSIT_EXIT}, {@link #TRANSIT_SHOW}, or
535 * {@link #TRANSIT_HIDE}.
536 *
537 * @return Resource ID of the actual animation to use, or 0 for none.
538 */
539 public int selectAnimationLw(WindowState win, int transit);
540
541 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700542 * Create and return an animation to re-display a force hidden window.
543 */
544 public Animation createForceHideEnterAnimation();
545
546 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700547 * Called from the input reader thread before a key is enqueued.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800548 *
549 * <p>There are some actions that need to be handled here because they
550 * affect the power state of the device, for example, the power keys.
551 * Generally, it's best to keep as little as possible in the queue thread
552 * because it's the most fragile.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700553 * @param whenNanos The event time in uptime nanoseconds.
Jeff Brown4d396052010-10-29 21:50:21 -0700554 * @param action The key event action.
555 * @param flags The key event flags.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700556 * @param keyCode The key code.
Jeff Brown4d396052010-10-29 21:50:21 -0700557 * @param scanCode The key's scan code.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700558 * @param policyFlags The policy flags associated with the key.
559 * @param isScreenOn True if the screen is already on
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 * @return The bitwise or of the {@link #ACTION_PASS_TO_USER},
562 * {@link #ACTION_POKE_USER_ACTIVITY} and {@link #ACTION_GO_TO_SLEEP} flags.
563 */
Jeff Brown4d396052010-10-29 21:50:21 -0700564 public int interceptKeyBeforeQueueing(long whenNanos, int action, int flags,
565 int keyCode, int scanCode, int policyFlags, boolean isScreenOn);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566
567 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700568 * Called from the input dispatcher thread before a key is dispatched to a window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800569 *
570 * <p>Allows you to define
Jeff Brown3915bb82010-11-05 15:02:16 -0700571 * behavior for keys that can not be overridden by applications.
572 * This method is called from the input thread, with no locks held.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 *
574 * @param win The window that currently has focus. This is where the key
575 * event will normally go.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700576 * @param action The key event action.
577 * @param flags The key event flags.
578 * @param keyCode The key code.
Jeff Brown4d396052010-10-29 21:50:21 -0700579 * @param scanCode The key's scan code.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700580 * @param metaState bit mask of meta keys that are held.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 * @param repeatCount Number of times a key down has repeated.
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700582 * @param policyFlags The policy flags associated with the key.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800583 * @return Returns true if the policy consumed the event and it should
584 * not be further dispatched.
585 */
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700586 public boolean interceptKeyBeforeDispatching(WindowState win, int action, int flags,
Jeff Brown4d396052010-10-29 21:50:21 -0700587 int keyCode, int scanCode, int metaState, int repeatCount, int policyFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800588
589 /**
Jeff Brown3915bb82010-11-05 15:02:16 -0700590 * Called from the input dispatcher thread when an application did not handle
591 * a key that was dispatched to it.
592 *
593 * <p>Allows you to define default global behavior for keys that were not handled
594 * by applications. This method is called from the input thread, with no locks held.
595 *
596 * @param win The window that currently has focus. This is where the key
597 * event will normally go.
598 * @param action The key event action.
599 * @param flags The key event flags.
600 * @param keyCode The key code.
601 * @param scanCode The key's scan code.
602 * @param metaState bit mask of meta keys that are held.
603 * @param repeatCount Number of times a key down has repeated.
604 * @param policyFlags The policy flags associated with the key.
605 * @return Returns true if the policy consumed the event.
606 */
607 public boolean dispatchUnhandledKey(WindowState win, int action, int flags,
608 int keyCode, int scanCode, int metaState, int repeatCount, int policyFlags);
609
610 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 * Called when layout of the windows is about to start.
612 *
613 * @param displayWidth The current full width of the screen.
614 * @param displayHeight The current full height of the screen.
615 */
616 public void beginLayoutLw(int displayWidth, int displayHeight);
617
618 /**
619 * Called for each window attached to the window manager as layout is
620 * proceeding. The implementation of this function must take care of
621 * setting the window's frame, either here or in finishLayout().
622 *
623 * @param win The window being positioned.
624 * @param attrs The LayoutParams of the window.
625 * @param attached For sub-windows, the window it is attached to; this
626 * window will already have had layoutWindow() called on it
627 * so you can use its Rect. Otherwise null.
628 */
629 public void layoutWindowLw(WindowState win,
630 WindowManager.LayoutParams attrs, WindowState attached);
631
632
633 /**
634 * Return the insets for the areas covered by system windows. These values
635 * are computed on the most recent layout, so they are not guaranteed to
636 * be correct.
637 *
638 * @param attrs The LayoutParams of the window.
639 * @param contentInset The areas covered by system windows, expressed as positive insets
640 *
641 */
642 public void getContentInsetHintLw(WindowManager.LayoutParams attrs, Rect contentInset);
643
644 /**
645 * Called when layout of the windows is finished. After this function has
646 * returned, all windows given to layoutWindow() <em>must</em> have had a
647 * frame assigned.
Dianne Hackborn7ac3f672009-03-31 18:00:53 -0700648 *
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800649 * @return Return any bit set of {@link #FINISH_LAYOUT_REDO_LAYOUT},
650 * {@link #FINISH_LAYOUT_REDO_CONFIG}, {@link #FINISH_LAYOUT_REDO_WALLPAPER},
651 * or {@link #FINISH_LAYOUT_REDO_ANIM}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652 */
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700653 public int finishLayoutLw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700655 /** Layout state may have changed (so another layout will be performed) */
656 static final int FINISH_LAYOUT_REDO_LAYOUT = 0x0001;
657 /** Configuration state may have changed */
658 static final int FINISH_LAYOUT_REDO_CONFIG = 0x0002;
659 /** Wallpaper may need to move */
660 static final int FINISH_LAYOUT_REDO_WALLPAPER = 0x0004;
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800661 /** Need to recompute animations */
662 static final int FINISH_LAYOUT_REDO_ANIM = 0x0008;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700663
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800664 /**
665 * Called when animation of the windows is about to start.
666 *
667 * @param displayWidth The current full width of the screen.
668 * @param displayHeight The current full height of the screen.
669 */
670 public void beginAnimationLw(int displayWidth, int displayHeight);
671
672 /**
673 * Called each time a window is animating.
674 *
675 * @param win The window being positioned.
676 * @param attrs The LayoutParams of the window.
677 */
678 public void animatingWindowLw(WindowState win,
679 WindowManager.LayoutParams attrs);
680
681 /**
682 * Called when animation of the windows is finished. If in this function you do
683 * something that may have modified the animation state of another window,
684 * be sure to return true in order to perform another animation frame.
685 *
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800686 * @return Return any bit set of {@link #FINISH_LAYOUT_REDO_LAYOUT},
687 * {@link #FINISH_LAYOUT_REDO_CONFIG}, {@link #FINISH_LAYOUT_REDO_WALLPAPER},
688 * or {@link #FINISH_LAYOUT_REDO_ANIM}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 */
Dianne Hackbornb8b11a02010-03-10 15:53:11 -0800690 public int finishAnimationLw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691
692 /**
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800693 * Return true if it is okay to perform animations for an app transition
694 * that is about to occur. You may return false for this if, for example,
695 * the lock screen is currently displayed so the switch should happen
696 * immediately.
697 */
698 public boolean allowAppAnimationsLw();
699
700 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 * Called after the screen turns off.
702 *
703 * @param why {@link #OFF_BECAUSE_OF_USER} or
704 * {@link #OFF_BECAUSE_OF_TIMEOUT}.
705 */
706 public void screenTurnedOff(int why);
707
708 /**
709 * Called after the screen turns on.
710 */
711 public void screenTurnedOn();
712
713 /**
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800714 * Return whether the screen is currently on.
715 */
716 public boolean isScreenOn();
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700717
Dianne Hackbornde2606d2009-12-18 16:53:55 -0800718 /**
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700719 * Tell the policy that the lid switch has changed state.
720 * @param whenNanos The time when the change occurred in uptime nanoseconds.
721 * @param lidOpen True if the lid is now open.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700723 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen);
724
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 * Tell the policy if anyone is requesting that keyguard not come on.
727 *
728 * @param enabled Whether keyguard can be on or not. does not actually
729 * turn it on, unless it was previously disabled with this function.
730 *
731 * @see android.app.KeyguardManager.KeyguardLock#disableKeyguard()
732 * @see android.app.KeyguardManager.KeyguardLock#reenableKeyguard()
733 */
734 public void enableKeyguard(boolean enabled);
735
736 /**
737 * Callback used by {@link WindowManagerPolicy#exitKeyguardSecurely}
738 */
739 interface OnKeyguardExitResult {
740 void onKeyguardExitResult(boolean success);
741 }
742
743 /**
744 * Tell the policy if anyone is requesting the keyguard to exit securely
745 * (this would be called after the keyguard was disabled)
746 * @param callback Callback to send the result back.
747 * @see android.app.KeyguardManager#exitKeyguardSecurely(android.app.KeyguardManager.OnKeyguardExitResult)
748 */
749 void exitKeyguardSecurely(OnKeyguardExitResult callback);
750
751 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752 * inKeyguardRestrictedKeyInputMode
753 *
754 * if keyguard screen is showing or in restricted key input mode (i.e. in
755 * keyguard password emergency screen). When in such mode, certain keys,
756 * such as the Home key and the right soft keys, don't work.
757 *
758 * @return true if in keyguard restricted input mode.
759 */
760 public boolean inKeyguardRestrictedKeyInputMode();
761
762 /**
763 * Given an orientation constant
764 * ({@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE
765 * ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE} or
766 * {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_PORTRAIT
767 * ActivityInfo.SCREEN_ORIENTATION_PORTRAIT}), return a surface
768 * rotation.
769 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700770 public int rotationForOrientationLw(int orientation, int lastRotation,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771 boolean displayEnabled);
772
773 /**
Dianne Hackborn6af0d502009-09-28 13:25:46 -0700774 * Called when the system is mostly done booting to determine whether
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775 * the system should go into safe mode.
776 */
777 public boolean detectSafeMode();
778
779 /**
780 * Called when the system is mostly done booting.
781 */
782 public void systemReady();
783
784 /**
Mike Lockwoodef731622010-01-27 17:51:34 -0500785 * Called when userActivity is signalled in the power manager.
786 * This is safe to call from any thread, with any window manager locks held or not.
787 */
788 public void userActivity();
789
790 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791 * Called when we have finished booting and can now display the home
792 * screen to the user. This wilWl happen after systemReady(), and at
793 * this point the display is active.
794 */
795 public void enableScreenAfterBoot();
796
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700797 public void setCurrentOrientationLw(int newOrientation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798
799 /**
800 * Call from application to perform haptic feedback on its window.
801 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700802 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800803
804 /**
805 * Called when we have stopped keeping the screen on because a window
806 * requesting this is no longer visible.
807 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700808 public void screenOnStoppedLw();
Mike Lockwood3d0ea722009-10-21 22:58:29 -0400809
810 /**
811 * Return false to disable key repeat events from being generated.
812 */
813 public boolean allowKeyRepeat();
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400814
815 /**
816 * Inform the policy that the user has chosen a preferred orientation ("rotation lock").
817 *
818 * @param mode One of {@link WindowManagerPolicy#USER_ROTATION_LOCKED} or
819 * {@link * WindowManagerPolicy#USER_ROTATION_FREE}.
820 * @param rotation One of {@link Surface#ROTATION_0}, {@link Surface#ROTATION_90},
821 * {@link Surface#ROTATION_180}, {@link Surface#ROTATION_270}.
822 */
823 public void setUserRotationMode(int mode, int rotation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824}