shift-shell/components/mobileshell/qml/components/HapticsEffect.qml
Devin Lin 83ce339cda components/hapticsplugin: Introduce direct haptics API for hfd-service
Fixes https://invent.kde.org/plasma/plasma-mobile/-/issues/270

Introduce a direct haptics API for now for shell usage, and port to it. Also remove the vibration intensity setting as that didn't do anything.
2023-11-15 08:13:25 -08:00

16 lines
489 B
QML

// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
import QtQuick 2.15
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
import org.kde.plasma.private.mobileshell.hapticsplugin as HapticsPlugin
QtObject {
function buttonVibrate() {
if (ShellSettings.Settings.vibrationsEnabled) {
HapticsPlugin.VibrationManager.vibrate(ShellSettings.Settings.vibrationDuration);
}
}
}