860c4ee680
Bug: 390665752
Flag: com.android.window.flags.enable_desktop_taskbar_on_freeform_displays
Test: manual on desktop device. verify correct taskbar is shown
on home screen, in overview, in desktop mode, with fullscreen
app shown. Verify opening/launching apps from taskbar works
as expected.
Change-Id: I5c1e21799609c28ec44cc190bfc681934907199f
68 lines
2.8 KiB
Kotlin
68 lines
2.8 KiB
Kotlin
/*
|
|
* Copyright (C) 2024 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 com.android.launcher3.taskbar
|
|
|
|
import android.content.Context
|
|
import com.android.launcher3.statehandlers.DesktopVisibilityController
|
|
import com.android.launcher3.statehandlers.DesktopVisibilityController.TaskbarDesktopModeListener
|
|
import com.android.launcher3.taskbar.TaskbarBackgroundRenderer.Companion.MAX_ROUNDNESS
|
|
import com.android.launcher3.util.DisplayController
|
|
|
|
/** Handles Taskbar in Desktop Windowing mode. */
|
|
class TaskbarDesktopModeController(
|
|
private val context: Context,
|
|
private val desktopVisibilityController: DesktopVisibilityController,
|
|
) : TaskbarDesktopModeListener {
|
|
private lateinit var taskbarControllers: TaskbarControllers
|
|
private lateinit var taskbarSharedState: TaskbarSharedState
|
|
|
|
val areDesktopTasksVisibleAndNotInOverview: Boolean
|
|
get() = desktopVisibilityController.areDesktopTasksVisibleAndNotInOverview()
|
|
|
|
val areDesktopTasksVisible: Boolean
|
|
get() = desktopVisibilityController.areDesktopTasksVisible()
|
|
|
|
fun init(controllers: TaskbarControllers, sharedState: TaskbarSharedState) {
|
|
taskbarControllers = controllers
|
|
taskbarSharedState = sharedState
|
|
desktopVisibilityController.registerTaskbarDesktopModeListener(this)
|
|
}
|
|
|
|
override fun onTaskbarCornerRoundingUpdate(doesAnyTaskRequireTaskbarRounding: Boolean) {
|
|
taskbarSharedState.showCornerRadiusInDesktopMode = doesAnyTaskRequireTaskbarRounding
|
|
val cornerRadius = getTaskbarCornerRoundness(doesAnyTaskRequireTaskbarRounding)
|
|
taskbarControllers.taskbarCornerRoundness.animateToValue(cornerRadius).start()
|
|
}
|
|
|
|
fun shouldShowDesktopTasksInTaskbar(): Boolean {
|
|
return desktopVisibilityController.areDesktopTasksVisible() ||
|
|
DisplayController.showDesktopTaskbarForFreeformDisplay(context) ||
|
|
(DisplayController.showLockedTaskbarOnHome(context) &&
|
|
taskbarControllers.taskbarStashController.isOnHome)
|
|
}
|
|
|
|
fun getTaskbarCornerRoundness(doesAnyTaskRequireTaskbarRounding: Boolean): Float {
|
|
return if (doesAnyTaskRequireTaskbarRounding) {
|
|
MAX_ROUNDNESS
|
|
} else {
|
|
0f
|
|
}
|
|
}
|
|
|
|
fun onDestroy() = desktopVisibilityController.unregisterTaskbarDesktopModeListener(this)
|
|
}
|