Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-14 | Remove last remnant of tool_tool in libinput | Markus Ongyerth | |
2018-07-14 | rename wlr_tablet_tool to wlr_tablet | Markus Ongyerth | |
The previous naming was based on the input-device capability names from libinput. With code that uses the libinput_tablet_tool and mapping into tablet-v2, this is confusing, so the name is changed to follow the names used in the protocol. | |||
2018-07-14 | Handle relative motion for mouse tools | Markus Ongyerth | |
2018-07-14 | Add asserts and rename destroy function in libinput backend | Markus Ongyerth | |
2018-07-14 | Use wlr_list for paths, and improve inert resource handling | Markus Ongyerth | |
2018-07-14 | Use tablet_tool impl in libinput backend | Markus Ongyerth | |
2018-07-14 | 1st feedback pass | Markus Ongyerth | |
Rename make_ functions to _create Implement set_cursor and set_feedback | |||
2018-07-14 | Fix borked rebase | Markus Ongyerth | |
2018-07-14 | Add tool buttons | Markus Ongyerth | |
2018-07-14 | Propagate most axis events to clients | Markus Ongyerth | |
2018-07-14 | Implement basic tablet_pad handling (bound to keyboard focus) | Markus Ongyerth | |
2018-07-14 | Basic tablet_v2 object lifetime | Markus Ongyerth | |
2018-07-14 | storage commit #2 | Markus Ongyerth | |
2018-07-14 | backend/libinput: Manage tablet tool livetimes | Markus Ongyerth | |
This adds the management code to manage tablet tools lifetimes from libinput. It follows the suggestion made in the tablet-unstable-v2.xml to destroy tablet_tools once all tablets that it got into contact with were removed from the system. This is implemented via a refcount. If a tool is *not* unique, it will be destroyed on proximity out. This is libinput specific and mentioned in libinput docs that tools will not be found again, so we shouldn't keep a reference to them. Also they can't be on other tablets as well, because they cannot be tracked. The naming in this commit is a bit off (to not break things). The wlr names stay the same, tablet_tool is the libinput_device with capaiblity LIBINPUT_DEVICE_CAP_TABLET_TOOL which is more akin to "tablet" in the tablet-unstable-v2 protocol. The struct that corresponds to the tablet_tool in tablet-unstable-v2 is called tablet_tool_tool, a rename should be done at some point in the future. | |||
2018-07-09 | util: add wlr_ prefix to log symbols | emersion | |
2018-06-14 | Multiseat fixes | Scott Anderson | |
2018-05-12 | Add support for discrete axis values | emersion | |
2018-05-03 | Fix typos in comments and strings | morganamilo | |
2018-04-29 | input-device: add output_name field, populate it from libinput | emersion | |
2018-04-28 | backend/headless: remove useless destructor | emersion | |
2018-04-25 | Don't use the wlr_ prefix for static functions | emersion | |
2018-04-25 | Make sure we don't use others' prefixes | emersion | |
2018-04-25 | Remove wlr_ prefix from local symbols | emersion | |
2018-04-03 | Implement input inhibit in rootston | Drew DeVault | |
2018-03-28 | Remove width_mm from tablet events | Drew DeVault | |
2018-03-28 | Remove width_mm from wlr_touch events | Drew DeVault | |
2018-03-28 | Remove width_mm from wlr_pointer events | Drew DeVault | |
2018-03-07 | Add mode support to libinput backend | Drew DeVault | |
And extend tablet example with tilt and ring support | |||
2018-03-06 | Add const to x11 and input interfaces | Scott Anderson | |
2018-02-25 | Fix null deref in wlr_libinput_backend_destroy | Dan Robertson | |
If input_event is null (e.g. if backend_start has not been called yet) wl_event_source_remove will result in a null deref. | |||
2018-02-19 | Revert "ELF Visibility" | Drew DeVault | |
2018-02-19 | Explicitly export EFL symbols | Scott Anderson | |
2018-02-19 | Remove usec_to_msec from public API | Scott Anderson | |
2018-02-12 | Reformat all #include directives | emersion | |
2018-02-12 | Make wlr_signal_emit_safe private | emersion | |
2018-02-12 | Remove wlr_backend.events.{output_remove,device_remove} | emersion | |
2018-02-12 | Add wlr_signal_emit_safe | emersion | |
2018-01-30 | backend: fix use-after-free when destroying backends | emersion | |
The backend destroy signal is emitted before the output_remove signal is. When the destroy signal is emitted listeners remove their output_remove listener, so the output_remove signal is never received and listeners have an invalid output pointer. The correct way to solve this would be to remove the output_remove signal completely and use the wlr_output.events.destroy signal instead. This isn't yet possible because wl_signal_emit is unsafe and listeners cannot be removed in listeners. | |||
2017-12-19 | libinput backend: add wlr_input_device_is_libinput | Dominique Martinet | |
2017-12-07 | Listen to display destroy in backends | emersion | |
2017-11-19 | Refactor wlr_list inside wlroots | emersion | |
2017-11-16 | rename touch slot to touch id | Tony Crisci | |
2017-11-16 | Fix a bunch of mistakes detected with scan-build | emersion | |
2017-11-04 | Improve input sensitivity | Drew DeVault | |
We now use doubles until the last minute, which makes it so we can move the pointer more precisely. This also includes a fix for tablet tools, which move absolutely and sometimes do not update the X or Y axis. | |||
2017-11-01 | libinput backend destroy: fix small leak | Dominique Martinet | |
2017-11-01 | Indentation fix | Dominique Martinet | |
Some space sneaked in. tabtabtab. | |||
2017-11-01 | rootston exit: fix libinput destroy | Dominique Martinet | |
The wlr_list -> wl_list rework changed 'wlr_devices' to wl_list, but missed its use on destroy. | |||
2017-10-30 | remove time usec | Tony Crisci | |
2017-10-30 | refactor input time_sec to time_msec | Tony Crisci | |
2017-10-22 | Forgot to rename these | Drew DeVault | |