1 /*
2  * Copyright (C) 2022 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 
17 package com.android.systemui.mediaprojection.appselector.data
18 
19 import android.annotation.ColorInt
20 import android.annotation.UserIdInt
21 import android.app.ActivityManager.RecentTaskInfo
22 import android.content.ComponentName
23 import com.android.wm.shell.util.SplitBounds
24 
25 data class RecentTask(
26     val taskId: Int,
27     val displayId: Int,
28     @UserIdInt val userId: Int,
29     val topActivityComponent: ComponentName?,
30     val baseIntentComponent: ComponentName?,
31     @ColorInt val colorBackground: Int?,
32     val isForegroundTask: Boolean,
33     val userType: UserType,
34     val splitBounds: SplitBounds?,
35 ) {
36     constructor(
37         taskInfo: RecentTaskInfo,
38         isForegroundTask: Boolean,
39         userType: UserType,
40         splitBounds: SplitBounds? = null
41     ) : this(
42         taskInfo.taskId,
43         taskInfo.displayId,
44         taskInfo.userId,
45         taskInfo.topActivity,
46         taskInfo.baseIntent?.component,
47         taskInfo.taskDescription?.backgroundColor,
48         isForegroundTask,
49         userType,
50         splitBounds
51     )
52 
53     enum class UserType {
54         STANDARD,
55         WORK,
56         PRIVATE,
57         CLONED
58     }
59 }
60