platform/upstream/libinput.git
9 years agoMerge branch 'ref-counting-context'
Peter Hutterer [Wed, 25 Jun 2014 00:32:42 +0000 (10:32 +1000)]
Merge branch 'ref-counting-context'

Conflicts:
src/udev-seat.c
test/log.c

9 years agotest: Add context reference counting test
Jonas Ådahl [Tue, 24 Jun 2014 22:06:59 +0000 (00:06 +0200)]
test: Add context reference counting test

This test relies on valgrind detecting the leak and use-after-free.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoMake context reference counted
Jonas Ådahl [Tue, 24 Jun 2014 22:06:58 +0000 (00:06 +0200)]
Make context reference counted

Instead of only allowing one owner keeping a libinput context alive,
make context reference counted, replacing libinput_destroy() with
libinput_unref() while adding another function libinput_ref().

Even though there might not be any current use cases, it doesn't mean we
should hard code this usage model in the API. The old behaviour can be
emulated by never calling libinput_ref() while replacing
libinput_destroy() with libinput_unref().

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoMake ref count unref/ref() functions return resulting object pointer
Jonas Ådahl [Tue, 24 Jun 2014 22:06:57 +0000 (00:06 +0200)]
Make ref count unref/ref() functions return resulting object pointer

In order to know if an unref() destroyed an object and to allow more
convenient use of ref(), make both functions return a pointer to the
object it was passed, or NULL if that object was destroyed.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoChange the logging system to be per-context
Peter Hutterer [Wed, 18 Jun 2014 09:51:19 +0000 (19:51 +1000)]
Change the logging system to be per-context

Rather than a single global logging function, make the logging dependent on
the individual context. This way we won't stomp on each other's feet in the
(admittedly unusual) case of having multiple libinput contexts.

The userdata argument to the log handler was dropped. The caller has a ref to
the libinput context now, any userdata can be attached to that context
instead.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoudev: split libinput_udev context init into two functions
Peter Hutterer [Thu, 12 Jun 2014 01:44:31 +0000 (11:44 +1000)]
udev: split libinput_udev context init into two functions

This is preparation work for context-specific log handlers.

Callers are now encouraged to first initialize the context with
libinput_udev_create_context() and then set the seat for this context with
libinput_udev_assign_seat().

In the upcoming patch to support context-specific log handlers this enables a
caller to set the log handler for a context before any devices are
initialized. Otherwise, a log message generated by a new device may pass a
libinput context that the caller is not yet aware of.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: move the interface declaration up
Peter Hutterer [Fri, 13 Jun 2014 01:11:05 +0000 (11:11 +1000)]
test: move the interface declaration up

No functional changes, just some prep work.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoRename KEYBOARD_KEY_STATE to KEY_STATE
Peter Hutterer [Mon, 16 Jun 2014 21:55:35 +0000 (07:55 +1000)]
Rename KEYBOARD_KEY_STATE to KEY_STATE

e912d620d0f20f415b4d3dde967648e4b9c317b9 changed from POINTER_BUTTON_STATE to
simply BUTTON_STATE, replicate that for key events too.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotools: add a tool for GUI-based debugging
Peter Hutterer [Tue, 27 May 2014 05:29:55 +0000 (15:29 +1000)]
tools: add a tool for GUI-based debugging

Looking at debugging output is nice but not useful when testing for the feel
of a device. Add a tool that presents a canvas and draws the various events
onto it.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoName-space the scroll event types
Peter Hutterer [Sat, 26 Apr 2014 10:01:22 +0000 (20:01 +1000)]
Name-space the scroll event types

To provide a generic naming system of type_direction. That will become more
important once we add new axes as part of the ongoing work to support graphics
tablets.

[edit: and switch to the new defines]

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoAdd a function to get the size of a device
Peter Hutterer [Tue, 17 Jun 2014 05:45:07 +0000 (15:45 +1000)]
Add a function to get the size of a device

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoChange absolute and touch events to use mm as default unit
Peter Hutterer [Thu, 19 Jun 2014 01:30:21 +0000 (11:30 +1000)]
Change absolute and touch events to use mm as default unit

Instead of device-specific coordinates that the caller can't interpret without
knowing the range anyway, return mm as the default value.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoevdev: force a resolution of 1 where no resolution is set
Peter Hutterer [Thu, 19 Jun 2014 01:17:10 +0000 (11:17 +1000)]
evdev: force a resolution of 1 where no resolution is set

Avoids nasty surprises later when we divide by 0. This matters particularly
when testing a device through uinput, which can't set the resolution.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoevdev: keep the absinfo struct around instead of min/max
Peter Hutterer [Thu, 19 Jun 2014 01:11:36 +0000 (11:11 +1000)]
evdev: keep the absinfo struct around instead of min/max

