[libinput] Add support for tap and drag

From libinput documentation:
A tap immediately followed by a finger down and that finger being held
down emulates a button press. Moving the finger around can thus drag
the selected item on the screen.
This commit is contained in:
Martin Gräßlin 2016-08-11 16:02:26 +02:00
parent 00f3f990d6
commit 02cf9e8a64
5 changed files with 103 additions and 0 deletions

View file

@ -69,6 +69,10 @@ private Q_SLOTS:
void testEnabled(); void testEnabled();
void testTapToClick_data(); void testTapToClick_data();
void testTapToClick(); void testTapToClick();
void testTapAndDragEnabledByDefault_data();
void testTapAndDragEnabledByDefault();
void testTapAndDrag_data();
void testTapAndDrag();
}; };
void TestLibinputDevice::testStaticGetter() void TestLibinputDevice::testStaticGetter()
@ -648,5 +652,59 @@ void TestLibinputDevice::testTapToClick()
QCOMPARE(tapToClickChangedSpy.isEmpty(), initValue == expectedValue); QCOMPARE(tapToClickChangedSpy.isEmpty(), initValue == expectedValue);
} }
void TestLibinputDevice::testTapAndDragEnabledByDefault_data()
{
QTest::addColumn<bool>("enabled");
QTest::newRow("enabled") << true;
QTest::newRow("disabled") << false;
}
void TestLibinputDevice::testTapAndDragEnabledByDefault()
{
QFETCH(bool, enabled);
libinput_device device;
device.tapAndDragEnabledByDefault = enabled;
Device d(&device);
QCOMPARE(d.tapAndDragEnabledByDefault(), enabled);
QCOMPARE(d.property("tapAndDragEnabledByDefault").toBool(), enabled);
}
void TestLibinputDevice::testTapAndDrag_data()
{
QTest::addColumn<bool>("initValue");
QTest::addColumn<bool>("setValue");
QTest::addColumn<bool>("setShouldFail");
QTest::addColumn<bool>("expectedValue");
QTest::newRow("true -> false") << true << false << false << false;
QTest::newRow("false -> true") << false << true << false << true;
QTest::newRow("set fails") << true << false << true << true;
QTest::newRow("true -> true") << true << true << false << true;
QTest::newRow("false -> false") << false << false << false << false;
}
void TestLibinputDevice::testTapAndDrag()
{
libinput_device device;
QFETCH(bool, initValue);
QFETCH(bool, setShouldFail);
device.tapAndDrag = initValue;
device.setTapAndDragReturnValue = setShouldFail;
Device d(&device);
QCOMPARE(d.isTapAndDrag(), initValue);
QCOMPARE(d.property("tapAndDrag").toBool(), initValue);
QSignalSpy tapAndDragChangedSpy(&d, &Device::tapAndDragChanged);
QVERIFY(tapAndDragChangedSpy.isValid());
QFETCH(bool, setValue);
d.setTapAndDrag(setValue);
QFETCH(bool, expectedValue);
QCOMPARE(d.isTapAndDrag(), expectedValue);
QCOMPARE(tapAndDragChangedSpy.isEmpty(), initValue == expectedValue);
}
QTEST_GUILESS_MAIN(TestLibinputDevice) QTEST_GUILESS_MAIN(TestLibinputDevice)
#include "device_test.moc" #include "device_test.moc"

View file

