2022-03-13 21:47:42 +00:00
|
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
|
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
|
|
2023-03-16 07:21:01 +00:00
|
|
|
import QtQuick
|
2022-03-13 21:47:42 +00:00
|
|
|
|
2023-03-16 07:21:01 +00:00
|
|
|
import org.kde.plasma.private.mobileshell as MobileShell
|
|
|
|
|
import org.kde.plasma.private.mobileshell.state as MobileShellState
|
2023-03-17 02:44:36 +00:00
|
|
|
import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS
|
2022-03-13 21:47:42 +00:00
|
|
|
|
2023-03-17 02:44:36 +00:00
|
|
|
QS.QuickSetting {
|
2022-03-13 21:47:42 +00:00
|
|
|
text: i18n("Sound")
|
|
|
|
|
icon: "audio-speakers-symbolic"
|
2023-10-19 17:39:03 +00:00
|
|
|
status: i18n("%1%", MobileShell.AudioInfo.volumeValue)
|
2022-03-13 21:47:42 +00:00
|
|
|
enabled: false
|
|
|
|
|
settingsCommand: "plasma-open-settings kcm_pulseaudio"
|
2023-03-20 04:10:14 +00:00
|
|
|
|
2022-03-13 21:47:42 +00:00
|
|
|
function toggle() {
|
2023-03-20 04:10:14 +00:00
|
|
|
MobileShellState.ShellDBusClient.showVolumeOSD()
|
2022-03-13 21:47:42 +00:00
|
|
|
}
|
|
|
|
|
}
|