Merge pull request #3398 from RedSoxFan/toggle-input-events

input events: toggle and ipc get_inputs
This commit is contained in:
Drew DeVault 2019-01-13 20:35:45 -05:00 committed by GitHub
commit 4eb0767414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 107 additions and 5 deletions

View file

@ -11,6 +11,7 @@
#include "sway/output.h"
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
#include <wlr/backend/libinput.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_output.h>
#include <xkbcommon/xkbcommon.h>
@ -598,6 +599,26 @@ json_object *ipc_json_describe_input(struct sway_input_device *device) {
}
}
if (wlr_input_device_is_libinput(device->wlr_device)) {
struct libinput_device *libinput_dev;
libinput_dev = wlr_libinput_get_device_handle(device->wlr_device);
const char *events = "unknown";
switch (libinput_device_config_send_events_get_mode(libinput_dev)) {
case LIBINPUT_CONFIG_SEND_EVENTS_ENABLED:
events = "enabled";
break;
case LIBINPUT_CONFIG_SEND_EVENTS_DISABLED_ON_EXTERNAL_MOUSE:
events = "disabled_on_external_mouse";
break;
case LIBINPUT_CONFIG_SEND_EVENTS_DISABLED:
events = "disabled";
break;
}
json_object_object_add(object, "libinput_send_events",
json_object_new_string(events));
}
return object;
}