2018-06-27 11:16:49 +02:00
|
|
|
|
|
|
|
#ifndef _SWAY_DESKTOP_IDLE_INHIBIT_V1_H
|
|
|
|
#define _SWAY_DESKTOP_IDLE_INHIBIT_V1_H
|
|
|
|
#include <wlr/types/wlr_idle_inhibit_v1.h>
|
|
|
|
#include "sway/server.h"
|
|
|
|
|
|
|
|
struct sway_idle_inhibitor_v1 {
|
|
|
|
struct sway_server *server;
|
2018-06-30 07:09:32 +02:00
|
|
|
struct sway_view *view;
|
2018-06-27 11:16:49 +02:00
|
|
|
|
2018-06-30 07:09:32 +02:00
|
|
|
struct wl_list link;
|
2018-06-27 11:16:49 +02:00
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
2018-06-30 07:09:32 +02:00
|
|
|
void idle_inhibit_v1_check_active(struct sway_server *server);
|
|
|
|
|
2018-06-27 11:16:49 +02:00
|
|
|
#endif
|