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