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