summaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
blob: 6fb79987bcfb03c282624741f03b080d1dfa42dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _SWAY_OUTPUT_H
#define _SWAY_OUTPUT_H
#include <time.h>
#include <unistd.h>
#include <wayland-server.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_output.h>

struct sway_server;
struct sway_container;

struct sway_output {
	struct wlr_output *wlr_output;
	struct sway_container *swayc;
	struct sway_server *server;
	struct timespec last_frame;

	struct wl_list layers[4]; // sway_layer_surface::link
	struct wlr_box usable_area;

	struct wl_listener frame;
	struct wl_listener destroy;
	struct wl_listener mode;
	struct wl_listener transform;

	pid_t bg_pid;
};

#endif