wayland_thread.h 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114
  1. /**************************************************************************/
  2. /* wayland_thread.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #pragma once
  31. #ifdef WAYLAND_ENABLED
  32. #include "key_mapping_xkb.h"
  33. #ifdef SOWRAP_ENABLED
  34. #include "wayland/dynwrappers/wayland-client-core-so_wrap.h"
  35. #include "wayland/dynwrappers/wayland-cursor-so_wrap.h"
  36. #include "wayland/dynwrappers/wayland-egl-core-so_wrap.h"
  37. #include "xkbcommon-so_wrap.h"
  38. #else
  39. #include <wayland-client-core.h>
  40. #include <wayland-cursor.h>
  41. #ifdef GLES3_ENABLED
  42. #include <wayland-egl-core.h>
  43. #endif
  44. #include <xkbcommon/xkbcommon.h>
  45. #endif // SOWRAP_ENABLED
  46. // These must go after the Wayland client include to work properly.
  47. #include "wayland/protocol/idle_inhibit.gen.h"
  48. #include "wayland/protocol/primary_selection.gen.h"
  49. // These four protocol headers name wl_pointer method arguments as `pointer`,
  50. // which is the same name as X11's pointer typedef. This trips some very
  51. // annoying shadowing warnings. A `#define` works around this issue.
  52. #define pointer wl_pointer
  53. #include "wayland/protocol/cursor_shape.gen.h"
  54. #include "wayland/protocol/pointer_constraints.gen.h"
  55. #include "wayland/protocol/pointer_gestures.gen.h"
  56. #include "wayland/protocol/relative_pointer.gen.h"
  57. #undef pointer
  58. #include "wayland/protocol/fractional_scale.gen.h"
  59. #include "wayland/protocol/tablet.gen.h"
  60. #include "wayland/protocol/text_input.gen.h"
  61. #include "wayland/protocol/viewporter.gen.h"
  62. #include "wayland/protocol/wayland.gen.h"
  63. #include "wayland/protocol/xdg_activation.gen.h"
  64. #include "wayland/protocol/xdg_decoration.gen.h"
  65. #include "wayland/protocol/xdg_foreign_v2.gen.h"
  66. #include "wayland/protocol/xdg_shell.gen.h"
  67. #include "wayland/protocol/xdg_system_bell.gen.h"
  68. // NOTE: Deprecated.
  69. #include "wayland/protocol/xdg_foreign_v1.gen.h"
  70. #ifdef LIBDECOR_ENABLED
  71. #ifdef SOWRAP_ENABLED
  72. #include "dynwrappers/libdecor-so_wrap.h"
  73. #else
  74. #include <libdecor.h>
  75. #endif // SOWRAP_ENABLED
  76. #endif // LIBDECOR_ENABLED
  77. #include "core/os/thread.h"
  78. #include "servers/display_server.h"
  79. class WaylandThread {
  80. public:
  81. // Messages used for exchanging information between Godot's and Wayland's thread.
  82. class Message : public RefCounted {
  83. GDSOFTCLASS(Message, RefCounted);
  84. public:
  85. Message() {}
  86. virtual ~Message() = default;
  87. };
  88. class WindowMessage : public Message {
  89. GDSOFTCLASS(WindowMessage, Message);
  90. public:
  91. DisplayServer::WindowID id = DisplayServer::INVALID_WINDOW_ID;
  92. };
  93. // Message data for window rect changes.
  94. class WindowRectMessage : public WindowMessage {
  95. GDSOFTCLASS(WindowRectMessage, WindowMessage);
  96. public:
  97. // NOTE: This is in "scaled" terms. For example, if there's a 1920x1080 rect
  98. // with a scale factor of 2, the actual value of `rect` will be 3840x2160.
  99. Rect2i rect;
  100. };
  101. class WindowEventMessage : public WindowMessage {
  102. GDSOFTCLASS(WindowEventMessage, WindowMessage);
  103. public:
  104. DisplayServer::WindowEvent event;
  105. };
  106. class InputEventMessage : public Message {
  107. GDSOFTCLASS(InputEventMessage, Message);
  108. public:
  109. Ref<InputEvent> event;
  110. };
  111. class DropFilesEventMessage : public WindowMessage {
  112. GDSOFTCLASS(DropFilesEventMessage, WindowMessage);
  113. public:
  114. Vector<String> files;
  115. };
  116. class IMEUpdateEventMessage : public WindowMessage {
  117. GDSOFTCLASS(IMEUpdateEventMessage, WindowMessage);
  118. public:
  119. String text;
  120. Vector2i selection;
  121. };
  122. class IMECommitEventMessage : public WindowMessage {
  123. GDSOFTCLASS(IMECommitEventMessage, WindowMessage);
  124. public:
  125. String text;
  126. };
  127. struct RegistryState {
  128. WaylandThread *wayland_thread;
  129. // Core Wayland globals.
  130. struct wl_shm *wl_shm = nullptr;
  131. uint32_t wl_shm_name = 0;
  132. struct wl_compositor *wl_compositor = nullptr;
  133. uint32_t wl_compositor_name = 0;
  134. struct wl_subcompositor *wl_subcompositor = nullptr;
  135. uint32_t wl_subcompositor_name = 0;
  136. struct wl_data_device_manager *wl_data_device_manager = nullptr;
  137. uint32_t wl_data_device_manager_name = 0;
  138. List<struct wl_output *> wl_outputs;
  139. List<struct wl_seat *> wl_seats;
  140. // xdg-shell globals.
  141. struct xdg_wm_base *xdg_wm_base = nullptr;
  142. uint32_t xdg_wm_base_name = 0;
  143. // NOTE: Deprecated.
  144. struct zxdg_exporter_v1 *xdg_exporter_v1 = nullptr;
  145. uint32_t xdg_exporter_v1_name = 0;
  146. uint32_t xdg_exporter_v2_name = 0;
  147. struct zxdg_exporter_v2 *xdg_exporter_v2 = nullptr;
  148. // wayland-protocols globals.
  149. struct wp_viewporter *wp_viewporter = nullptr;
  150. uint32_t wp_viewporter_name = 0;
  151. struct wp_fractional_scale_manager_v1 *wp_fractional_scale_manager = nullptr;
  152. uint32_t wp_fractional_scale_manager_name = 0;
  153. struct wp_cursor_shape_manager_v1 *wp_cursor_shape_manager = nullptr;
  154. uint32_t wp_cursor_shape_manager_name = 0;
  155. struct zxdg_decoration_manager_v1 *xdg_decoration_manager = nullptr;
  156. uint32_t xdg_decoration_manager_name = 0;
  157. struct xdg_system_bell_v1 *xdg_system_bell = nullptr;
  158. uint32_t xdg_system_bell_name = 0;
  159. struct xdg_activation_v1 *xdg_activation = nullptr;
  160. uint32_t xdg_activation_name = 0;
  161. struct zwp_primary_selection_device_manager_v1 *wp_primary_selection_device_manager = nullptr;
  162. uint32_t wp_primary_selection_device_manager_name = 0;
  163. struct zwp_relative_pointer_manager_v1 *wp_relative_pointer_manager = nullptr;
  164. uint32_t wp_relative_pointer_manager_name = 0;
  165. struct zwp_pointer_constraints_v1 *wp_pointer_constraints = nullptr;
  166. uint32_t wp_pointer_constraints_name = 0;
  167. struct zwp_pointer_gestures_v1 *wp_pointer_gestures = nullptr;
  168. uint32_t wp_pointer_gestures_name = 0;
  169. struct zwp_idle_inhibit_manager_v1 *wp_idle_inhibit_manager = nullptr;
  170. uint32_t wp_idle_inhibit_manager_name = 0;
  171. struct zwp_tablet_manager_v2 *wp_tablet_manager = nullptr;
  172. uint32_t wp_tablet_manager_name = 0;
  173. struct zwp_text_input_manager_v3 *wp_text_input_manager = nullptr;
  174. uint32_t wp_text_input_manager_name = 0;
  175. // We're really not meant to use this one directly but we still need to know
  176. // whether it's available.
  177. uint32_t wp_fifo_manager_name = 0;
  178. };
  179. // General Wayland-specific states. Shouldn't be accessed directly.
  180. // TODO: Make private?
  181. struct WindowState {
  182. DisplayServer::WindowID id = DisplayServer::INVALID_WINDOW_ID;
  183. DisplayServer::WindowID parent_id = DisplayServer::INVALID_WINDOW_ID;
  184. Rect2i rect;
  185. DisplayServer::WindowMode mode = DisplayServer::WINDOW_MODE_WINDOWED;
  186. bool suspended = false;
  187. // These are true by default as it isn't guaranteed that we'll find an
  188. // xdg-shell implementation with wm_capabilities available. If and once we
  189. // receive a wm_capabilities event these will get reset and updated with
  190. // whatever the compositor says.
  191. bool can_minimize = false;
  192. bool can_maximize = false;
  193. bool can_fullscreen = false;
  194. HashSet<struct wl_output *> wl_outputs;
  195. // NOTE: If for whatever reason this callback is destroyed _while_ the event
  196. // thread is still running, it might be a good idea to set its user data to
  197. // `nullptr`. From some initial testing of mine, it looks like it might still
  198. // be called even after being destroyed, pointing to probably invalid window
  199. // data by then and segfaulting hard.
  200. struct wl_callback *frame_callback = nullptr;
  201. uint64_t last_frame_time = 0;
  202. struct wl_surface *wl_surface = nullptr;
  203. struct xdg_surface *xdg_surface = nullptr;
  204. struct xdg_toplevel *xdg_toplevel = nullptr;
  205. struct wp_viewport *wp_viewport = nullptr;
  206. struct wp_fractional_scale_v1 *wp_fractional_scale = nullptr;
  207. // NOTE: Deprecated.
  208. struct zxdg_exported_v1 *xdg_exported_v1 = nullptr;
  209. struct zxdg_exported_v2 *xdg_exported_v2 = nullptr;
  210. struct xdg_popup *xdg_popup = nullptr;
  211. String exported_handle;
  212. // Currently applied buffer scale.
  213. int buffer_scale = 1;
  214. // Buffer scale must be applied right before rendering but _after_ committing
  215. // everything else or otherwise we might have an inconsistent state (e.g.
  216. // double scale and odd resolution). This flag assists with that; when set,
  217. // on the next frame, we'll commit whatever is set in `buffer_scale`.
  218. bool buffer_scale_changed = false;
  219. // NOTE: The preferred buffer scale is currently only dynamically calculated.
  220. // It can be accessed by calling `window_state_get_preferred_buffer_scale`.
  221. // Override used by the fractional scale add-on object. If less or equal to 0
  222. // (default) then the normal output-based scale is used instead.
  223. double fractional_scale = 0;
  224. // What the compositor is recommending us.
  225. double preferred_fractional_scale = 0;
  226. struct zxdg_toplevel_decoration_v1 *xdg_toplevel_decoration = nullptr;
  227. struct zwp_idle_inhibitor_v1 *wp_idle_inhibitor = nullptr;
  228. #ifdef LIBDECOR_ENABLED
  229. // If this is null the xdg_* variables must be set and vice-versa. This way we
  230. // can handle this mess gracefully enough to hopefully being able of getting
  231. // rid of this cleanly once we have our own CSDs.
  232. struct libdecor_frame *libdecor_frame = nullptr;
  233. struct libdecor_configuration *pending_libdecor_configuration = nullptr;
  234. #endif
  235. RegistryState *registry;
  236. WaylandThread *wayland_thread;
  237. };
  238. // "High level" Godot-side screen data.
  239. struct ScreenData {
  240. // Geometry data.
  241. Point2i position;
  242. String make;
  243. String model;
  244. Size2i size;
  245. Size2i physical_size;
  246. float refresh_rate = -1;
  247. int scale = 1;
  248. };
  249. struct ScreenState {
  250. uint32_t wl_output_name = 0;
  251. ScreenData pending_data;
  252. ScreenData data;
  253. WaylandThread *wayland_thread;
  254. };
  255. enum class Gesture {
  256. NONE,
  257. MAGNIFY,
  258. };
  259. enum class PointerConstraint {
  260. NONE,
  261. LOCKED,
  262. CONFINED,
  263. };
  264. struct PointerData {
  265. Point2 position;
  266. uint32_t motion_time = 0;
  267. // Relative motion has its own optional event and so needs its own time.
  268. Vector2 relative_motion;
  269. uint32_t relative_motion_time = 0;
  270. BitField<MouseButtonMask> pressed_button_mask = MouseButtonMask::NONE;
  271. MouseButton last_button_pressed = MouseButton::NONE;
  272. Point2 last_pressed_position;
  273. DisplayServer::WindowID pointed_id = DisplayServer::INVALID_WINDOW_ID;
  274. DisplayServer::WindowID last_pointed_id = DisplayServer::INVALID_WINDOW_ID;
  275. // This is needed to check for a new double click every time.
  276. bool double_click_begun = false;
  277. uint32_t button_time = 0;
  278. uint32_t button_serial = 0;
  279. uint32_t scroll_type = WL_POINTER_AXIS_SOURCE_WHEEL;
  280. // The amount "scrolled" in pixels, in each direction.
  281. Vector2 scroll_vector;
  282. // The amount of scroll "clicks" in each direction, in fractions of 120.
  283. Vector2i discrete_scroll_vector_120;
  284. uint32_t pinch_scale = 1;
  285. };
  286. struct TabletToolData {
  287. Point2 position;
  288. Vector2 tilt;
  289. uint32_t pressure = 0;
  290. BitField<MouseButtonMask> pressed_button_mask = MouseButtonMask::NONE;
  291. MouseButton last_button_pressed = MouseButton::NONE;
  292. Point2 last_pressed_position;
  293. bool double_click_begun = false;
  294. uint64_t button_time = 0;
  295. uint64_t motion_time = 0;
  296. DisplayServer::WindowID proximal_id = DisplayServer::INVALID_WINDOW_ID;
  297. DisplayServer::WindowID last_proximal_id = DisplayServer::INVALID_WINDOW_ID;
  298. uint32_t proximity_serial = 0;
  299. };
  300. struct TabletToolState {
  301. struct wl_seat *wl_seat = nullptr;
  302. bool is_eraser = false;
  303. TabletToolData data_pending;
  304. TabletToolData data;
  305. };
  306. struct OfferState {
  307. HashSet<String> mime_types;
  308. };
  309. struct SeatState {
  310. RegistryState *registry = nullptr;
  311. WaylandThread *wayland_thread = nullptr;
  312. struct wl_seat *wl_seat = nullptr;
  313. uint32_t wl_seat_name = 0;
  314. // Pointer.
  315. struct wl_pointer *wl_pointer = nullptr;
  316. uint32_t pointer_enter_serial = 0;
  317. struct wp_cursor_shape_device_v1 *wp_cursor_shape_device = nullptr;
  318. struct zwp_relative_pointer_v1 *wp_relative_pointer = nullptr;
  319. struct zwp_locked_pointer_v1 *wp_locked_pointer = nullptr;
  320. struct zwp_confined_pointer_v1 *wp_confined_pointer = nullptr;
  321. struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch = nullptr;
  322. // NOTE: According to the wp_pointer_gestures protocol specification, there
  323. // can be only one active gesture at a time.
  324. Gesture active_gesture = Gesture::NONE;
  325. // Used for delta calculations.
  326. // NOTE: The wp_pointer_gestures protocol keeps track of the total scale of
  327. // the pinch gesture, while godot instead wants its delta.
  328. wl_fixed_t old_pinch_scale = 0;
  329. struct wl_surface *cursor_surface = nullptr;
  330. struct wl_callback *cursor_frame_callback = nullptr;
  331. uint32_t cursor_time_ms = 0;
  332. // This variable is needed to buffer all pointer changes until a
  333. // wl_pointer.frame event, as per Wayland's specification. Everything is
  334. // first set in `data_buffer` and then `data` is set with its contents on
  335. // an input frame event. All methods should generally read from
  336. // `pointer_data` and write to `data_buffer`.
  337. PointerData pointer_data_buffer;
  338. PointerData pointer_data;
  339. // Keyboard.
  340. struct wl_keyboard *wl_keyboard = nullptr;
  341. // For key events.
  342. DisplayServer::WindowID focused_id = DisplayServer::INVALID_WINDOW_ID;
  343. struct xkb_context *xkb_context = nullptr;
  344. struct xkb_keymap *xkb_keymap = nullptr;
  345. struct xkb_state *xkb_state = nullptr;
  346. const char *keymap_buffer = nullptr;
  347. uint32_t keymap_buffer_size = 0;
  348. HashMap<xkb_keycode_t, Key> pressed_keycodes;
  349. xkb_layout_index_t current_layout_index = 0;
  350. int32_t repeat_key_delay_msec = 0;
  351. int32_t repeat_start_delay_msec = 0;
  352. xkb_keycode_t repeating_keycode = XKB_KEYCODE_INVALID;
  353. uint64_t last_repeat_start_msec = 0;
  354. uint64_t last_repeat_msec = 0;
  355. bool shift_pressed = false;
  356. bool ctrl_pressed = false;
  357. bool alt_pressed = false;
  358. bool meta_pressed = false;
  359. uint32_t last_key_pressed_serial = 0;
  360. struct wl_data_device *wl_data_device = nullptr;
  361. // Drag and drop.
  362. DisplayServer::WindowID dnd_id = DisplayServer::INVALID_WINDOW_ID;
  363. struct wl_data_offer *wl_data_offer_dnd = nullptr;
  364. uint32_t dnd_enter_serial = 0;
  365. // Clipboard.
  366. struct wl_data_source *wl_data_source_selection = nullptr;
  367. Vector<uint8_t> selection_data;
  368. struct wl_data_offer *wl_data_offer_selection = nullptr;
  369. // Primary selection.
  370. struct zwp_primary_selection_device_v1 *wp_primary_selection_device = nullptr;
  371. struct zwp_primary_selection_source_v1 *wp_primary_selection_source = nullptr;
  372. Vector<uint8_t> primary_data;
  373. struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer = nullptr;
  374. // Tablet.
  375. struct zwp_tablet_seat_v2 *wp_tablet_seat = nullptr;
  376. List<struct zwp_tablet_tool_v2 *> tablet_tools;
  377. // IME.
  378. struct zwp_text_input_v3 *wp_text_input = nullptr;
  379. DisplayServer::WindowID ime_window_id = DisplayServer::INVALID_WINDOW_ID;
  380. bool ime_enabled = false;
  381. bool ime_active = false;
  382. String ime_text;
  383. String ime_text_commit;
  384. Vector2i ime_cursor;
  385. Rect2i ime_rect;
  386. };
  387. struct CustomCursor {
  388. struct wl_buffer *wl_buffer = nullptr;
  389. uint32_t *buffer_data = nullptr;
  390. uint32_t buffer_data_size = 0;
  391. Point2i hotspot;
  392. };
  393. private:
  394. struct ThreadData {
  395. SafeFlag thread_done;
  396. Mutex mutex;
  397. struct wl_display *wl_display = nullptr;
  398. };
  399. // FIXME: Is this the right thing to do?
  400. inline static const char *proxy_tag = "godot";
  401. Thread events_thread;
  402. ThreadData thread_data;
  403. HashMap<DisplayServer::WindowID, WindowState> windows;
  404. List<Ref<Message>> messages;
  405. String cursor_theme_name;
  406. int unscaled_cursor_size = 24;
  407. // NOTE: Regarding screen scale handling, the cursor cache is currently
  408. // "static", by which I mean that we try to change it as little as possible and
  409. // thus will be as big as the largest screen. This is mainly due to the fact
  410. // that doing it dynamically doesn't look like it's worth it to me currently,
  411. // especially as usually screen scales don't change continuously.
  412. int cursor_scale = 1;
  413. // Use cursor-shape-v1 protocol if the compositor supports it.
  414. wp_cursor_shape_device_v1_shape standard_cursors[DisplayServer::CURSOR_MAX] = {
  415. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_DEFAULT, //CURSOR_ARROW
  416. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_TEXT, //CURSOR_IBEAM
  417. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_POINTER, //CURSOR_POINTING_HAND
  418. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_CROSSHAIR, //CURSOR_CROSS
  419. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_WAIT, //CURSOR_WAIT
  420. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_PROGRESS, //CURSOR_BUSY
  421. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_GRAB, //CURSOR_DRAG
  422. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_GRABBING, //CURSOR_CAN_DROP
  423. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NO_DROP, //CURSOR_FORBIDDEN
  424. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NS_RESIZE, //CURSOR_VSIZE
  425. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_EW_RESIZE, //CURSOR_HSIZE
  426. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NESW_RESIZE, //CURSOR_BDIAGSIZE
  427. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_NWSE_RESIZE, //CURSOR_FDIAGSIZE
  428. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_MOVE, //CURSOR_MOVE
  429. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_ROW_RESIZE, //CURSOR_VSPLIT
  430. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_COL_RESIZE, //CURSOR_HSPLIT
  431. wp_cursor_shape_device_v1_shape::WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_HELP, //CURSOR_HELP
  432. };
  433. // Fallback to reading $XCURSOR and system themes if the compositor does not.
  434. struct wl_cursor_theme *wl_cursor_theme = nullptr;
  435. struct wl_cursor *wl_cursors[DisplayServer::CURSOR_MAX] = {};
  436. // User-defined cursor overrides. Take precedence over standard and wl cursors.
  437. HashMap<DisplayServer::CursorShape, CustomCursor> custom_cursors;
  438. DisplayServer::CursorShape cursor_shape = DisplayServer::CURSOR_ARROW;
  439. bool cursor_visible = true;
  440. PointerConstraint pointer_constraint = PointerConstraint::NONE;
  441. struct wl_display *wl_display = nullptr;
  442. struct wl_registry *wl_registry = nullptr;
  443. struct wl_seat *wl_seat_current = nullptr;
  444. bool frame = true;
  445. RegistryState registry;
  446. bool initialized = false;
  447. #ifdef LIBDECOR_ENABLED
  448. struct libdecor *libdecor_context = nullptr;
  449. #endif // LIBDECOR_ENABLED
  450. // Main polling method.
  451. static void _poll_events_thread(void *p_data);
  452. // Core Wayland event handlers.
  453. static void _wl_registry_on_global(void *data, struct wl_registry *wl_registry, uint32_t name, const char *interface, uint32_t version);
  454. static void _wl_registry_on_global_remove(void *data, struct wl_registry *wl_registry, uint32_t name);
  455. static void _wl_surface_on_enter(void *data, struct wl_surface *wl_surface, struct wl_output *wl_output);
  456. static void _wl_surface_on_leave(void *data, struct wl_surface *wl_surface, struct wl_output *wl_output);
  457. static void _wl_surface_on_preferred_buffer_scale(void *data, struct wl_surface *wl_surface, int32_t factor);
  458. static void _wl_surface_on_preferred_buffer_transform(void *data, struct wl_surface *wl_surface, uint32_t transform);
  459. static void _frame_wl_callback_on_done(void *data, struct wl_callback *wl_callback, uint32_t callback_data);
  460. static void _wl_output_on_geometry(void *data, struct wl_output *wl_output, int32_t x, int32_t y, int32_t physical_width, int32_t physical_height, int32_t subpixel, const char *make, const char *model, int32_t transform);
  461. static void _wl_output_on_mode(void *data, struct wl_output *wl_output, uint32_t flags, int32_t width, int32_t height, int32_t refresh);
  462. static void _wl_output_on_done(void *data, struct wl_output *wl_output);
  463. static void _wl_output_on_scale(void *data, struct wl_output *wl_output, int32_t factor);
  464. static void _wl_output_on_name(void *data, struct wl_output *wl_output, const char *name);
  465. static void _wl_output_on_description(void *data, struct wl_output *wl_output, const char *description);
  466. static void _wl_seat_on_capabilities(void *data, struct wl_seat *wl_seat, uint32_t capabilities);
  467. static void _wl_seat_on_name(void *data, struct wl_seat *wl_seat, const char *name);
  468. static void _cursor_frame_callback_on_done(void *data, struct wl_callback *wl_callback, uint32_t time_ms);
  469. static void _wl_pointer_on_enter(void *data, struct wl_pointer *wl_pointer, uint32_t serial, struct wl_surface *surface, wl_fixed_t surface_x, wl_fixed_t surface_y);
  470. static void _wl_pointer_on_leave(void *data, struct wl_pointer *wl_pointer, uint32_t serial, struct wl_surface *surface);
  471. static void _wl_pointer_on_motion(void *data, struct wl_pointer *wl_pointer, uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y);
  472. static void _wl_pointer_on_button(void *data, struct wl_pointer *wl_pointer, uint32_t serial, uint32_t time, uint32_t button, uint32_t state);
  473. static void _wl_pointer_on_axis(void *data, struct wl_pointer *wl_pointer, uint32_t time, uint32_t axis, wl_fixed_t value);
  474. static void _wl_pointer_on_frame(void *data, struct wl_pointer *wl_pointer);
  475. static void _wl_pointer_on_axis_source(void *data, struct wl_pointer *wl_pointer, uint32_t axis_source);
  476. static void _wl_pointer_on_axis_stop(void *data, struct wl_pointer *wl_pointer, uint32_t time, uint32_t axis);
  477. static void _wl_pointer_on_axis_discrete(void *data, struct wl_pointer *wl_pointer, uint32_t axis, int32_t discrete);
  478. static void _wl_pointer_on_axis_value120(void *data, struct wl_pointer *wl_pointer, uint32_t axis, int32_t value120);
  479. static void _wl_pointer_on_axis_relative_direction(void *data, struct wl_pointer *wl_pointer, uint32_t axis, uint32_t direction);
  480. static void _wl_keyboard_on_keymap(void *data, struct wl_keyboard *wl_keyboard, uint32_t format, int32_t fd, uint32_t size);
  481. static void _wl_keyboard_on_enter(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, struct wl_surface *surface, struct wl_array *keys);
  482. static void _wl_keyboard_on_leave(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, struct wl_surface *surface);
  483. static void _wl_keyboard_on_key(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, uint32_t time, uint32_t key, uint32_t state);
  484. static void _wl_keyboard_on_modifiers(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, uint32_t mods_depressed, uint32_t mods_latched, uint32_t mods_locked, uint32_t group);
  485. static void _wl_keyboard_on_repeat_info(void *data, struct wl_keyboard *wl_keyboard, int32_t rate, int32_t delay);
  486. static void _wl_data_device_on_data_offer(void *data, struct wl_data_device *wl_data_device, struct wl_data_offer *id);
  487. static void _wl_data_device_on_enter(void *data, struct wl_data_device *wl_data_device, uint32_t serial, struct wl_surface *surface, wl_fixed_t x, wl_fixed_t y, struct wl_data_offer *id);
  488. static void _wl_data_device_on_leave(void *data, struct wl_data_device *wl_data_device);
  489. static void _wl_data_device_on_motion(void *data, struct wl_data_device *wl_data_device, uint32_t time, wl_fixed_t x, wl_fixed_t y);
  490. static void _wl_data_device_on_drop(void *data, struct wl_data_device *wl_data_device);
  491. static void _wl_data_device_on_selection(void *data, struct wl_data_device *wl_data_device, struct wl_data_offer *id);
  492. static void _wl_data_offer_on_offer(void *data, struct wl_data_offer *wl_data_offer, const char *mime_type);
  493. static void _wl_data_offer_on_source_actions(void *data, struct wl_data_offer *wl_data_offer, uint32_t source_actions);
  494. static void _wl_data_offer_on_action(void *data, struct wl_data_offer *wl_data_offer, uint32_t dnd_action);
  495. static void _wl_data_source_on_target(void *data, struct wl_data_source *wl_data_source, const char *mime_type);
  496. static void _wl_data_source_on_send(void *data, struct wl_data_source *wl_data_source, const char *mime_type, int32_t fd);
  497. static void _wl_data_source_on_cancelled(void *data, struct wl_data_source *wl_data_source);
  498. static void _wl_data_source_on_dnd_drop_performed(void *data, struct wl_data_source *wl_data_source);
  499. static void _wl_data_source_on_dnd_finished(void *data, struct wl_data_source *wl_data_source);
  500. static void _wl_data_source_on_action(void *data, struct wl_data_source *wl_data_source, uint32_t dnd_action);
  501. // xdg-shell event handlers.
  502. static void _xdg_wm_base_on_ping(void *data, struct xdg_wm_base *xdg_wm_base, uint32_t serial);
  503. static void _xdg_surface_on_configure(void *data, struct xdg_surface *xdg_surface, uint32_t serial);
  504. static void _xdg_toplevel_on_configure(void *data, struct xdg_toplevel *xdg_toplevel, int32_t width, int32_t height, struct wl_array *states);
  505. static void _xdg_toplevel_on_close(void *data, struct xdg_toplevel *xdg_toplevel);
  506. static void _xdg_toplevel_on_configure_bounds(void *data, struct xdg_toplevel *xdg_toplevel, int32_t width, int32_t height);
  507. static void _xdg_toplevel_on_wm_capabilities(void *data, struct xdg_toplevel *xdg_toplevel, struct wl_array *capabilities);
  508. static void _xdg_popup_on_configure(void *data, struct xdg_popup *xdg_popup, int32_t x, int32_t y, int32_t width, int32_t height);
  509. static void _xdg_popup_on_popup_done(void *data, struct xdg_popup *xdg_popup);
  510. static void _xdg_popup_on_repositioned(void *data, struct xdg_popup *xdg_popup, uint32_t token);
  511. // wayland-protocols event handlers.
  512. static void _wp_fractional_scale_on_preferred_scale(void *data, struct wp_fractional_scale_v1 *wp_fractional_scale_v1, uint32_t scale);
  513. static void _wp_relative_pointer_on_relative_motion(void *data, struct zwp_relative_pointer_v1 *wp_relative_pointer_v1, uint32_t uptime_hi, uint32_t uptime_lo, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t dx_unaccel, wl_fixed_t dy_unaccel);
  514. static void _wp_pointer_gesture_pinch_on_begin(void *data, struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch_v1, uint32_t serial, uint32_t time, struct wl_surface *surface, uint32_t fingers);
  515. static void _wp_pointer_gesture_pinch_on_update(void *data, struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch_v1, uint32_t time, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t scale, wl_fixed_t rotation);
  516. static void _wp_pointer_gesture_pinch_on_end(void *data, struct zwp_pointer_gesture_pinch_v1 *zp_pointer_gesture_pinch_v1, uint32_t serial, uint32_t time, int32_t cancelled);
  517. static void _wp_primary_selection_device_on_data_offer(void *data, struct zwp_primary_selection_device_v1 *wp_primary_selection_device_v1, struct zwp_primary_selection_offer_v1 *offer);
  518. static void _wp_primary_selection_device_on_selection(void *data, struct zwp_primary_selection_device_v1 *wp_primary_selection_device_v1, struct zwp_primary_selection_offer_v1 *id);
  519. static void _wp_primary_selection_offer_on_offer(void *data, struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer_v1, const char *mime_type);
  520. static void _wp_primary_selection_source_on_send(void *data, struct zwp_primary_selection_source_v1 *wp_primary_selection_source_v1, const char *mime_type, int32_t fd);
  521. static void _wp_primary_selection_source_on_cancelled(void *data, struct zwp_primary_selection_source_v1 *wp_primary_selection_source_v1);
  522. static void _wp_tablet_seat_on_tablet_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_v2 *id);
  523. static void _wp_tablet_seat_on_tool_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_tool_v2 *id);
  524. static void _wp_tablet_seat_on_pad_added(void *data, struct zwp_tablet_seat_v2 *wp_tablet_seat_v2, struct zwp_tablet_pad_v2 *id);
  525. static void _wp_tablet_tool_on_type(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t tool_type);
  526. static void _wp_tablet_tool_on_hardware_serial(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t hardware_serial_hi, uint32_t hardware_serial_lo);
  527. static void _wp_tablet_tool_on_hardware_id_wacom(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t hardware_id_hi, uint32_t hardware_id_lo);
  528. static void _wp_tablet_tool_on_capability(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t capability);
  529. static void _wp_tablet_tool_on_done(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  530. static void _wp_tablet_tool_on_removed(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  531. static void _wp_tablet_tool_on_proximity_in(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial, struct zwp_tablet_v2 *tablet, struct wl_surface *surface);
  532. static void _wp_tablet_tool_on_proximity_out(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  533. static void _wp_tablet_tool_on_down(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial);
  534. static void _wp_tablet_tool_on_up(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2);
  535. static void _wp_tablet_tool_on_motion(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t x, wl_fixed_t y);
  536. static void _wp_tablet_tool_on_pressure(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t pressure);
  537. static void _wp_tablet_tool_on_distance(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t distance);
  538. static void _wp_tablet_tool_on_tilt(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t tilt_x, wl_fixed_t tilt_y);
  539. static void _wp_tablet_tool_on_rotation(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t degrees);
  540. static void _wp_tablet_tool_on_slider(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, int32_t position);
  541. static void _wp_tablet_tool_on_wheel(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, wl_fixed_t degrees, int32_t clicks);
  542. static void _wp_tablet_tool_on_button(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t serial, uint32_t button, uint32_t state);
  543. static void _wp_tablet_tool_on_frame(void *data, struct zwp_tablet_tool_v2 *wp_tablet_tool_v2, uint32_t time);
  544. static void _wp_text_input_on_enter(void *data, struct zwp_text_input_v3 *wp_text_input_v3, struct wl_surface *surface);
  545. static void _wp_text_input_on_leave(void *data, struct zwp_text_input_v3 *wp_text_input_v3, struct wl_surface *surface);
  546. static void _wp_text_input_on_preedit_string(void *data, struct zwp_text_input_v3 *wp_text_input_v3, const char *text, int32_t cursor_begin, int32_t cursor_end);
  547. static void _wp_text_input_on_commit_string(void *data, struct zwp_text_input_v3 *wp_text_input_v3, const char *text);
  548. static void _wp_text_input_on_delete_surrounding_text(void *data, struct zwp_text_input_v3 *wp_text_input_v3, uint32_t before_length, uint32_t after_length);
  549. static void _wp_text_input_on_done(void *data, struct zwp_text_input_v3 *wp_text_input_v3, uint32_t serial);
  550. static void _xdg_toplevel_decoration_on_configure(void *data, struct zxdg_toplevel_decoration_v1 *xdg_toplevel_decoration, uint32_t mode);
  551. // NOTE: Deprecated.
  552. static void _xdg_exported_v1_on_handle(void *data, zxdg_exported_v1 *exported, const char *handle);
  553. static void _xdg_exported_v2_on_handle(void *data, zxdg_exported_v2 *exported, const char *handle);
  554. static void _xdg_activation_token_on_done(void *data, struct xdg_activation_token_v1 *xdg_activation_token, const char *token);
  555. // Core Wayland event listeners.
  556. static constexpr struct wl_registry_listener wl_registry_listener = {
  557. .global = _wl_registry_on_global,
  558. .global_remove = _wl_registry_on_global_remove,
  559. };
  560. static constexpr struct wl_surface_listener wl_surface_listener = {
  561. .enter = _wl_surface_on_enter,
  562. .leave = _wl_surface_on_leave,
  563. .preferred_buffer_scale = _wl_surface_on_preferred_buffer_scale,
  564. .preferred_buffer_transform = _wl_surface_on_preferred_buffer_transform,
  565. };
  566. static constexpr struct wl_callback_listener frame_wl_callback_listener = {
  567. .done = _frame_wl_callback_on_done,
  568. };
  569. static constexpr struct wl_output_listener wl_output_listener = {
  570. .geometry = _wl_output_on_geometry,
  571. .mode = _wl_output_on_mode,
  572. .done = _wl_output_on_done,
  573. .scale = _wl_output_on_scale,
  574. .name = _wl_output_on_name,
  575. .description = _wl_output_on_description,
  576. };
  577. static constexpr struct wl_seat_listener wl_seat_listener = {
  578. .capabilities = _wl_seat_on_capabilities,
  579. .name = _wl_seat_on_name,
  580. };
  581. static constexpr struct wl_callback_listener cursor_frame_callback_listener = {
  582. .done = _cursor_frame_callback_on_done,
  583. };
  584. static constexpr struct wl_pointer_listener wl_pointer_listener = {
  585. .enter = _wl_pointer_on_enter,
  586. .leave = _wl_pointer_on_leave,
  587. .motion = _wl_pointer_on_motion,
  588. .button = _wl_pointer_on_button,
  589. .axis = _wl_pointer_on_axis,
  590. .frame = _wl_pointer_on_frame,
  591. .axis_source = _wl_pointer_on_axis_source,
  592. .axis_stop = _wl_pointer_on_axis_stop,
  593. .axis_discrete = _wl_pointer_on_axis_discrete,
  594. .axis_value120 = _wl_pointer_on_axis_value120,
  595. .axis_relative_direction = _wl_pointer_on_axis_relative_direction,
  596. };
  597. static constexpr struct wl_keyboard_listener wl_keyboard_listener = {
  598. .keymap = _wl_keyboard_on_keymap,
  599. .enter = _wl_keyboard_on_enter,
  600. .leave = _wl_keyboard_on_leave,
  601. .key = _wl_keyboard_on_key,
  602. .modifiers = _wl_keyboard_on_modifiers,
  603. .repeat_info = _wl_keyboard_on_repeat_info,
  604. };
  605. static constexpr struct wl_data_device_listener wl_data_device_listener = {
  606. .data_offer = _wl_data_device_on_data_offer,
  607. .enter = _wl_data_device_on_enter,
  608. .leave = _wl_data_device_on_leave,
  609. .motion = _wl_data_device_on_motion,
  610. .drop = _wl_data_device_on_drop,
  611. .selection = _wl_data_device_on_selection,
  612. };
  613. static constexpr struct wl_data_offer_listener wl_data_offer_listener = {
  614. .offer = _wl_data_offer_on_offer,
  615. .source_actions = _wl_data_offer_on_source_actions,
  616. .action = _wl_data_offer_on_action,
  617. };
  618. static constexpr struct wl_data_source_listener wl_data_source_listener = {
  619. .target = _wl_data_source_on_target,
  620. .send = _wl_data_source_on_send,
  621. .cancelled = _wl_data_source_on_cancelled,
  622. .dnd_drop_performed = _wl_data_source_on_dnd_drop_performed,
  623. .dnd_finished = _wl_data_source_on_dnd_finished,
  624. .action = _wl_data_source_on_action,
  625. };
  626. // xdg-shell event listeners.
  627. static constexpr struct xdg_wm_base_listener xdg_wm_base_listener = {
  628. .ping = _xdg_wm_base_on_ping,
  629. };
  630. static constexpr struct xdg_surface_listener xdg_surface_listener = {
  631. .configure = _xdg_surface_on_configure,
  632. };
  633. static constexpr struct xdg_toplevel_listener xdg_toplevel_listener = {
  634. .configure = _xdg_toplevel_on_configure,
  635. .close = _xdg_toplevel_on_close,
  636. .configure_bounds = _xdg_toplevel_on_configure_bounds,
  637. .wm_capabilities = _xdg_toplevel_on_wm_capabilities,
  638. };
  639. static constexpr struct xdg_popup_listener xdg_popup_listener = {
  640. .configure = _xdg_popup_on_configure,
  641. .popup_done = _xdg_popup_on_popup_done,
  642. .repositioned = _xdg_popup_on_repositioned,
  643. };
  644. // wayland-protocols event listeners.
  645. static constexpr struct wp_fractional_scale_v1_listener wp_fractional_scale_listener = {
  646. .preferred_scale = _wp_fractional_scale_on_preferred_scale,
  647. };
  648. static constexpr struct zwp_relative_pointer_v1_listener wp_relative_pointer_listener = {
  649. .relative_motion = _wp_relative_pointer_on_relative_motion,
  650. };
  651. static constexpr struct zwp_pointer_gesture_pinch_v1_listener wp_pointer_gesture_pinch_listener = {
  652. .begin = _wp_pointer_gesture_pinch_on_begin,
  653. .update = _wp_pointer_gesture_pinch_on_update,
  654. .end = _wp_pointer_gesture_pinch_on_end,
  655. };
  656. static constexpr struct zwp_primary_selection_device_v1_listener wp_primary_selection_device_listener = {
  657. .data_offer = _wp_primary_selection_device_on_data_offer,
  658. .selection = _wp_primary_selection_device_on_selection,
  659. };
  660. static constexpr struct zwp_primary_selection_offer_v1_listener wp_primary_selection_offer_listener = {
  661. .offer = _wp_primary_selection_offer_on_offer,
  662. };
  663. static constexpr struct zwp_primary_selection_source_v1_listener wp_primary_selection_source_listener = {
  664. .send = _wp_primary_selection_source_on_send,
  665. .cancelled = _wp_primary_selection_source_on_cancelled,
  666. };
  667. static constexpr struct zwp_tablet_seat_v2_listener wp_tablet_seat_listener = {
  668. .tablet_added = _wp_tablet_seat_on_tablet_added,
  669. .tool_added = _wp_tablet_seat_on_tool_added,
  670. .pad_added = _wp_tablet_seat_on_pad_added,
  671. };
  672. static constexpr struct zwp_tablet_tool_v2_listener wp_tablet_tool_listener = {
  673. .type = _wp_tablet_tool_on_type,
  674. .hardware_serial = _wp_tablet_tool_on_hardware_serial,
  675. .hardware_id_wacom = _wp_tablet_tool_on_hardware_id_wacom,
  676. .capability = _wp_tablet_tool_on_capability,
  677. .done = _wp_tablet_tool_on_done,
  678. .removed = _wp_tablet_tool_on_removed,
  679. .proximity_in = _wp_tablet_tool_on_proximity_in,
  680. .proximity_out = _wp_tablet_tool_on_proximity_out,
  681. .down = _wp_tablet_tool_on_down,
  682. .up = _wp_tablet_tool_on_up,
  683. .motion = _wp_tablet_tool_on_motion,
  684. .pressure = _wp_tablet_tool_on_pressure,
  685. .distance = _wp_tablet_tool_on_distance,
  686. .tilt = _wp_tablet_tool_on_tilt,
  687. .rotation = _wp_tablet_tool_on_rotation,
  688. .slider = _wp_tablet_tool_on_slider,
  689. .wheel = _wp_tablet_tool_on_wheel,
  690. .button = _wp_tablet_tool_on_button,
  691. .frame = _wp_tablet_tool_on_frame,
  692. };
  693. static constexpr struct zwp_text_input_v3_listener wp_text_input_listener = {
  694. .enter = _wp_text_input_on_enter,
  695. .leave = _wp_text_input_on_leave,
  696. .preedit_string = _wp_text_input_on_preedit_string,
  697. .commit_string = _wp_text_input_on_commit_string,
  698. .delete_surrounding_text = _wp_text_input_on_delete_surrounding_text,
  699. .done = _wp_text_input_on_done,
  700. };
  701. // NOTE: Deprecated.
  702. static constexpr struct zxdg_exported_v1_listener xdg_exported_v1_listener = {
  703. .handle = _xdg_exported_v1_on_handle,
  704. };
  705. static constexpr struct zxdg_exported_v2_listener xdg_exported_v2_listener = {
  706. .handle = _xdg_exported_v2_on_handle,
  707. };
  708. static constexpr struct zxdg_toplevel_decoration_v1_listener xdg_toplevel_decoration_listener = {
  709. .configure = _xdg_toplevel_decoration_on_configure,
  710. };
  711. static constexpr struct xdg_activation_token_v1_listener xdg_activation_token_listener = {
  712. .done = _xdg_activation_token_on_done,
  713. };
  714. #ifdef LIBDECOR_ENABLED
  715. // libdecor event handlers.
  716. static void libdecor_on_error(struct libdecor *context, enum libdecor_error error, const char *message);
  717. static void libdecor_frame_on_configure(struct libdecor_frame *frame, struct libdecor_configuration *configuration, void *user_data);
  718. static void libdecor_frame_on_close(struct libdecor_frame *frame, void *user_data);
  719. static void libdecor_frame_on_commit(struct libdecor_frame *frame, void *user_data);
  720. static void libdecor_frame_on_dismiss_popup(struct libdecor_frame *frame, const char *seat_name, void *user_data);
  721. // libdecor event listeners.
  722. static constexpr struct libdecor_interface libdecor_interface = {
  723. .error = libdecor_on_error,
  724. .reserved0 = nullptr,
  725. .reserved1 = nullptr,
  726. .reserved2 = nullptr,
  727. .reserved3 = nullptr,
  728. .reserved4 = nullptr,
  729. .reserved5 = nullptr,
  730. .reserved6 = nullptr,
  731. .reserved7 = nullptr,
  732. .reserved8 = nullptr,
  733. .reserved9 = nullptr,
  734. };
  735. static constexpr struct libdecor_frame_interface libdecor_frame_interface = {
  736. .configure = libdecor_frame_on_configure,
  737. .close = libdecor_frame_on_close,
  738. .commit = libdecor_frame_on_commit,
  739. .dismiss_popup = libdecor_frame_on_dismiss_popup,
  740. .reserved0 = nullptr,
  741. .reserved1 = nullptr,
  742. .reserved2 = nullptr,
  743. .reserved3 = nullptr,
  744. .reserved4 = nullptr,
  745. .reserved5 = nullptr,
  746. .reserved6 = nullptr,
  747. .reserved7 = nullptr,
  748. .reserved8 = nullptr,
  749. .reserved9 = nullptr,
  750. };
  751. #endif // LIBDECOR_ENABLED
  752. static Vector<uint8_t> _read_fd(int fd);
  753. static int _allocate_shm_file(size_t size);
  754. static Vector<uint8_t> _wl_data_offer_read(struct wl_display *wl_display, const char *p_mime, struct wl_data_offer *wl_data_offer);
  755. static Vector<uint8_t> _wp_primary_selection_offer_read(struct wl_display *wl_display, const char *p_mime, struct zwp_primary_selection_offer_v1 *wp_primary_selection_offer);
  756. static void _seat_state_set_current(WaylandThread::SeatState &p_ss);
  757. static Ref<InputEventKey> _seat_state_get_key_event(SeatState *p_ss, xkb_keycode_t p_keycode, bool p_pressed);
  758. static Ref<InputEventKey> _seat_state_get_unstuck_key_event(SeatState *p_ss, xkb_keycode_t p_keycode, bool p_pressed, Key p_key);
  759. static void _wayland_state_update_cursor();
  760. void _set_current_seat(struct wl_seat *p_seat);
  761. bool _load_cursor_theme(int p_cursor_size);
  762. void _update_scale(int p_scale);
  763. public:
  764. Mutex &mutex = thread_data.mutex;
  765. struct wl_display *get_wl_display() const;
  766. // Core Wayland utilities for integrating with our own data structures.
  767. static bool wl_proxy_is_godot(struct wl_proxy *p_proxy);
  768. static void wl_proxy_tag_godot(struct wl_proxy *p_proxy);
  769. static WindowState *wl_surface_get_window_state(struct wl_surface *p_surface);
  770. static ScreenState *wl_output_get_screen_state(struct wl_output *p_output);
  771. static SeatState *wl_seat_get_seat_state(struct wl_seat *p_seat);
  772. static TabletToolState *wp_tablet_tool_get_state(struct zwp_tablet_tool_v2 *p_tool);
  773. static OfferState *wl_data_offer_get_offer_state(struct wl_data_offer *p_offer);
  774. static OfferState *wp_primary_selection_offer_get_offer_state(struct zwp_primary_selection_offer_v1 *p_offer);
  775. void seat_state_unlock_pointer(SeatState *p_ss);
  776. void seat_state_lock_pointer(SeatState *p_ss);
  777. void seat_state_set_hint(SeatState *p_ss, int p_x, int p_y);
  778. void seat_state_confine_pointer(SeatState *p_ss);
  779. static void seat_state_update_cursor(SeatState *p_ss);
  780. void seat_state_echo_keys(SeatState *p_ss);
  781. static int window_state_get_preferred_buffer_scale(WindowState *p_ws);
  782. static double window_state_get_scale_factor(WindowState *p_ws);
  783. static void window_state_update_size(WindowState *p_ws, int p_width, int p_height);
  784. static Vector2i scale_vector2i(const Vector2i &p_vector, double p_amount);
  785. void push_message(Ref<Message> message);
  786. bool has_message();
  787. Ref<Message> pop_message();
  788. void beep() const;
  789. void window_create(DisplayServer::WindowID p_window_id, int p_width, int p_height);
  790. void window_create_popup(DisplayServer::WindowID p_window_id, DisplayServer::WindowID p_parent_id, Rect2i p_rect);
  791. void window_destroy(DisplayServer::WindowID p_window_Id);
  792. void window_set_parent(DisplayServer::WindowID p_window_id, DisplayServer::WindowID p_parent_id);
  793. struct wl_surface *window_get_wl_surface(DisplayServer::WindowID p_window_id) const;
  794. WindowState *window_get_state(DisplayServer::WindowID p_window_id);
  795. void window_start_resize(DisplayServer::WindowResizeEdge p_edge, DisplayServer::WindowID p_window);
  796. void window_set_max_size(DisplayServer::WindowID p_window_id, const Size2i &p_size);
  797. void window_set_min_size(DisplayServer::WindowID p_window_id, const Size2i &p_size);
  798. bool window_can_set_mode(DisplayServer::WindowID p_window_id, DisplayServer::WindowMode p_window_mode) const;
  799. void window_try_set_mode(DisplayServer::WindowID p_window_id, DisplayServer::WindowMode p_window_mode);
  800. DisplayServer::WindowMode window_get_mode(DisplayServer::WindowID p_window_id) const;
  801. void window_set_borderless(DisplayServer::WindowID p_window_id, bool p_borderless);
  802. void window_set_title(DisplayServer::WindowID p_window_id, const String &p_title);
  803. void window_set_app_id(DisplayServer::WindowID p_window_id, const String &p_app_id);
  804. bool window_is_focused(DisplayServer::WindowID p_window_id);
  805. // Optional - requires xdg_activation_v1
  806. void window_request_attention(DisplayServer::WindowID p_window_id);
  807. void window_start_drag(DisplayServer::WindowID p_window_id);
  808. // Optional - require idle_inhibit_unstable_v1
  809. void window_set_idle_inhibition(DisplayServer::WindowID p_window_id, bool p_enable);
  810. bool window_get_idle_inhibition(DisplayServer::WindowID p_window_id) const;
  811. ScreenData screen_get_data(int p_screen) const;
  812. int get_screen_count() const;
  813. void pointer_set_constraint(PointerConstraint p_constraint);
  814. void pointer_set_hint(const Point2i &p_hint);
  815. PointerConstraint pointer_get_constraint() const;
  816. DisplayServer::WindowID pointer_get_pointed_window_id() const;
  817. DisplayServer::WindowID pointer_get_last_pointed_window_id() const;
  818. BitField<MouseButtonMask> pointer_get_button_mask() const;
  819. void cursor_set_visible(bool p_visible);
  820. void cursor_set_shape(DisplayServer::CursorShape p_cursor_shape);
  821. void cursor_set_custom_shape(DisplayServer::CursorShape p_cursor_shape);
  822. void cursor_shape_set_custom_image(DisplayServer::CursorShape p_cursor_shape, Ref<Image> p_image, const Point2i &p_hotspot);
  823. void cursor_shape_clear_custom_image(DisplayServer::CursorShape p_cursor_shape);
  824. void window_set_ime_active(const bool p_active, DisplayServer::WindowID p_window_id);
  825. void window_set_ime_position(const Point2i &p_pos, DisplayServer::WindowID p_window_id);
  826. int keyboard_get_layout_count() const;
  827. int keyboard_get_current_layout_index() const;
  828. void keyboard_set_current_layout_index(int p_index);
  829. String keyboard_get_layout_name(int p_index) const;
  830. Key keyboard_get_key_from_physical(Key p_key) const;
  831. void keyboard_echo_keys();
  832. bool selection_has_mime(const String &p_mime) const;
  833. Vector<uint8_t> selection_get_mime(const String &p_mime) const;
  834. void selection_set_text(const String &p_text);
  835. // Optional primary support - requires wp_primary_selection_unstable_v1
  836. bool primary_has_mime(const String &p_mime) const;
  837. Vector<uint8_t> primary_get_mime(const String &p_mime) const;
  838. void primary_set_text(const String &p_text);
  839. void commit_surfaces();
  840. void set_frame();
  841. bool get_reset_frame();
  842. bool wait_frame_suspend_ms(int p_timeout);
  843. bool is_fifo_available() const;
  844. uint64_t window_get_last_frame_time(DisplayServer::WindowID p_window_id) const;
  845. bool window_is_suspended(DisplayServer::WindowID p_window_id) const;
  846. bool is_suspended() const;
  847. Error init();
  848. void destroy();
  849. };
  850. #endif // WAYLAND_ENABLED