blob: 782f3499fb7954b0514316ad72e61691bdf27b02 [file] [log] [blame]
Winson Chung655332c2016-10-31 13:14:28 -07001/**
2 * Copyright (c) 2016, 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
Winson Chunga29eb982016-12-14 12:01:27 -080019import android.content.pm.ParceledListSlice;
Winson Chung2a82fe52017-02-02 14:43:34 -080020import android.graphics.Rect;
Winson Chung655332c2016-10-31 13:14:28 -070021import android.view.IPinnedStackController;
22
23/**
Winson Chunga29eb982016-12-14 12:01:27 -080024 * Listener for changes to the pinned stack made by the WindowManager.
25 *
26 * @hide
27 */
Winson Chung655332c2016-10-31 13:14:28 -070028oneway interface IPinnedStackListener {
29
30 /**
31 * Called when the listener is registered and provides an interface to call back to the pinned
32 * stack controller to update the controller of the pinned stack state.
33 */
34 void onListenerRegistered(IPinnedStackController controller);
35
36 /**
Winson Chung2a82fe52017-02-02 14:43:34 -080037 * Called when the window manager has detected a change that would cause the movement bounds
38 * to be changed (ie. after configuration change, aspect ratio change, etc). It then provides
39 * the components that allow the listener to calculate the movement bounds itself. The
40 * {@param normalBounds} are also the default bounds that the PiP would be entered in its
Winson Chungbaa7b722017-03-03 21:33:44 -080041 * current state with the aspect ratio applied. The {@param animatingBounds} are provided
42 * to indicate the current target bounds of the pinned stack (the final bounds if animating,
43 * the current bounds if not), which may be helpful in calculating dependent animation bounds.
Winson Chung655332c2016-10-31 13:14:28 -070044 */
Winson Chungbaa7b722017-03-03 21:33:44 -080045 void onMovementBoundsChanged(in Rect insetBounds, in Rect normalBounds, in Rect animatingBounds,
Winson Chung2a82fe52017-02-02 14:43:34 -080046 boolean fromImeAdjustement);
47
48 /**
49 * Called when window manager decides to adjust the pinned stack bounds because of the IME, or
50 * when the listener is first registered to allow the listener to synchronized its state with
51 * the controller. This call will always be followed by a onMovementBoundsChanged() call
52 * with fromImeAdjustement set to true.
53 */
54 void onImeVisibilityChanged(boolean imeVisible, int imeHeight);
Winson Chunga29eb982016-12-14 12:01:27 -080055
56 /**
57 * Called when window manager decides to adjust the minimized state, or when the listener
58 * is first registered to allow the listener to synchronized its state with the controller.
59 */
60 void onMinimizedStateChanged(boolean isMinimized);
61
62 /**
Winson Chunga29eb982016-12-14 12:01:27 -080063 * Called when the set of actions for the current PiP activity changes, or when the listener
64 * is first registered to allow the listener to synchronized its state with the controller.
65 */
66 void onActionsChanged(in ParceledListSlice actions);
Winson Chung655332c2016-10-31 13:14:28 -070067}