2015-10-25 10:20:00 +11:00
|
|
|
#ifndef _SWAY_OUTPUT_H
|
|
|
|
#define _SWAY_OUTPUT_H
|
2017-11-12 06:41:18 +11:00
|
|
|
#include <time.h>
|
2018-03-29 09:10:43 +11:00
|
|
|
#include <unistd.h>
|
2017-11-12 06:41:18 +11:00
|
|
|
#include <wayland-server.h>
|
2018-03-29 06:47:22 +11:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2017-11-12 06:41:18 +11:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "sway/tree/view.h"
|
2015-10-25 10:20:00 +11:00
|
|
|
|
2017-11-12 06:41:18 +11:00
|
|
|
struct sway_server;
|
2017-11-20 09:04:28 +11:00
|
|
|
struct sway_container;
|
2017-11-12 06:41:18 +11:00
|
|
|
|
|
|
|
struct sway_output {
|
|
|
|
struct wlr_output *wlr_output;
|
2017-11-20 09:04:28 +11:00
|
|
|
struct sway_container *swayc;
|
2017-11-12 06:41:18 +11:00
|
|
|
struct sway_server *server;
|
2017-12-13 05:40:17 +11:00
|
|
|
|
2018-03-29 06:47:22 +11:00
|
|
|
struct wl_list layers[4]; // sway_layer_surface::link
|
|
|
|
struct wlr_box usable_area;
|
|
|
|
|
2018-03-31 04:18:50 +11:00
|
|
|
struct timespec last_frame;
|
|
|
|
struct wlr_output_damage *damage;
|
|
|
|
|
2018-03-29 07:38:11 +11:00
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener mode;
|
2018-03-30 03:19:20 +11:00
|
|
|
struct wl_listener transform;
|
2018-04-01 07:49:40 +10:00
|
|
|
struct wl_listener scale;
|
2018-03-29 07:38:11 +11:00
|
|
|
|
2018-03-31 04:18:50 +11:00
|
|
|
struct wl_listener damage_destroy;
|
|
|
|
struct wl_listener damage_frame;
|
|
|
|
|
2018-06-07 10:10:42 +10:00
|
|
|
struct wl_list link;
|
|
|
|
|
2018-03-29 07:38:11 +11:00
|
|
|
pid_t bg_pid;
|
2018-06-26 22:19:38 +10:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct wl_signal destroy;
|
|
|
|
} events;
|
2017-11-12 06:41:18 +11:00
|
|
|
};
|
|
|
|
|
2018-03-31 04:18:50 +11:00
|
|
|
void output_damage_whole(struct sway_output *output);
|
|
|
|
|
2018-04-07 01:27:40 +10:00
|
|
|
void output_damage_surface(struct sway_output *output, double ox, double oy,
|
|
|
|
struct wlr_surface *surface, bool whole);
|
2018-04-06 08:38:50 +10:00
|
|
|
|
2018-05-06 04:43:12 +10:00
|
|
|
void output_damage_from_view(struct sway_output *output,
|
|
|
|
struct sway_view *view);
|
2018-03-31 04:18:50 +11:00
|
|
|
|
2018-06-03 16:35:06 +10:00
|
|
|
void output_damage_box(struct sway_output *output, struct wlr_box *box);
|
|
|
|
|
2018-04-06 08:38:50 +10:00
|
|
|
void output_damage_whole_container(struct sway_output *output,
|
|
|
|
struct sway_container *con);
|
2018-04-06 07:37:24 +10:00
|
|
|
|
2018-04-01 11:21:26 +10:00
|
|
|
struct sway_container *output_by_name(const char *name);
|
|
|
|
|
2018-06-06 07:56:32 +10:00
|
|
|
void output_enable(struct sway_output *output);
|
2015-10-25 10:20:00 +11:00
|
|
|
#endif
|