We'll need that later for conversion to mm.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotouchpad: tp_current_touch: Fix off by one error
Hans de Goede [Wed, 18 Jun 2014 12:22:24 +0000 (14:22 +0200)]
touchpad: tp_current_touch: Fix off by one error

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotools: fix the publish-doc script
Peter Hutterer [Fri, 13 Jun 2014 04:43:28 +0000 (14:43 +1000)]
tools: fix the publish-doc script

Original script was broken, curse those last-minute changes before pushing

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoDocument the top software button behavior
Peter Hutterer [Thu, 12 Jun 2014 01:55:21 +0000 (11:55 +1000)]
Document the top software button behavior

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotest: fix a path test
Peter Hutterer [Fri, 13 Jun 2014 01:37:59 +0000 (11:37 +1000)]
test: fix a path test

Test with the right interface, otherwise checking to make sure we didn't call
open on any device is a bit pointless.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agopath: log two errors as application bugs
Peter Hutterer [Thu, 12 Jun 2014 01:48:13 +0000 (11:48 +1000)]
path: log two errors as application bugs

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agodoc: ignore LIBINPUT_ATTRIBUTE_PRINTF in doxygen
Peter Hutterer [Thu, 12 Jun 2014 01:42:25 +0000 (11:42 +1000)]
doc: ignore LIBINPUT_ATTRIBUTE_PRINTF in doxygen

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoAdd two doxygen cross-references for the logging functions
Peter Hutterer [Thu, 12 Jun 2014 01:12:50 +0000 (11:12 +1000)]
Add two doxygen cross-references for the logging functions

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotest: add a couple of top software button test
Peter Hutterer [Tue, 10 Jun 2014 23:39:12 +0000 (09:39 +1000)]
test: add a couple of top software button test

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: Add description for the T440 synaptics touchpad
Peter Hutterer [Tue, 10 Jun 2014 22:59:11 +0000 (08:59 +1000)]
test: Add description for the T440 synaptics touchpad

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: add clickpad software button tests
Peter Hutterer [Tue, 10 Jun 2014 23:45:07 +0000 (09:45 +1000)]
test: add clickpad software button tests

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: add a bunch of test for click behavior on touchpads
Peter Hutterer [Thu, 5 Jun 2014 06:25:37 +0000 (16:25 +1000)]
test: add a bunch of test for click behavior on touchpads

Mainly testing the behaviour when clicking during a tap or tap-n-drag. Adds a
new "feature" to the litest system, Apple clickpads don't have software
buttons by default.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: add litest_assert_empty_queue helper function
Peter Hutterer [Fri, 6 Jun 2014 00:58:11 +0000 (10:58 +1000)]
test: add litest_assert_empty_queue helper function

Checks if the queue is empty and prints informatino about any events before
failing.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotouchpad: always call into the the tap state machine
Peter Hutterer [Thu, 5 Jun 2014 06:22:52 +0000 (16:22 +1000)]
touchpad: always call into the the tap state machine

A button event consumed by the softbutton or clickpad code does not feed into
the tap state machine, leaving it in its current state. The touch generating
that event however may have triggered state changes.

For some tap/click combinations this gives us either double press/release
events or an inconsistent order of events. Those issues include:
* a really short physical click causes a click + tap-click
* a really short physical click on the right software button causes a right
  click + left tap-click
* tap + click causes double button left press events

To avoid these, notify the tap code that a button event has occured and
process that accordingly. Depending on the state this may either continue to
the DEAD state or release the current tap button and then go to the DEAD
state.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoAdd a log_msg_va function
Hans de Goede [Tue, 10 Jun 2014 13:08:03 +0000 (15:08 +0200)]
Add a log_msg_va function

This is useful for when we use libraries which want us to provide them with
a logging callback.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotimer.h: Add #include libinput-util.h
Hans de Goede [Tue, 10 Jun 2014 13:08:04 +0000 (15:08 +0200)]
timer.h: Add #include libinput-util.h

libinput-util.h is needed for the linked list definitions.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotouchpad: Prefix tap-debugging message
Peter Hutterer [Thu, 5 Jun 2014 06:04:00 +0000 (16:04 +1000)]
touchpad: Prefix tap-debugging message

For consistency with the butto state debugging

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotouchpad: log the invalid event as bug, not just as info
Peter Hutterer [Thu, 5 Jun 2014 06:00:17 +0000 (16:00 +1000)]
touchpad: log the invalid event as bug, not just as info

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotest: use check's strcmp API instead of strcmp
Peter Hutterer [Tue, 10 Jun 2014 22:35:56 +0000 (08:35 +1000)]
test: use check's strcmp API instead of strcmp

