aboutsummaryrefslogtreecommitdiff
path: root/include/sway/desktop
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2018-07-02 09:26:57 +0900
committerDominique Martinet <asmadeus@codewreck.org>2018-07-02 09:29:16 +0900
commit71224781c48f98f43f5836de663ef6e01604419c (patch)
tree7c2336020076f123184d1c18bbcb7db3e95be526 /include/sway/desktop
parent072b334abc6f065080bf944767bbd53d7a590e47 (diff)
idle_inhibit: move server data to its own struct
Diffstat (limited to 'include/sway/desktop')
-rw-r--r--include/sway/desktop/idle_inhibit_v1.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/include/sway/desktop/idle_inhibit_v1.h b/include/sway/desktop/idle_inhibit_v1.h
index 1764713c..e5ed8a3d 100644
--- a/include/sway/desktop/idle_inhibit_v1.h
+++ b/include/sway/desktop/idle_inhibit_v1.h
@@ -1,17 +1,28 @@
-
#ifndef _SWAY_DESKTOP_IDLE_INHIBIT_V1_H
#define _SWAY_DESKTOP_IDLE_INHIBIT_V1_H
#include <wlr/types/wlr_idle_inhibit_v1.h>
+#include <wlr/types/wlr_idle.h>
#include "sway/server.h"
+struct sway_idle_inhibit_manager_v1 {
+ struct wlr_idle_inhibit_manager_v1 *wlr_manager;
+ struct wl_listener new_idle_inhibitor_v1;
+ struct wl_list inhibitors;
+
+ struct wlr_idle *idle;
+};
+
struct sway_idle_inhibitor_v1 {
- struct sway_server *server;
+ struct sway_idle_inhibit_manager_v1 *manager;
struct sway_view *view;
struct wl_list link;
struct wl_listener destroy;
};
-void idle_inhibit_v1_check_active(struct sway_server *server);
+void idle_inhibit_v1_check_active(
+ struct sway_idle_inhibit_manager_v1 *manager);
+struct sway_idle_inhibit_manager_v1 *sway_idle_inhibit_manager_v1_create(
+ struct wl_display *wl_display, struct wlr_idle *idle);
#endif