sway/include/sway/output.h

30 lines
590 B
C
Raw Normal View History

#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>
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;
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;
struct wl_listener destroy;
struct wl_listener mode;
struct wl_listener transform;
pid_t bg_pid;
2017-11-11 19:41:18 +00:00
};
#endif