blob: c22d60d94818bb4437a3f2db094ac00d957cb9c2 [file] [log] [blame]
Jeff Brown4ccb8232014-01-16 22:16:42 -08001/*
2 * Copyright (C) 2014 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
Alan Viverette214fb682015-11-17 09:47:11 -050019import android.annotation.Nullable;
Svetoslav8e3feb12014-02-24 13:46:47 -080020import android.graphics.Rect;
21import android.graphics.Region;
Jeff Brown4ccb8232014-01-16 22:16:42 -080022import android.hardware.display.DisplayManagerInternal;
Svetoslav8e3feb12014-02-24 13:46:47 -080023import android.os.IBinder;
Jorim Jaggi77ba4802015-02-18 13:57:50 +010024import android.view.animation.Animation;
Svetoslav8e3feb12014-02-24 13:46:47 -080025
26import java.util.List;
Jeff Brown4ccb8232014-01-16 22:16:42 -080027
28/**
29 * Window manager local system service interface.
30 *
31 * @hide Only for use within the system server.
32 */
33public abstract class WindowManagerInternal {
Svetoslav8e3feb12014-02-24 13:46:47 -080034
35 /**
36 * Interface to receive a callback when the windows reported for
37 * accessibility changed.
38 */
39 public interface WindowsForAccessibilityCallback {
40
41 /**
42 * Called when the windows for accessibility changed.
43 *
44 * @param windows The windows for accessibility.
45 */
46 public void onWindowsForAccessibilityChanged(List<WindowInfo> windows);
47 }
48
49 /**
50 * Callbacks for contextual changes that affect the screen magnification
51 * feature.
52 */
53 public interface MagnificationCallbacks {
54
55 /**
56 * Called when the bounds of the screen content that is magnified changed.
57 * Note that not the entire screen is magnified.
58 *
Alan Viverette214fb682015-11-17 09:47:11 -050059 * @param magnifiedBounds the currently magnified region
60 * @param availableBounds the region available for magnification
Svetoslav8e3feb12014-02-24 13:46:47 -080061 */
Alan Viverette214fb682015-11-17 09:47:11 -050062 public void onMagnifiedBoundsChanged(Region magnifiedBounds, Region availableBounds);
Svetoslav8e3feb12014-02-24 13:46:47 -080063
64 /**
65 * Called when an application requests a rectangle on the screen to allow
66 * the client to apply the appropriate pan and scale.
67 *
68 * @param left The rectangle left.
69 * @param top The rectangle top.
70 * @param right The rectangle right.
71 * @param bottom The rectangle bottom.
72 */
73 public void onRectangleOnScreenRequested(int left, int top, int right, int bottom);
74
75 /**
76 * Notifies that the rotation changed.
77 *
78 * @param rotation The current rotation.
79 */
80 public void onRotationChanged(int rotation);
81
82 /**
83 * Notifies that the context of the user changed. For example, an application
84 * was started.
85 */
86 public void onUserContextChanged();
87 }
88
Jeff Brown4ccb8232014-01-16 22:16:42 -080089 /**
Jorim Jaggi77ba4802015-02-18 13:57:50 +010090 * Abstract class to be notified about {@link com.android.server.wm.AppTransition} events. Held
91 * as an abstract class so a listener only needs to implement the methods of its interest.
92 */
93 public static abstract class AppTransitionListener {
94
95 /**
96 * Called when an app transition is being setup and about to be executed.
97 */
98 public void onAppTransitionPendingLocked() {}
99
100 /**
101 * Called when a pending app transition gets cancelled.
102 */
103 public void onAppTransitionCancelledLocked() {}
104
105 /**
106 * Called when an app transition gets started
107 *
108 * @param openToken the token for the opening app
109 * @param closeToken the token for the closing app
110 * @param openAnimation the animation for the opening app
111 * @param closeAnimation the animation for the closing app
112 */
113 public void onAppTransitionStartingLocked(IBinder openToken, IBinder closeToken,
114 Animation openAnimation, Animation closeAnimation) {}
115
116 /**
117 * Called when an app transition is finished running.
118 *
119 * @param token the token for app whose transition has finished
120 */
121 public void onAppTransitionFinishedLocked(IBinder token) {}
122 }
123
124 /**
Seigo Nonaka7309b122015-08-17 18:34:13 -0700125 * An interface to be notified about hardware keyboard status.
126 */
127 public interface OnHardKeyboardStatusChangeListener {
128 public void onHardKeyboardStatusChange(boolean available);
129 }
130
131 /**
Jeff Brown4ccb8232014-01-16 22:16:42 -0800132 * Request that the window manager call
133 * {@link DisplayManagerInternal#performTraversalInTransactionFromWindowManager}
134 * within a surface transaction at a later time.
135 */
136 public abstract void requestTraversalFromDisplayManager();
Svetoslav8e3feb12014-02-24 13:46:47 -0800137
138 /**
139 * Set by the accessibility layer to observe changes in the magnified region,
140 * rotation, and other window transformations related to display magnification
141 * as the window manager is responsible for doing the actual magnification
142 * and has access to the raw window data while the accessibility layer serves
143 * as a controller.
144 *
145 * @param callbacks The callbacks to invoke.
146 */
Alan Viverette214fb682015-11-17 09:47:11 -0500147 public abstract void setMagnificationCallbacks(@Nullable MagnificationCallbacks callbacks);
Svetoslav8e3feb12014-02-24 13:46:47 -0800148
149 /**
150 * Set by the accessibility layer to specify the magnification and panning to
151 * be applied to all windows that should be magnified.
152 *
Craig Mautner8a0da012014-05-31 15:13:37 -0700153 * @param spec The MagnficationSpec to set.
Svetoslav8e3feb12014-02-24 13:46:47 -0800154 *
155 * @see #setMagnificationCallbacks(MagnificationCallbacks)
156 */
157 public abstract void setMagnificationSpec(MagnificationSpec spec);
158
159 /**
160 * Gets the magnification and translation applied to a window given its token.
161 * Not all windows are magnified and the window manager policy determines which
162 * windows are magnified. The returned result also takes into account the compat
163 * scale if necessary.
164 *
165 * @param windowToken The window's token.
166 *
167 * @return The magnification spec for the window.
168 *
169 * @see #setMagnificationCallbacks(MagnificationCallbacks)
170 */
171 public abstract MagnificationSpec getCompatibleMagnificationSpecForWindow(
172 IBinder windowToken);
173
174 /**
175 * Sets a callback for observing which windows are touchable for the purposes
176 * of accessibility.
177 *
178 * @param callback The callback.
179 */
180 public abstract void setWindowsForAccessibilityCallback(
181 WindowsForAccessibilityCallback callback);
182
183 /**
184 * Sets a filter for manipulating the input event stream.
185 *
186 * @param filter The filter implementation.
187 */
188 public abstract void setInputFilter(IInputFilter filter);
189
190 /**
191 * Gets the token of the window that has input focus.
192 *
193 * @return The token.
194 */
195 public abstract IBinder getFocusedWindowToken();
196
197 /**
198 * @return Whether the keyguard is engaged.
199 */
200 public abstract boolean isKeyguardLocked();
201
202 /**
203 * Gets the frame of a window given its token.
204 *
205 * @param token The token.
206 * @param outBounds The frame to populate.
207 */
208 public abstract void getWindowFrame(IBinder token, Rect outBounds);
Craig Mautner8a0da012014-05-31 15:13:37 -0700209
210 /**
Alan Viverettee34560b22014-07-10 14:50:06 -0700211 * Opens the global actions dialog.
212 */
213 public abstract void showGlobalActions();
214
215 /**
Craig Mautner8a0da012014-05-31 15:13:37 -0700216 * Invalidate all visible windows. Then report back on the callback once all windows have
217 * redrawn.
218 */
Craig Mautner13f6ea72014-06-23 14:57:02 -0700219 public abstract void waitForAllWindowsDrawn(Runnable callback, long timeout);
Svetoslav3a5c7212014-10-14 09:54:26 -0700220
221 /**
222 * Adds a window token for a given window type.
223 *
224 * @param token The token to add.
225 * @param type The window type.
226 */
227 public abstract void addWindowToken(android.os.IBinder token, int type);
228
229 /**
230 * Removes a window token.
231 *
232 * @param token The toke to remove.
233 * @param removeWindows Whether to also remove the windows associated with the token.
234 */
235 public abstract void removeWindowToken(android.os.IBinder token, boolean removeWindows);
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100236
237 /**
238 * Registers a listener to be notified about app transition events.
239 *
240 * @param listener The listener to register.
241 */
242 public abstract void registerAppTransitionListener(AppTransitionListener listener);
Seigo Nonaka7309b122015-08-17 18:34:13 -0700243
244 /**
245 * Retrieves a height of input method window.
246 */
247 public abstract int getInputMethodWindowVisibleHeight();
248
249 /**
250 * Saves last input method window for transition.
251 *
252 * Note that it is assumed that this method is called only by InputMethodManagerService.
253 */
254 public abstract void saveLastInputMethodWindowForTransition();
255
256 /**
257 * Returns true when the hardware keyboard is available.
258 */
259 public abstract boolean isHardKeyboardAvailable();
260
261 /**
262 * Sets the callback listener for hardware keyboard status changes.
263 *
264 * @param listener The listener to set.
265 */
266 public abstract void setOnHardKeyboardStatusChangeListener(
267 OnHardKeyboardStatusChangeListener listener);
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -0700268
269 /** Returns true if the stack with the input Id is currently visible. */
270 public abstract boolean isStackVisible(int stackId);
Jorim Jaggi9511b0f2016-01-29 19:12:44 -0800271
272 /**
273 * @return True if and only if the docked divider is currently in resize mode.
274 */
275 public abstract boolean isDockedDividerResizing();
Svetoslav8e3feb12014-02-24 13:46:47 -0800276}