mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
This is an initial port to feedbackd for the haptics plugin. This implementation is a simple port to have the motor enabled for a certain duration. We will eventually want to use feedbackd events to trigger these instead. Related MR for qtfeedback: https://invent.kde.org/jbbgameich/ktactilefeedback/-/merge_requests/2 https://invent.kde.org/teams/plasma-mobile/issues/-/issues/10
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
|
<!--
|
|
- SPDX-FileCopyrightText: 2025 Guido Günther <agx@sigxcpu.org>
|
|
- SPDX-License-Identifier: GPL-3.0-or-later
|
|
-->
|
|
<node>
|
|
<!-- org.sigxcpu.Feedback.Haptic
|
|
@short_description: Interface to make a device vibrate
|
|
|
|
This D-Bus interface is used to make a device's haptic motor
|
|
vibrate. This is can be useful e.g. for games.
|
|
|
|
To provider user feedback the event based interface should be
|
|
preferred.
|
|
-->
|
|
<interface name="org.sigxcpu.Feedback.Haptic">
|
|
<!--
|
|
Vibrate:
|
|
@app_id: The application id usually in "reverse DNS" format
|
|
@pattern: The vibration pattern.
|
|
@success: Whether vibration was triggered
|
|
|
|
Triggers the given vibration pattern on the haptic device. The
|
|
pattern is a sequence of relative amplitude and duration pairs.
|
|
The amplitude must be between 0.0 and 1.0, durations are in
|
|
milliseconds.
|
|
-->
|
|
<method name="Vibrate">
|
|
<arg direction="in" name="app_id" type="s"/>
|
|
<arg direction="in" name="pattern" type="a(du)"/>
|
|
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="VibrationEventList" />
|
|
<arg direction="out" name="success" type="b"/>
|
|
</method>
|
|
|
|
</interface>
|
|
|
|
</node>
|