wayland_thread.h 41 KB

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