Prints out the strings on failure - easier for debugging

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agotest: drop unused includes for libinput-util.h
Peter Hutterer [Tue, 10 Jun 2014 23:00:46 +0000 (09:00 +1000)]
test: drop unused includes for libinput-util.h

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoevdev-mt-touchpad-tap: Switch over to new timer subsystem
Hans de Goede [Fri, 6 Jun 2014 15:01:07 +0000 (17:01 +0200)]
evdev-mt-touchpad-tap: Switch over to new timer subsystem

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoevdev-mt-touchpad-buttons: Switch over to new timer subsystem
Hans de Goede [Fri, 6 Jun 2014 15:01:06 +0000 (17:01 +0200)]
evdev-mt-touchpad-buttons: Switch over to new timer subsystem

Besides being a nice cleanup, this gives us proper per touch timeouts.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoAdd a timer subsystem
Hans de Goede [Fri, 6 Jun 2014 15:01:05 +0000 (17:01 +0200)]
Add a timer subsystem

Currently we are using DIY timers in the touchpad softbutton and tap handling
code, and at least the softbutton code gets its wrong. It uses one timer-fd
per touchpad to set a timeout per touch, which means that if a timeout is
set for 100ms from now for touch 1, and then 50 ms later touch 2 sets a timeout
for 200 ms from now, then the timeout for touch 1 will come 150 ms too late.

This commits adds a proper timer subsystem so that we've one place to deal
with timer handling, and so that we can only get it wrong (well hopefully
we get it right) in one place.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoMark the log function as attribute printf
Peter Hutterer [Fri, 6 Jun 2014 05:56:50 +0000 (15:56 +1000)]
Mark the log function as attribute printf

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: add --verbose flag to litests
Peter Hutterer [Fri, 6 Jun 2014 05:55:15 +0000 (15:55 +1000)]
test: add --verbose flag to litests

Sometimes it's handy to see what libinput prints out while running a test.
This breaks test-log if run with --verbose. Checking that the default log
priority hasn't changed obviously doesn't work if we change it on demand.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: drop TEST_CFLAGS
Peter Hutterer [Fri, 6 Jun 2014 04:58:14 +0000 (14:58 +1000)]
test: drop TEST_CFLAGS

We're using the same flags for everything anyway, drop the custom flags

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: silence compiler warning for C++ build test
Peter Hutterer [Thu, 5 Jun 2014 23:38:35 +0000 (09:38 +1000)]
test: silence compiler warning for C++ build test

cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for
C/ObjC but not for C++ [enabled by default]

Since gcc also complains about adding -Wno-strict-prototypes we have to handle
the two separately. A side-effect here: now that we promote the GCC_CFLAGS to
AM_CFLAGS, litest.la is built with the correct CFLAGS too.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: fix compiler warnings for missing field initializers
Peter Hutterer [Thu, 5 Jun 2014 23:48:00 +0000 (09:48 +1000)]
test: fix compiler warnings for missing field initializers

litest-trackpoint.c:38:1: warning: missing initializer for field 'touch_down'
of 'struct litest_device_interface' [-Wmissing-field-initializers]

and similar

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: fix compiler warnings for missing prototypes
Peter Hutterer [Thu, 5 Jun 2014 23:47:05 +0000 (09:47 +1000)]
test: fix compiler warnings for missing prototypes

litest-wacom-touch.c:31:6: warning: no previous prototype for
'litest_wacom_touch_setup' [-Wmissing-prototypes]

and similar

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotest: fix compiler warning for is_debugger_attached
Peter Hutterer [Thu, 5 Jun 2014 23:44:43 +0000 (09:44 +1000)]
test: fix compiler warning for is_debugger_attached

litest.c:207:1: warning: function declaration isn't a prototype
[-Wstrict-prototypes]

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agoDrop empty FFI_CFLAGS
Peter Hutterer [Fri, 6 Jun 2014 04:53:40 +0000 (14:53 +1000)]
Drop empty FFI_CFLAGS

Leftover from weston

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
9 years agotools: add a script to push the doxygen output to freedesktop.org
Peter Hutterer [Thu, 5 Jun 2014 05:42:49 +0000 (15:42 +1000)]
tools: add a script to push the doxygen output to freedesktop.org

