swayfx/include/sway/output.h

30 lines
590 B
C
Raw Normal View History

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