summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/wayland/SCsub
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-06-11 12:24:54 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-06-11 12:24:54 +0300
commitbe25e60f619dc38e4e8b4b4fa1da777fd0a0ec6b (patch)
tree5852f73198e8df3bf98801ea1d716e92ef881283 /platform/linuxbsd/wayland/SCsub
parent62a056aa56ca4471c035e43741c88e4a22d81802 (diff)
downloadredot-engine-be25e60f619dc38e4e8b4b4fa1da777fd0a0ec6b.tar.gz
[Wayland] Implement IME support.
Diffstat (limited to 'platform/linuxbsd/wayland/SCsub')
-rw-r--r--platform/linuxbsd/wayland/SCsub11
1 files changed, 11 insertions, 0 deletions
diff --git a/platform/linuxbsd/wayland/SCsub b/platform/linuxbsd/wayland/SCsub
index add5bdb504..89b586845c 100644
--- a/platform/linuxbsd/wayland/SCsub
+++ b/platform/linuxbsd/wayland/SCsub
@@ -152,6 +152,16 @@ env.WAYLAND_API_CODE(
)
env.WAYLAND_API_HEADER(
+ target="protocol/text_input.gen.h",
+ source="#thirdparty/wayland-protocols/unstable/text-input/text-input-unstable-v3.xml",
+)
+
+env.WAYLAND_API_CODE(
+ target="protocol/text_input.gen.c",
+ source="#thirdparty/wayland-protocols/unstable/text-input/text-input-unstable-v3.xml",
+)
+
+env.WAYLAND_API_HEADER(
target="protocol/xdg_foreign.gen.h",
source="#thirdparty/wayland-protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml",
)
@@ -175,6 +185,7 @@ source_files = [
"protocol/primary_selection.gen.c",
"protocol/idle_inhibit.gen.c",
"protocol/tablet.gen.c",
+ "protocol/text_input.gen.c",
"display_server_wayland.cpp",
"wayland_thread.cpp",
"key_mapping_xkb.cpp",