aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_xdg_decoration_v1.h4
-rw-r--r--include/wlr/types/wlr_xdg_foreign_v1.h4
-rw-r--r--include/wlr/types/wlr_xdg_foreign_v2.h4
-rw-r--r--include/wlr/types/wlr_xdg_shell.h8
4 files changed, 12 insertions, 8 deletions
diff --git a/include/wlr/types/wlr_xdg_decoration_v1.h b/include/wlr/types/wlr_xdg_decoration_v1.h
index 61ce4bc1..d8ec038d 100644
--- a/include/wlr/types/wlr_xdg_decoration_v1.h
+++ b/include/wlr/types/wlr_xdg_decoration_v1.h
@@ -45,8 +45,6 @@ struct wlr_xdg_toplevel_decoration_v1 {
enum wlr_xdg_toplevel_decoration_v1_mode scheduled_mode;
enum wlr_xdg_toplevel_decoration_v1_mode requested_mode;
- bool added;
-
struct wl_list configure_list; // wlr_xdg_toplevel_decoration_v1_configure.link
struct {
@@ -54,7 +52,7 @@ struct wlr_xdg_toplevel_decoration_v1 {
struct wl_signal request_mode;
} events;
- struct wl_listener surface_destroy;
+ struct wl_listener toplevel_destroy;
struct wl_listener surface_configure;
struct wl_listener surface_ack_configure;
struct wl_listener surface_commit;
diff --git a/include/wlr/types/wlr_xdg_foreign_v1.h b/include/wlr/types/wlr_xdg_foreign_v1.h
index 45f060df..bb26fcfc 100644
--- a/include/wlr/types/wlr_xdg_foreign_v1.h
+++ b/include/wlr/types/wlr_xdg_foreign_v1.h
@@ -34,7 +34,7 @@ struct wlr_xdg_exported_v1 {
struct wlr_xdg_foreign_exported base;
struct wl_resource *resource;
- struct wl_listener xdg_surface_destroy;
+ struct wl_listener xdg_toplevel_destroy;
struct wl_list link; // wlr_xdg_foreign_v1.exporter.objects
};
@@ -54,7 +54,7 @@ struct wlr_xdg_imported_child_v1 {
struct wl_list link; // wlr_xdg_imported_v1.children
- struct wl_listener xdg_surface_destroy;
+ struct wl_listener xdg_toplevel_destroy;
struct wl_listener xdg_toplevel_set_parent;
};
diff --git a/include/wlr/types/wlr_xdg_foreign_v2.h b/include/wlr/types/wlr_xdg_foreign_v2.h
index b091b459..d82854b4 100644
--- a/include/wlr/types/wlr_xdg_foreign_v2.h
+++ b/include/wlr/types/wlr_xdg_foreign_v2.h
@@ -34,7 +34,7 @@ struct wlr_xdg_exported_v2 {
struct wlr_xdg_foreign_exported base;
struct wl_resource *resource;
- struct wl_listener xdg_surface_destroy;
+ struct wl_listener xdg_toplevel_destroy;
struct wl_list link; // wlr_xdg_foreign_v2.exporter.objects
};
@@ -54,7 +54,7 @@ struct wlr_xdg_imported_child_v2 {
struct wl_list link; // wlr_xdg_imported_v2.children
- struct wl_listener xdg_surface_destroy;
+ struct wl_listener xdg_toplevel_destroy;
struct wl_listener xdg_toplevel_set_parent;
};
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h
index 29ced596..9df690f9 100644
--- a/include/wlr/types/wlr_xdg_shell.h
+++ b/include/wlr/types/wlr_xdg_shell.h
@@ -26,6 +26,8 @@ struct wlr_xdg_shell {
struct {
struct wl_signal new_surface; // struct wlr_xdg_surface
+ struct wl_signal new_toplevel; // struct wlr_xdg_toplevel
+ struct wl_signal new_popup; // struct wlr_xdg_popup
struct wl_signal destroy;
} events;
@@ -102,6 +104,8 @@ struct wlr_xdg_popup {
struct wlr_xdg_popup_state current, pending;
struct {
+ struct wl_signal destroy;
+
struct wl_signal reposition;
} events;
@@ -184,6 +188,8 @@ struct wlr_xdg_toplevel {
char *app_id;
struct {
+ struct wl_signal destroy;
+
// Note: as per xdg-shell protocol, the compositor has to
// handle state requests by sending a configure event,
// even if it didn't actually change the state. Therefore,
@@ -249,7 +255,7 @@ struct wlr_xdg_surface {
struct wl_list popups; // wlr_xdg_popup.link
- bool added, configured;
+ bool configured;
struct wl_event_source *configure_idle;
uint32_t scheduled_serial;
struct wl_list configure_list;