diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-03-27 11:31:26 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-03-27 11:31:26 +0200 |
| commit | 6aa6866d80de123e53b864383d5457ec6e7844d1 (patch) | |
| tree | fce0184be762d243ebd02d80806bd912ce623889 /documentation | |
| parent | 31b5d5b562b71f913a8ab29cad72daa2d8018bd9 (diff) | |
Wayland: move "struct seat" inside class Fl_Wayland_Screen_Driver
Diffstat (limited to 'documentation')
| -rw-r--r-- | documentation/src/wayland.dox | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/documentation/src/wayland.dox b/documentation/src/wayland.dox index c928c2dd3..78fb12619 100644 --- a/documentation/src/wayland.dox +++ b/documentation/src/wayland.dox @@ -888,19 +888,18 @@ by this call: <tt>(struct Fl_Wayland_Screen_Driver::output *)wl_output_get_user_data(wl_output)</tt>. \anchor seat -<h3>struct seat</h3> -Defined in file \c Fl_Wayland_Screen_Driver.H. One such record is created by +<h3>struct Fl_Wayland_Screen_Driver::seat</h3> +Defined in file \c Fl_Wayland_Screen_Driver.H. One record is created by function \c registry_handle_global() when it receives a \c "wl_seat" or -\c wl_data_device_manager_interface.name interface. A pointer to this record is stored in member +\c wl_data_device_manager_interface.name interface. A pointer to this struct is stored in member \c seat of the client's unique \c Fl_Wayland_Screen_Driver object. <pre> -struct seat { +struct Fl_Wayland_Screen_Driver::seat { struct wl_seat *wl_seat; struct wl_pointer *wl_pointer; struct wl_keyboard *wl_keyboard; uint32_t keyboard_enter_serial; struct wl_surface *keyboard_surface; - struct wl_list link; struct wl_list pointer_outputs; struct wl_cursor_theme *cursor_theme; struct wl_cursor *default_cursor; |
