/* SPDX-FileCopyrightText: 2021 Devin Lin SPDX-FileCopyrightText: 2019 Aditya Mehra SPDX-FileCopyrightText: 2014-2015 Harald Sitter SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ import QtQuick import QtQuick.Layouts import org.kde.plasma.private.volume 0.1 as VolumeLib import org.kde.plasma.private.mobileshell.state as MobileShellState import org.kde.plasma.private.mobileshell as MobileShell /** * This imports the volume OSD and also sets up keyboard/hardware button bindings. */ QtObject { id: component function showVolumeOverlay() { osd.showOverlay(); } Component.onCompleted: { MobileShell.AudioInfo.volumeChanged.connect(showVolumeOverlay); } property var apiListener: Connections { target: MobileShellState.ShellDBusClient function onShowVolumeOSDRequested() { component.showVolumeOverlay(); } } property var osd: VolumeOSD {} property var actionCollection: VolumeLib.GlobalActionCollection { name: "kmix" displayName: i18n("Audio") VolumeLib.GlobalAction { objectName: "increase_volume" text: i18n("Increase Volume") shortcut: Qt.Key_VolumeUp onTriggered: MobileShell.AudioInfo.increaseVolume() } VolumeLib.GlobalAction { objectName: "decrease_volume" text: i18n("Decrease Volume") shortcut: Qt.Key_VolumeDown onTriggered: MobileShell.AudioInfo.decreaseVolume() } VolumeLib.GlobalAction { objectName: "mute" text: i18n("Mute") shortcut: Qt.Key_VolumeMute onTriggered: MobileShell.AudioInfo.muteVolume() } } }