blob: 168f782d02a63359fff2ec6748052fcb9ff6a8e6 [file] [log] [blame]
Evan Rosky0037e5f2019-11-05 10:26:24 -08001/**
2 * Copyright (c) 2020, 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.app;
18
19import android.app.ActivityManager;
20import android.view.ITaskOrganizer;
21import android.view.IWindowContainer;
22import android.view.WindowContainerTransaction;
23
24/** @hide */
25interface ITaskOrganizerController {
26
27 /**
28 * Register a TaskOrganizer to manage tasks as they enter the given windowing mode.
29 * If there was already a TaskOrganizer for this windowing mode it will be evicted
30 * and receive taskVanished callbacks in the process.
31 */
32 void registerTaskOrganizer(ITaskOrganizer organizer, int windowingMode);
33
34 /** Apply multiple WindowContainer operations at once. */
35 void applyContainerTransaction(in WindowContainerTransaction t);
36
37 /** Creates a persistent root task in WM for a particular windowing-mode. */
38 ActivityManager.RunningTaskInfo createRootTask(int displayId, int windowingMode);
39
40 /** Deletes a persistent root task in WM */
41 boolean deleteRootTask(IWindowContainer task);
42
43 /** Get the root task which contains the current ime target */
44 IWindowContainer getImeTarget(int display);
45
46 /**
47 * Set's the root task to launch new tasks into on a display. {@code null} means no launch root
48 * and thus new tasks just end up directly on the display.
49 */
50 void setLaunchRoot(int displayId, in IWindowContainer root);
51}