diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-03-04 15:24:04 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2015-07-06 14:09:27 +1000 |
commit | 98b1e212ac458ab0c1757b276a5128b575adfe05 (patch) | |
tree | ad1f90a703d5da38b8c4760012a8cb4444636d9a /src/libinput.sym | |
parent | 37c000ad5e444339c98a568dfad2ce5740c38665 (diff) |
touchpad: Extend the touchpad gesture API with pinch gestures
Extend the touchpad gesture API with pinch gestures. Note that this
new API offers a single event stream for both pinch and rotate data, this
is deliberate as some applications may be interested in getting both at
the same time. Applications which are only interested in one or the other
can simply ignore the other.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Acked-by: Jason Gerecke <jason.gerecke@wacom.com>
Diffstat (limited to 'src/libinput.sym')
-rw-r--r-- | src/libinput.sym | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libinput.sym b/src/libinput.sym index f81ce0d7..0060ba87 100644 --- a/src/libinput.sym +++ b/src/libinput.sym @@ -148,12 +148,14 @@ LIBINPUT_0.19.0 { } LIBINPUT_0.15.0; TOUCHPAD_GESTURES { + libinput_event_gesture_get_angle_delta; libinput_event_gesture_get_base_event; libinput_event_gesture_get_dx; libinput_event_gesture_get_dx_unaccelerated; libinput_event_gesture_get_dy; libinput_event_gesture_get_dy_unaccelerated; libinput_event_gesture_get_finger_count; + libinput_event_gesture_get_scale; libinput_event_gesture_get_time; libinput_event_get_gesture_event; } LIBINPUT_0.19.0; |