summaryrefslogtreecommitdiff
path: root/core/java/android/window/TaskConstants.java
blob: b286e44e4004ef66cfb829266a64bc42b06e6cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.window;

import android.annotation.IntDef;

/**
 * Holds constants related to task managements but not suitable in {@code TaskOrganizer}.
 * @hide
 */
public class TaskConstants {

    /**
     * Sizes of a z-order region assigned to child layers of task layers. Components are allowed to
     * use all values in [assigned value, assigned value + region size).
     * @hide
     */
    public static final int TASK_CHILD_LAYER_REGION_SIZE = 10000;

    /**
     * Indicates system responding to task drag resizing while app content isn't updated.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_TASK_BACKGROUND = -3 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Provides solid color letterbox background or blur effect and dimming for the wallpaper
     * letterbox background. It also listens to touches for double tap gesture for repositioning
     * letterbox.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_LETTERBOX_BACKGROUND =
            -2 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Compat UI components: reachability education, size compat restart
     * button, letterbox education, restart dialog.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_COMPAT_UI = TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Settings dialogs belonging to the task (e.g. Open by default settings dialog)
     * @hide
     */
    public static final int TASK_CHILD_LAYER_SETTINGS_DIALOG = 2 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Captions, window frames and resize handlers around task windows.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_WINDOW_DECORATIONS = 3 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Overlays the task when going into PIP w/ gesture navigation.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_RECENTS_ANIMATION_PIP_OVERLAY =
            4 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Allows other apps to add overlays on the task (i.e. game dashboard)
     * @hide
     */
    public static final int TASK_CHILD_LAYER_TASK_OVERLAY = 5 * TASK_CHILD_LAYER_REGION_SIZE;


    /**
     * Veil to cover task surface and other window decorations during resizes.
     * @hide
     */
    public static final int TASK_CHILD_LAYER_RESIZE_VEIL = 6 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * Floating menus belonging to a task (e.g. maximize menu).
     * @hide
     */
    public  static final int TASK_CHILD_LAYER_FLOATING_MENU = 7 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * The layer to use for Letterbox surfaces in Shell. Letterbox surfaces need to stay below the
     * activity layer which is 0.
     * @hide
     */
    public static final int TASK_CHILD_SHELL_LAYER_LETTERBOX_BACKGROUND =
            -1 * TASK_CHILD_LAYER_REGION_SIZE;

    /**
     * The layer to use for Letterbox spy surfaces in Shell. Letterbox spy surfaces need to stay
     * above the activity layer which is 0.
     * @hide
     */
    public static final int TASK_CHILD_SHELL_LAYER_LETTERBOX_SPY =
            TASK_CHILD_LAYER_REGION_SIZE / 10;

    /**
     * Z-orders of task child layers other than activities, task fragments and layers interleaved
     * with them, e.g. IME windows. [-10000, 10000) is reserved for these layers.
     * @hide
     */
    @IntDef({
            TASK_CHILD_LAYER_TASK_BACKGROUND,
            TASK_CHILD_LAYER_LETTERBOX_BACKGROUND,
            TASK_CHILD_LAYER_COMPAT_UI,
            TASK_CHILD_LAYER_SETTINGS_DIALOG,
            TASK_CHILD_LAYER_WINDOW_DECORATIONS,
            TASK_CHILD_LAYER_RECENTS_ANIMATION_PIP_OVERLAY,
            TASK_CHILD_LAYER_TASK_OVERLAY,
            TASK_CHILD_LAYER_RESIZE_VEIL,
            TASK_CHILD_SHELL_LAYER_LETTERBOX_BACKGROUND,
            TASK_CHILD_SHELL_LAYER_LETTERBOX_SPY
    })
    public @interface TaskChildLayer {}
}