2015-10-25 01:20:00 +02:00
|
|
|
#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>
|
2018-03-30 13:18:50 -04:00
|
|
|
#include "sway/tree/view.h"
|
2015-10-25 01:20:00 +02:00
|
|
|
|
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;
|
2017-12-12 19:40:17 +01:00
|
|
|
|
2018-03-28 15:47:22 -04:00
|
|
|
struct wl_list layers[4]; // sway_layer_surface::link
|
|
|
|
struct wlr_box usable_area;
|
|
|
|
|
2018-03-30 13:18:50 -04:00
|
|
|
struct timespec last_frame;
|
|
|
|
struct wlr_output_damage *damage;
|
|
|
|
|
2018-03-28 16:38:11 -04:00
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener mode;
|
2018-03-29 12:19:20 -04:00
|
|
|
struct wl_listener transform;
|
2018-03-31 17:49:40 -04:00
|
|
|
struct wl_listener scale;
|
2018-03-28 16:38:11 -04:00
|
|
|
|
2018-03-30 13:18:50 -04:00
|
|
|
struct wl_listener damage_destroy;
|
|
|
|
struct wl_listener damage_frame;
|
|
|
|
|
2018-03-28 16:38:11 -04:00
|
|
|
pid_t bg_pid;
|
2017-11-11 14:41:18 -05:00
|
|
|
};
|
|
|
|
|
2018-03-30 13:18:50 -04:00
|
|
|
void output_damage_whole(struct sway_output *output);
|
|
|
|
|
2018-04-06 11:27:40 -04:00
|
|
|
void output_damage_surface(struct sway_output *output, double ox, double oy,
|
|
|
|
struct wlr_surface *surface, bool whole);
|
2018-04-05 18:38:50 -04:00
|
|
|
|
2018-05-05 19:43:12 +01:00
|
|
|
void output_damage_from_view(struct sway_output *output,
|
|
|
|
struct sway_view *view);
|
2018-03-30 13:18:50 -04:00
|
|
|
|
2018-04-05 18:38:50 -04:00
|
|
|
void output_damage_whole_container(struct sway_output *output,
|
|
|
|
struct sway_container *con);
|
2018-04-05 17:37:24 -04:00
|
|
|
|
2018-03-31 21:21:26 -04:00
|
|
|
struct sway_container *output_by_name(const char *name);
|
|
|
|
|
2015-10-25 01:20:00 +02:00
|
|
|
#endif
|