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