mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 20:07:46 +03:00
The last implementation would ignore these and get it could get into
a bad state where it would start crashing sway.
(cherry picked from commit 74e507962e
)
23 lines
561 B
C
23 lines
561 B
C
#ifndef _SWAY_INPUT_TEXT_INPUT_POPUP_H
|
|
#define _SWAY_INPUT_TEXT_INPUT_POPUP_H
|
|
|
|
#include "sway/tree/view.h"
|
|
|
|
struct sway_input_popup {
|
|
struct sway_input_method_relay *relay;
|
|
|
|
struct wlr_scene_tree *scene_tree;
|
|
struct sway_popup_desc desc;
|
|
struct wlr_input_popup_surface_v2 *popup_surface;
|
|
struct wlr_output *fixed_output;
|
|
|
|
struct wl_list link;
|
|
|
|
struct wl_listener popup_destroy;
|
|
struct wl_listener popup_surface_commit;
|
|
struct wl_listener popup_surface_map;
|
|
struct wl_listener popup_surface_unmap;
|
|
|
|
struct wl_listener focused_surface_unmap;
|
|
};
|
|
#endif
|