Intentionally not added to EXTRA_DIST, if you're not running libinput from git
you're not supposed to push documentation.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agodoc: Fix spelling
Jonas Ådahl [Mon, 9 Jun 2014 21:39:06 +0000 (23:39 +0200)]
doc: Fix spelling

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
9 years agoconfigure.ac: libinput 0.3 0.3.0
Jonas Ådahl [Thu, 5 Jun 2014 07:34:19 +0000 (09:34 +0200)]
configure.ac: libinput 0.3

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
9 years agoevdev: Migrate rest of 32 bit time variables to uint64_t
Jonas Ådahl [Mon, 9 Jun 2014 20:26:22 +0000 (22:26 +0200)]
evdev: Migrate rest of 32 bit time variables to uint64_t

Makes tests pass again with long uptime.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
9 years agos/libinput_pointer_button_state/libinput_button_state/
Stephen Chandler Paul [Wed, 4 Jun 2014 00:08:02 +0000 (20:08 -0400)]
s/libinput_pointer_button_state/libinput_button_state/

Button states are applicable to more then just the pointer, so having a
non-generic name name for a generic enumerator value like
libinput_pointer_button_state doesn't make sense. Changing it to something
generic like libinput_button_state allows it to be reused by other devices that
may potentially be added to libinput in the future.

Signed-off-by: Stephen Chandler Paul <thatslyude@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
9 years agoUse floating point numbers instead of fixed point numbers
Jonas Ådahl [Mon, 2 Jun 2014 21:09:27 +0000 (23:09 +0200)]
Use floating point numbers instead of fixed point numbers

Fixed point numbers can easily overflow, and double to fixed point
conversion is lossy. Use floating point (double) where fixed point
numbers where previously used and remove the li_fixed_t type.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: whitespace fix
Peter Hutterer [Wed, 4 Jun 2014 21:56:39 +0000 (07:56 +1000)]
touchpad: whitespace fix

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Drop the scroll direction lock, increase threshold instead
Peter Hutterer [Fri, 23 May 2014 14:06:26 +0000 (16:06 +0200)]
touchpad: Drop the scroll direction lock, increase threshold instead

The direction lock was intended to avoid erroneous horizontal scroll events
when scrolling vertically (and vice versa). Some testing on my touchpad here
shows that it is too easy to accidentally lock the direction when no lock is
intended (e.g. moving around an image). And quite hard to figure out what a
pure vertical gesture is.

I get movements from 90 degrees to 70 degrees for something my brain would
consider vertical scrolling. Depending on the hand position, the fingers
actually perform a slight curve, not a straight line.

Hence - drop the direction lock, but increase the threshold a little. It
doesn't totally avoid horizontal scroll events but keeps them minimal.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotouchpad: break up a long line
Peter Hutterer [Wed, 4 Jun 2014 01:27:08 +0000 (11:27 +1000)]
touchpad: break up a long line

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agoAdd our own version of linux/input.h
Peter Hutterer [Mon, 2 Jun 2014 21:51:37 +0000 (07:51 +1000)]
Add our own version of linux/input.h

Avoids having to #define any values we're trying to use.

Header file is from Linux 3.15-rc8.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
10 years agotest: fix resolution on all devices
Peter Hutterer [Mon, 2 Jun 2014 22:25:37 +0000 (08:25 +1000)]
test: fix resolution on all devices

struct input_absinfo has the resolution as the 6th field, not as the 4th.
This doesn't have any visible effect because uinput doesn't allow us to set
the resolution yet.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotest: fix resolution on Wacom ISDv4 E6 Finger device
Peter Hutterer [Mon, 2 Jun 2014 22:23:48 +0000 (08:23 +1000)]
test: fix resolution on Wacom ISDv4 E6 Finger device

Resolution for x is 10, 9 for y. And while we're at it set the actual
resolution, not the fuzz.

No actual effect since resolution can't be set through uinput where we use
these devices.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotools: fix a compiler warning
Peter Hutterer [Mon, 2 Jun 2014 22:00:00 +0000 (08:00 +1000)]
tools: fix a compiler warning

