aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2023-07-11 12:59:52 +0300
committerKirill Primak <vyivel@eclair.cafe>2023-07-17 19:12:02 +0300
commitc6603288fb3b1b09818e5521567735b81c087029 (patch)
tree90e22adafae30d3378367bfe492278b3861d379e
parent000081db1960236d1dadbbd4425ce24ca311e0bd (diff)
xdg-shell: update stale docs
-rw-r--r--include/wlr/types/wlr_xdg_shell.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h
index 7678a168..ac2e097d 100644
--- a/include/wlr/types/wlr_xdg_shell.h
+++ b/include/wlr/types/wlr_xdg_shell.h
@@ -25,13 +25,7 @@ struct wlr_xdg_shell {
struct wl_listener display_destroy;
struct {
- /**
- * The `new_surface` event signals that a client has requested to
- * create a new shell surface. At this point, the surface is ready to
- * be configured but is not mapped or ready receive input events. The
- * surface will be ready to be managed on the `map` event.
- */
- struct wl_signal new_surface;
+ struct wl_signal new_surface; // struct wlr_xdg_surface
struct wl_signal destroy;
} events;
@@ -231,11 +225,6 @@ struct wlr_xdg_surface_state {
* An xdg-surface is a user interface element requiring management by the
* compositor. An xdg-surface alone isn't useful, a role should be assigned to
* it in order to map it.
- *
- * When a surface has a role and is ready to be displayed, the `map` event is
- * emitted. When a surface should no longer be displayed, the `unmap` event is
- * emitted. The `unmap` event is guaranteed to be emitted before the `destroy`
- * event if the view is destroyed when mapped.
*/
struct wlr_xdg_surface {
struct wlr_xdg_client *client;