blob: a997302051362b692e9272cc40da9ae6a64ebff8 [file] [log] [blame]
Skuhneb8160872015-09-22 09:51:39 -07001/*
2 * Copyright (C) 2015 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
John Reck32f140aa62018-10-04 15:08:24 -070019import android.graphics.RecordingCanvas;
Skuhneb8160872015-09-22 09:51:39 -070020import android.graphics.Rect;
21
22/**
23 * These callbacks are used to communicate window configuration changes while the user is performing
24 * window changes.
Skuhne980ee472015-10-06 11:31:31 -070025 * Note: Note that at the time of onWindowDragResizeStart the content size isn't known. A consumer
26 * should therfore not draw anything before the additional onContentDraw call has arrived.
Skuhneb8160872015-09-22 09:51:39 -070027 * @hide
28 */
29public interface WindowCallbacks {
Jorim Jaggic39c7b02016-03-24 10:47:07 -070030
31 public static final int RESIZE_MODE_INVALID = -1;
32 public static final int RESIZE_MODE_FREEFORM = 0;
33 public static final int RESIZE_MODE_DOCKED_DIVIDER = 1;
34
Skuhneb8160872015-09-22 09:51:39 -070035 /**
36 * Called by the system when the window got changed by the user, before the layouter got called.
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080037 * It also gets called when the insets changed, or when the window switched between a fullscreen
38 * layout or a non-fullscreen layout. It can be used to perform a "quick and dirty" resize which
39 * should never take more then 4ms to complete.
Skuhneb8160872015-09-22 09:51:39 -070040 *
41 * <p>At the time the layouting has not happened yet.
42 *
43 * @param newBounds The new window frame bounds.
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080044 * @param fullscreen Whether the window is currently drawing in fullscreen.
45 * @param systemInsets The current visible system insets for the window.
46 * @param stableInsets The stable insets for the window.
Skuhneb8160872015-09-22 09:51:39 -070047 */
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080048 void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets,
49 Rect stableInsets);
Skuhneb8160872015-09-22 09:51:39 -070050
51 /**
52 * Called when a drag resize starts.
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080053 *
Skuhneb8160872015-09-22 09:51:39 -070054 * @param initialBounds The initial bounds where the window will be.
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080055 * @param fullscreen Whether the window is currently drawing in fullscreen.
56 * @param systemInsets The current visible system insets for the window.
57 * @param stableInsets The stable insets for the window.
Skuhneb8160872015-09-22 09:51:39 -070058 */
Jorim Jaggi9511b0f2016-01-29 19:12:44 -080059 void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets,
Jorim Jaggic39c7b02016-03-24 10:47:07 -070060 Rect stableInsets, int resizeMode);
Skuhneb8160872015-09-22 09:51:39 -070061
62 /**
63 * Called when a drag resize ends.
64 */
65 void onWindowDragResizeEnd();
Skuhne980ee472015-10-06 11:31:31 -070066
67 /**
Chong Zhang8dbd9ad2015-10-09 10:06:11 -070068 * The content will now be drawn to these bounds. Returns true if
69 * a draw should be requested after the next content draw.
Skuhne980ee472015-10-06 11:31:31 -070070 */
Chong Zhang8dbd9ad2015-10-09 10:06:11 -070071 boolean onContentDrawn(int offsetX, int offsetY, int sizeX, int sizeY);
72
73 /**
74 * Called to request the window to draw one frame.
75 * @param reportNextDraw Whether it should report when the requested draw finishes.
76 */
77 void onRequestDraw(boolean reportNextDraw);
Jorim Jaggic39c7b02016-03-24 10:47:07 -070078
79 /**
80 * Called after all the content has drawn and the callback now has the ability to draw something
81 * on top of everything. Call {@link ViewRootImpl#requestInvalidateRootRenderNode} when this
82 * content needs to be redrawn.
83 *
84 * @param canvas The canvas to draw on.
85 */
John Reck32f140aa62018-10-04 15:08:24 -070086 void onPostDraw(RecordingCanvas canvas);
Skuhneb8160872015-09-22 09:51:39 -070087}