diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-12 13:44:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 13:44:46 +0200 |
commit | 66e8908e9ad5027934537a6e7f641ba3a74637e2 (patch) | |
tree | 83df866657c9de240f0b8feb7b5bfcaf7dc30654 /include/rootston/seat.h | |
parent | c5452feb773496a6631f35a4b49355ddd052d555 (diff) | |
parent | 585757d6e6acd7c8dd15073d849278498066dac1 (diff) |
Merge pull request #1203 from dcz-purism/input
Support input method and text input
Diffstat (limited to 'include/rootston/seat.h')
-rw-r--r-- | include/rootston/seat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/rootston/seat.h b/include/rootston/seat.h index 7e7ee3e9..0187c6cc 100644 --- a/include/rootston/seat.h +++ b/include/rootston/seat.h @@ -5,6 +5,7 @@ #include "rootston/input.h" #include "rootston/keyboard.h" #include "rootston/layers.h" +#include "rootston/text_input.h" struct roots_seat { struct roots_input *input; @@ -19,6 +20,8 @@ struct roots_seat { // If the focused layer is set, views cannot receive keyboard focus struct wlr_layer_surface_v1 *focused_layer; + struct roots_input_method_relay im_relay; + // If non-null, only this client can receive input events struct wl_client *exclusive_client; |