mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
This commit makes a much needed cleanup and overhaul of the volume OSD. Changes: - Fix context menus for app streams - Remove dedicated mute button in cards (simplifies the UI for touch devices) - Add selection background for card delegates - Sync audio models with plasma-pa - Simplify implementation of cards - Sync volume slider implementation with plasma-pa
35 lines
1.2 KiB
QML
35 lines
1.2 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2014-2015 Harald Sitter <sitter@kde.org>
|
|
SPDX-FileCopyrightText: 2021 Devin Lin <espidev@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.private.volume 0.1
|
|
|
|
// adapted from https://invent.kde.org/plasma/plasma-pa/-/blob/master/applet/contents/ui/DeviceListItem.qml
|
|
ListItemBase {
|
|
readonly property var currentPort: model.Ports[model.ActivePortIndex]
|
|
readonly property var currentActivePortIndex: model.ActivePortIndex
|
|
readonly property var currentMuted: model.Muted
|
|
readonly property var activePortIndex: model.ActivePortIndex
|
|
|
|
label: {
|
|
if (currentPort && currentPort.description) {
|
|
if (onlyOne || !model.Description) {
|
|
return currentPort.description;
|
|
} else {
|
|
return i18nc("label of device items", "%1 (%2)", currentPort.description, model.Description);
|
|
}
|
|
}
|
|
if (model.Description) {
|
|
return model.Description;
|
|
}
|
|
if (model.Name) {
|
|
return model.Name;
|
|
}
|
|
return i18n("Device name not found");
|
|
}
|
|
}
|