event-debug.c: At top level:
event-debug.c:129:1: warning: ‘static’ is not at beginning of declaration
[-Wold-style-declaration]
 const static struct libinput_interface interface = {
  ^

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotest: fix a bunch of "unused variable" warnings
Peter Hutterer [Mon, 2 Jun 2014 06:43:42 +0000 (16:43 +1000)]
test: fix a bunch of "unused variable" warnings

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotest: use the TEST_CFLAGS for all tests
Peter Hutterer [Mon, 2 Jun 2014 06:18:30 +0000 (16:18 +1000)]
test: use the TEST_CFLAGS for all tests

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotest: compiler warning fixes
Peter Hutterer [Mon, 2 Jun 2014 06:18:10 +0000 (16:18 +1000)]
test: compiler warning fixes

misc.c: In function ‘create_simple_test_device’:
misc.c:71:54: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  while ((type = va_arg(args, unsigned int)) != -1 &&
                                                      ^
misc.c:72:54: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         (code = va_arg(args, unsigned int)) != -1) {

10 years agoevdev: Provide fallback definition for KEY_MICMUTE
Peter Korsgaard [Mon, 2 Jun 2014 21:11:31 +0000 (23:11 +0200)]
evdev: Provide fallback definition for KEY_MICMUTE

KEY_MICMUTE was added relatively recently (3.1 with 33009557bd: Add
KEY_MICMUTE and enable it on Lenovo X220), so provide a fallback definition
similar to how we do it for KEY_LIGHTS_TOGGLE to fix compilation with older
toolchains.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoevdev: Use correct fallback value for KEY_LIGHTS_TOGGLE
Peter Korsgaard [Mon, 2 Jun 2014 21:11:30 +0000 (23:11 +0200)]
evdev: Use correct fallback value for KEY_LIGHTS_TOGGLE

The kernel defines KEY_LIGHTS_TOGGLE as 0x21e, not 0x160 (which is KEY_OK).

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agotouchpad: fix two indentation issues in the header
Peter Hutterer [Mon, 2 Jun 2014 03:44:59 +0000 (13:44 +1000)]
touchpad: fix two indentation issues in the header

7 whitespace -> tab

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Add support for top softbutton area
Hans de Goede [Tue, 27 May 2014 13:08:35 +0000 (15:08 +0200)]
touchpad: Add support for top softbutton area

Add support for the top softbutton area found on some laptops.

For details of how this works, see the updated
doc/touchpad-softbutton-state-machine.svg diagram.

Basically this mirrors the state-machine for the bottom softbutton area, with
one exception, if a finger stays at least inner timeout milliseconds in the
top button area and then moves out of it, it will be ignored rather then
become the pointer. This is done so that people using the top buttons together
with a trackstick and accidentally move their finger out of the upper area
don't get spurious pointer movements from the finger on the trackpad.

This behavior is indentical to xf86-input-synaptics, which also ignores
movements from touches which start in the top button area.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Rename some variables and functions
Hans de Goede [Tue, 27 May 2014 13:17:26 +0000 (15:17 +0200)]
touchpad: Rename some variables and functions

Rename some clickpad softbutton area variables to have bottom in their
name, this is a preperation patch for adding top softbutton area support.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotools: add explicit libudev dependency to event-debug
Peter Hutterer [Fri, 30 May 2014 04:41:23 +0000 (14:41 +1000)]
tools: add explicit libudev dependency to event-debug

The header is pulled in by libinput.h, the libs by libinput but make this
explicit.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agoconfigure: simplify a condition
Peter Hutterer [Tue, 27 May 2014 03:47:58 +0000 (13:47 +1000)]
configure: simplify a condition

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agoReplace log_bug with per-component bug macros
Peter Hutterer [Wed, 21 May 2014 04:36:01 +0000 (14:36 +1000)]
Replace log_bug with per-component bug macros

When we knowingly hit a bug, we should know what the bug is caused by. Log
that in a standardized fashion.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotest: disable CK_FORK for the valgrind runs
Peter Hutterer [Fri, 23 May 2014 04:10:57 +0000 (14:10 +1000)]
test: disable CK_FORK for the valgrind runs

I'm not sure what exactly is happening here, but while valgrind seems to run
fine in normal mode, the build from make distcheck fails with rather random
errors. Disabling CK_FORK seems to help, but more investigation is needed.
Meanwhile, this makes distcheck succeed again.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotest: restore log priority after each test
Peter Hutterer [Fri, 23 May 2014 04:13:39 +0000 (14:13 +1000)]
test: restore log priority after each test

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agoRemove old touchpad code
Peter Hutterer [Thu, 22 May 2014 06:13:12 +0000 (16:13 +1000)]
Remove old touchpad code

With the addition of software buttons for clickpads, the new touchpad code has
overtaken this driver in terms of features. The older driver was disabled in
6a6103262530d8fca66ee3847d5664824158c12b.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agoevdev: INPUT_PROP_DIRECT devices can't be touchpads
Peter Hutterer [Thu, 29 May 2014 05:43:38 +0000 (15:43 +1000)]
evdev: INPUT_PROP_DIRECT devices can't be touchpads

Devices that are direct input devices are marked by the kernel with the
INPUT_PROP_DIRECT property. Touchpads are always indirect input devices, so
let's do the easiest check first before we try device-specific capabilities.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agofilter: Ignore non-suitable trackers when calculating initial velocity
Jonas Ådahl [Sat, 24 May 2014 19:49:13 +0000 (21:49 +0200)]
filter: Ignore non-suitable trackers when calculating initial velocity

calculate_velocity() didn't skip pointer trackers far away in time when
calculating the initial velocity. This check was done later when
iterating the rest, so while at it, simplify the function by doing both
iterations in one single loop.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agofilter: Fix get_direction for short vectors
Jonas Ådahl [Sat, 24 May 2014 19:38:08 +0000 (21:38 +0200)]
filter: Fix get_direction for short vectors

Short vectors alongside the x axis produced inverted directions.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotouchpad: Make anisotropic motion deltas isotropic
Jonas Ådahl [Sat, 24 May 2014 14:53:45 +0000 (16:53 +0200)]
touchpad: Make anisotropic motion deltas isotropic

The x and y absolute axis may have different resolutions, meaning 1 unit
long motion delta on one axis is not physically as long as 1 unit motion
delta on the other axis.

In order to make these anisotropic input motion deltas output as isotropic
motion deltas, apply scaling to one of the axis making it have the same
dimension as the other, before passing it through the motion filter
which assumes all deltas are isotropic.

https://bugs.freedesktop.org/show_bug.cgi?id=79056

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agoAdd basic mouse pointer acceleration
Jonas Ådahl [Sun, 18 May 2014 17:20:39 +0000 (19:20 +0200)]
Add basic mouse pointer acceleration

This patch reimplements the simple smooth pointer acceleration profile
from X.org xserver. The algorithm is identical to the classic profile
with a non-zero pointer acceleration threshold.

When support for changable parameters is in place, to get a pointer
acceleration the same as the default classic profile of X.org a
polynomial acceleration profile should be used for when the threshold
parameter is zero.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotest: Queue two motion events in pointer event conversion test
Jonas Ådahl [Mon, 26 May 2014 21:18:28 +0000 (23:18 +0200)]
test: Queue two motion events in pointer event conversion test

Pointer acceleration filters may absorb the first event, so queue two,
just in case.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotest: Make relative pointer event test more accepting
Jonas Ådahl [Mon, 26 May 2014 20:12:25 +0000 (22:12 +0200)]
test: Make relative pointer event test more accepting

A test cannot exactly predict the resulting motion event from a given
evdev event series without having to reimplement the acceleration
algorithm. To still be able to test that sane relative motion events are
produced, check that the length and direction of the resulting motion
event vectors are close to the same as the expected vectors.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agofilter: Add motion filter destruction helper
Jonas Ådahl [Mon, 26 May 2014 21:20:42 +0000 (23:20 +0200)]
filter: Add motion filter destruction helper

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotouchpad: Stop scrolling on a button click / tap
Hans de Goede [Fri, 23 May 2014 14:06:25 +0000 (16:06 +0200)]
touchpad: Stop scrolling on a button click / tap

On a button click / tap the scrolling event handler no longer gets called,
ensure that any in progress scrolling is stopped.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Refactor tp_post_scroll_events()
Hans de Goede [Fri, 23 May 2014 14:06:24 +0000 (16:06 +0200)]
touchpad: Refactor tp_post_scroll_events()

Put the actual scroll event posting in the straight path.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Fix sending of scroll stop events
Hans de Goede [Fri, 23 May 2014 14:06:23 +0000 (16:06 +0200)]
touchpad: Fix sending of scroll stop events

Setting tp->scroll.direction = 0 before checking tp->scroll.direction
to see if we need to send stop scroll events for vert / horz scrolling does
not really work well.

Also we need to check direction with an axis mask, not the axis number.

While at it also add a tp_stop_scroll_events() helper function for this.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Clear touches being the pointer when doing 2 finger scrolling
Hans de Goede [Fri, 23 May 2014 14:06:22 +0000 (16:06 +0200)]
touchpad: Clear touches being the pointer when doing 2 finger scrolling

When doing 2 finger scrolling we don't want any spurious movement events after
scrolling. touchpad_2fg_no_motion tests for this, but it lifts touch 0
(which is the pointer as it came down first) first, so it only catches the
case where touch 1 suddenly gets promoted to being the pointer.

However if touch 1 is lifted first, then touch 0 is still the pointer and
will cause spurious movement events. Swap the 2 litest_touch_up calls to
catch this (and make the test fail), and add code to clear the is_pointer
flag on all touched when doing 2 finger scrolling to fix it again.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotools: plug leak in event-debug
Peter Hutterer [Tue, 27 May 2014 06:14:41 +0000 (16:14 +1000)]
tools: plug leak in event-debug

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agofilter: Fix coding style
Jonas Ådahl [Sat, 24 May 2014 20:00:46 +0000 (22:00 +0200)]
filter: Fix coding style

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
10 years agoMerge branch 'clickpad-improvements-v2' of git://people.freedesktop.org/~jwrdegoede...
Peter Hutterer [Thu, 22 May 2014 22:51:29 +0000 (08:51 +1000)]
Merge branch 'clickpad-improvements-v2' of git://people.freedesktop.org/~jwrdegoede/libinput

10 years agotouchpad: Make pointer movements a bit faster by default
Jonas Ådahl [Tue, 20 May 2014 21:12:28 +0000 (23:12 +0200)]
touchpad: Make pointer movements a bit faster by default

Alter the so far hard coded parameters a bit to make the pointer
acceleration profile accelerate the pointer movement a bit more than
before.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agoChange internal timestamps to uint64_t to properly deal with wrapping
Hans de Goede [Tue, 8 Apr 2014 10:29:45 +0000 (12:29 +0200)]
Change internal timestamps to uint64_t to properly deal with wrapping

We store timestamps in ms since system boot (CLOCK_MONOTONIC). This will wrap
after circa 50 days.

I've considered making our code wrapping safe, but that won't work. We also
use our internal timestamps to program timer-fds for timeouts. And we store
ms in a single integer but the kernel uses 2 integers, one for seconds and
one for usec/nanosec. So at 32 bits our ms containing integer will wrap
in 50 days, while the kernels seconds storing integer lasts a lot longer.
So when we wrap our ms timestamps, we will be programming the timer-fds
with a seconds value in the past.

So change all our internal timestamps to uint64_t to avoid the wrapping
when programming the timer-fds. Note that we move from 64-bit timestamps to
32-bit timestamps when calling the foo_notify_bar functions from
libinput-private.h. Having 64 bit timestamps has no use past this point,
since the wayland input protocol uses 32 bit timestamps (and clients will
have to deal with wrapping).

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: handle_timeouts: Remove unused return value
Hans de Goede [Tue, 8 Apr 2014 10:39:24 +0000 (12:39 +0200)]
touchpad: handle_timeouts: Remove unused return value

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Remove clickpad clicked test from 2 finger scrolling handling
Hans de Goede [Tue, 8 Apr 2014 06:39:11 +0000 (08:39 +0200)]
touchpad: Remove clickpad clicked test from 2 finger scrolling handling

This is no longer needed now that we take the button area and pinned fingers
into account.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Ignore fingers in button area for 2 finger scroll
Hans de Goede [Tue, 8 Apr 2014 06:34:20 +0000 (08:34 +0200)]
touchpad: Ignore fingers in button area for 2 finger scroll

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: softbuttons: Deal with a click arriving before any touches
Hans de Goede [Mon, 7 Apr 2014 14:49:36 +0000 (16:49 +0200)]
touchpad: softbuttons: Deal with a click arriving before any touches

It is possible for a click to get reported before any related touch events
get reported, here is the relevant part of an evemu-record session on a T440s:

E: 3.985585 0000 0000 0000 # ------------ SYN_REPORT (0) ----------
E: 3.997419 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID   -1
E: 3.997419 0001 014a 0000 # EV_KEY / BTN_TOUCH            0
E: 3.997419 0003 0018 0000 # EV_ABS / ABS_PRESSURE         0
E: 3.997419 0001 0145 0000 # EV_KEY / BTN_TOOL_FINGER      0
E: 3.997419 0000 0000 0000 # ------------ SYN_REPORT (0) ----------
E: 5.117881 0001 0110 0001 # EV_KEY / BTN_LEFT             1
E: 5.117881 0000 0000 0000 # ------------ SYN_REPORT (0) ----------
E: 5.133422 0003 0039 0187 # EV_ABS / ABS_MT_TRACKING_ID   187
E: 5.133422 0003 0035 3098 # EV_ABS / ABS_MT_POSITION_X    3098
E: 5.133422 0003 0036 3282 # EV_ABS / ABS_MT_POSITION_Y    3282
E: 5.133422 0003 003a 0046 # EV_ABS / ABS_MT_PRESSURE      46
E: 5.133422 0001 014a 0001 # EV_KEY / BTN_TOUCH            1
E: 5.133422 0003 0000 3102 # EV_ABS / ABS_X                3102
E: 5.133422 0003 0001 3282 # EV_ABS / ABS_Y                3282
E: 5.133422 0003 0018 0046 # EV_ABS / ABS_PRESSURE         46
E: 5.133422 0001 0145 0001 # EV_KEY / BTN_TOOL_FINGER      1
E: 5.133422 0000 0000 0000 # ------------ SYN_REPORT (0) ----------

Notice the BTN_LEFT event all by itself!

To deal with this if a physical click registers before we get any touches,
wait for the first touch to resolve the click.

Also see the new activity diagram for the tp_post_softbutton_buttons
method which has been added to doc/touchpad-softbutton-state-machine.svg

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: post_button_events: Remove TOUCHPAD_EVENT_BUTTON_PRESS/RELEASE test
Hans de Goede [Mon, 7 Apr 2014 14:09:03 +0000 (16:09 +0200)]
touchpad: post_button_events: Remove TOUCHPAD_EVENT_BUTTON_PRESS/RELEASE test

We already check for old != current everywhere, so this is not needed;
And in tp_post_softbutton_buttons we want to do delay button down reporting if
we don't have touch info yet in which case this check actually gets in the way.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Ignore non left clicks on clickpads
Hans de Goede [Mon, 7 Apr 2014 11:50:11 +0000 (13:50 +0200)]
touchpad: Ignore non left clicks on clickpads

We should never get any non left button events on clickpads, but if we
do these might confuse our state, so complain about it and ignore these.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Use INPUT_PROP_BUTTONPAD instead of checking for buttons
Hans de Goede [Mon, 7 Apr 2014 11:44:07 +0000 (13:44 +0200)]
touchpad: Use INPUT_PROP_BUTTONPAD instead of checking for buttons

And warn if INPUT_PROP_BUTTONPAD mismatches right/middle buttons presence.

Also fix the bcm5974 to properly advertise INPUT_PROP_BUTTONPAD.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Rework is_pointer handling
Hans de Goede [Fri, 4 Apr 2014 15:22:02 +0000 (17:22 +0200)]
touchpad: Rework is_pointer handling

We don't want touches in the button area to cause the pointer to move. So
instead of making a touch the pointer when it moves to TOUCH_BEGIN, wait
with making it the pointer until its buttons state moves to BUTTON_STATE_AREA.

Note that a touch in the main area of the touchpad will move to
BUTTON_STATE_AREA immediately. If software-buttons are not enabled, any finger
is in the BUTTON_STATE_AREA.

While at it also refactor the is_pointer setting in general, removing
code duplicition wrt checking that another touch is not already
the pointer on unpinning a finger, and add safeguards that unpinning
does not make a finger which is not in button state BUTTON_STATE_AREA the
pointer, nor that the button code makes a pinned finger the pointer.

All these sanity checks are combined into a new tp_button_active function,
since they should be taken into account for 2 finger scrolling, etc. too.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: Add clickpad-style software buttons
Peter Hutterer [Thu, 27 Mar 2014 23:44:11 +0000 (09:44 +1000)]
touchpad: Add clickpad-style software buttons

Almost all non Apple touchpads have visible markings for software button areas,
so limit clickfinger behavior to Apple clickpads, and implement software button
areas for others.

This is a slightly fancier implementation than the simplest model and ported
over from libtouchpad. It implements a state machine for the software buttons
with left and right buttons currently implemented. Buttons are oriented
left-to-right, in a horizontal bar. No random button placement allowed.

In general, the procedure is:
- if a finger sets down in the left button area, a click is a left click
- if a finger sets down in the right button area, a click is a right click
- if a finger leaves the button area, a click is a left click
- if a finger starts outside the button area, a click is a left click

Two timeouts are used to handle buttons more smoothly:
- if a finger sets down in a button area but "immediately" moves over
  to a different area, that area takes effect on a click.
- if a finger leaves a button area and "immediately" clicks or moves back into
  the area, the button still takes effect on a click.
- if a finger changes between areas and stays there for a timeout, that area
  takes effect on a click.

Note the button area states are named BOTTOM_foo to make it easier to later
add support for a top button area such as can be found on the Thinkpad [2-5]40
series.

Co-authored-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10 years agotouchpad: save the active clickfinger button
Peter Hutterer [Thu, 27 Mar 2014 05:51:12 +0000 (15:51 +1000)]
touchpad: save the active clickfinger button

To avoid having a button left press and a button right release if the number
of fingers changes.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agodoc: add state machine SVG to EXTRA_DIST
Peter Hutterer [Fri, 28 Mar 2014 05:51:08 +0000 (15:51 +1000)]
doc: add state machine SVG to EXTRA_DIST

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
10 years agotouchpad: move button-related code into a separate file
Peter Hutterer [Thu, 27 Mar 2014 03:09:06 +0000 (13:09 +1000)]
touchpad: move button-related code into a separate file

This is about to become more complicated with the support for software button
areas. Move it to a separate file to have it logically grouped together.
No functional changes.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>