blob: c0bf1e89abfb01b6aba0d621b7f17532c103d664 [file] [log] [blame]
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01001/*
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 com.android.server.wm;
18
Wale Ogunwale68278562017-09-23 17:13:55 -070019import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010020
21/**
22 * Describes the mode in which a window is drag resizing.
23 */
24class DragResizeMode {
25
26 /**
27 * Freeform mode: Client surface is fullscreen, and client is responsible to draw window at
28 * the correct position.
29 */
30 static final int DRAG_RESIZE_MODE_FREEFORM = 0;
31
32 /**
33 * Mode for resizing the docked (and adjacent) stack: Client surface is fullscreen, but window
34 * is drawn at (0, 0), window manager is responsible for positioning the surface when draging.
35 */
36 static final int DRAG_RESIZE_MODE_DOCKED_DIVIDER = 1;
37
Wale Ogunwale68278562017-09-23 17:13:55 -070038 static boolean isModeAllowedForStack(TaskStack stack, int mode) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010039 switch (mode) {
40 case DRAG_RESIZE_MODE_FREEFORM:
Wale Ogunwale68278562017-09-23 17:13:55 -070041 return stack.getWindowingMode() == WINDOWING_MODE_FREEFORM;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010042 case DRAG_RESIZE_MODE_DOCKED_DIVIDER:
Wale Ogunwale68278562017-09-23 17:13:55 -070043 return stack.inSplitScreenWindowingMode();
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +010044 default:
45 return false;
46 }
47 }
48}