2015-10-24 23:20:00 +00:00
|
|
|
#ifndef _SWAY_OUTPUT_H
|
|
|
|
#define _SWAY_OUTPUT_H
|
2017-11-11 19:41:18 +00:00
|
|
|
#include <time.h>
|
2018-03-28 22:10:43 +00:00
|
|
|
#include <unistd.h>
|
2017-11-11 19:41:18 +00:00
|
|
|
#include <wayland-server.h>
|
2018-03-28 19:47:22 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2017-11-11 19:41:18 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2015-10-24 23:20:00 +00:00
|
|
|
|
2017-11-11 19:41:18 +00:00
|
|
|
struct sway_server;
|
2017-11-19 22:04:28 +00:00
|
|
|
struct sway_container;
|
2017-11-11 19:41:18 +00:00
|
|
|
|
|
|
|
struct sway_output {
|
|
|
|
struct wlr_output *wlr_output;
|
2017-11-19 22:04:28 +00:00
|
|
|
struct sway_container *swayc;
|
2017-11-11 19:41:18 +00:00
|
|
|
struct sway_server *server;
|
|
|
|
struct timespec last_frame;
|
2017-12-12 18:40:17 +00:00
|
|
|
|
2018-03-28 19:47:22 +00:00
|
|
|
struct wl_list layers[4]; // sway_layer_surface::link
|
|
|
|
struct wlr_box usable_area;
|
|
|
|
|
2017-11-18 16:22:02 +00:00
|
|
|
struct wl_listener frame;
|
2018-03-28 20:38:11 +00:00
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener mode;
|
2018-03-29 16:19:20 +00:00
|
|
|
struct wl_listener transform;
|
2018-03-28 20:38:11 +00:00
|
|
|
|
|
|
|
pid_t bg_pid;
|
2017-11-11 19:41:18 +00:00
|
|
|
};
|
|
|
|
|
2015-10-24 23:20:00 +00:00
|
|
|
#endif
|