@ -103,6 +103,33 @@ enum libinput_config_tap_state libinput_device_config_tap_get_default_enabled(st
} }
} }
enum libinput_config_drag_state libinput_device_config_tap_get_default_drag_enabled(struct libinput_device *device)
{
if (device->tapAndDragEnabledByDefault) {
return LIBINPUT_CONFIG_DRAG_ENABLED;
} else {
return LIBINPUT_CONFIG_DRAG_DISABLED;
}
}
enum libinput_config_drag_state libinput_device_config_tap_get_drag_enabled(struct libinput_device *device)
{
if (device->tapAndDrag) {
return LIBINPUT_CONFIG_DRAG_ENABLED;
} else {
return LIBINPUT_CONFIG_DRAG_DISABLED;
}
}
enum libinput_config_status libinput_device_config_tap_set_drag_enabled(struct libinput_device *device, enum libinput_config_drag_state enable)
{
if (device->setTapAndDragReturnValue == 0) {
device->tapAndDrag = (enable == LIBINPUT_CONFIG_DRAG_ENABLED);
return LIBINPUT_CONFIG_STATUS_SUCCESS;
}
return LIBINPUT_CONFIG_STATUS_INVALID;
}
int libinput_device_config_dwt_is_available(struct libinput_device *device) int libinput_device_config_dwt_is_available(struct libinput_device *device)
{ {
return device->supportsDisableWhileTyping; return device->supportsDisableWhileTyping;

View file

@ -42,6 +42,8 @@ struct libinput_device {
int deviceSizeReturnValue = 0; int deviceSizeReturnValue = 0;
bool tapEnabledByDefault = false; bool tapEnabledByDefault = false;
bool tapToClick = false; bool tapToClick = false;
bool tapAndDragEnabledByDefault = false;
bool tapAndDrag = false;
bool supportsDisableWhileTyping = false; bool supportsDisableWhileTyping = false;
bool supportsPointerAcceleration = false; bool supportsPointerAcceleration = false;
bool supportsLeftHanded = false; bool supportsLeftHanded = false;
@ -57,6 +59,7 @@ struct libinput_device {
bool enabled = true; bool enabled = true;
int setEnableModeReturnValue = 0; int setEnableModeReturnValue = 0;
int setTapToClickReturnValue = 0; int setTapToClickReturnValue = 0;
int setTapAndDragReturnValue = 0;
}; };
struct libinput_event { struct libinput_event {

View file

@ -91,6 +91,8 @@ Device::Device(libinput_device *device, QObject *parent)
, m_tapFingerCount(libinput_device_config_tap_get_finger_count(m_device)) , m_tapFingerCount(libinput_device_config_tap_get_finger_count(m_device))
, m_tapToClickEnabledByDefault(libinput_device_config_tap_get_default_enabled(m_device) == LIBINPUT_CONFIG_TAP_ENABLED) , m_tapToClickEnabledByDefault(libinput_device_config_tap_get_default_enabled(m_device) == LIBINPUT_CONFIG_TAP_ENABLED)
, m_tapToClick(libinput_device_config_tap_get_enabled(m_device)) , m_tapToClick(libinput_device_config_tap_get_enabled(m_device))
, m_tapAndDragEnabledByDefault(libinput_device_config_tap_get_default_drag_enabled(m_device))
, m_tapAndDrag(libinput_device_config_tap_get_drag_enabled(m_device))
, m_supportsDisableWhileTyping(libinput_device_config_dwt_is_available(m_device)) , m_supportsDisableWhileTyping(libinput_device_config_dwt_is_available(m_device))
, m_supportsPointerAcceleration(libinput_device_config_accel_is_available(m_device)) , m_supportsPointerAcceleration(libinput_device_config_accel_is_available(m_device))
, m_supportsLeftHanded(libinput_device_config_left_handed_is_available(m_device)) , m_supportsLeftHanded(libinput_device_config_left_handed_is_available(m_device))
@ -190,6 +192,7 @@ void Device::method(bool set) \
CONFIG(setEnabled, !m_supportsDisableEvents, send_events_set_mode, SEND_EVENTS, enabled) CONFIG(setEnabled, !m_supportsDisableEvents, send_events_set_mode, SEND_EVENTS, enabled)
CONFIG(setTapToClick, m_tapFingerCount == 0, tap_set_enabled, TAP, tapToClick) CONFIG(setTapToClick, m_tapFingerCount == 0, tap_set_enabled, TAP, tapToClick)
CONFIG(setTapAndDrag, false, tap_set_drag_enabled, DRAG, tapAndDrag)
#undef CONFIG #undef CONFIG

View file

@ -59,6 +59,8 @@ class Device : public QObject
Q_PROPERTY(bool leftHanded READ isLeftHanded WRITE setLeftHanded NOTIFY leftHandedChanged) Q_PROPERTY(bool leftHanded READ isLeftHanded WRITE setLeftHanded NOTIFY leftHandedChanged)
Q_PROPERTY(qreal pointerAcceleration READ pointerAcceleration WRITE setPointerAcceleration NOTIFY pointerAccelerationChanged) Q_PROPERTY(qreal pointerAcceleration READ pointerAcceleration WRITE setPointerAcceleration NOTIFY pointerAccelerationChanged)
Q_PROPERTY(bool tapToClick READ isTapToClick WRITE setTapToClick NOTIFY tapToClickChanged) Q_PROPERTY(bool tapToClick READ isTapToClick WRITE setTapToClick NOTIFY tapToClickChanged)
Q_PROPERTY(bool tapAndDragEnabledByDefault READ tapAndDragEnabledByDefault CONSTANT)
Q_PROPERTY(bool tapAndDrag READ isTapAndDrag WRITE setTapAndDrag NOTIFY tapAndDragChanged)
Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged) Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
public: public:
explicit Device(libinput_device *device, QObject *parent = nullptr); explicit Device(libinput_device *device, QObject *parent = nullptr);
@ -119,6 +121,13 @@ public:
* Set the Device to tap to click if @p set is @c true. * Set the Device to tap to click if @p set is @c true.
**/ **/
void setTapToClick(bool set); void setTapToClick(bool set);
bool tapAndDragEnabledByDefault() const {
return m_tapAndDragEnabledByDefault;
}
bool isTapAndDrag() const {
return m_tapAndDrag;
}
void setTapAndDrag(bool set);
bool supportsDisableWhileTyping() const { bool supportsDisableWhileTyping() const {
return m_supportsDisableWhileTyping; return m_supportsDisableWhileTyping;
} }
@ -180,6 +189,7 @@ Q_SIGNALS:
void pointerAccelerationChanged(); void pointerAccelerationChanged();
void enabledChanged(); void enabledChanged();
void tapToClickChanged(); void tapToClickChanged();
void tapAndDragChanged();
private: private:
libinput_device *m_device; libinput_device *m_device;
@ -200,6 +210,8 @@ private:
int m_tapFingerCount; int m_tapFingerCount;
bool m_tapToClickEnabledByDefault; bool m_tapToClickEnabledByDefault;
bool m_tapToClick; bool m_tapToClick;
bool m_tapAndDragEnabledByDefault;
bool m_tapAndDrag;
bool m_supportsDisableWhileTyping; bool m_supportsDisableWhileTyping;
bool m_supportsPointerAcceleration; bool m_supportsPointerAcceleration;
bool m_supportsLeftHanded; bool m_supportsLeftHanded;