2022-03-13 21:47:42 +00:00
|
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
|
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
2022-03-17 04:33:13 +00:00
|
|
|
import org.kde.plasma.quicksetting.screenrotation 1.0
|
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("Auto-rotate")
|
|
|
|
|
icon: "rotation-allowed"
|
|
|
|
|
settingsCommand: "plasma-open-settings kcm_kscreen"
|
2022-03-17 04:33:13 +00:00
|
|
|
enabled: ScreenRotationUtil.screenRotationEnabled
|
2022-10-04 15:09:18 +00:00
|
|
|
available: ScreenRotationUtil.available
|
2022-03-13 21:47:42 +00:00
|
|
|
function toggle() {
|
2022-03-17 04:33:13 +00:00
|
|
|
ScreenRotationUtil.screenRotationEnabled = !enabled
|
2022-03-13 21:47:42 +00:00
|
|
|
}
|
|
|
|
|
}
|