2018-02-12 20:29:23 +00:00
|
|
|
#ifndef ROOTSTON_OUTPUT_H
|
|
|
|
#define ROOTSTON_OUTPUT_H
|
2018-01-18 02:31:46 +00:00
|
|
|
#include <pixman.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <time.h>
|
2018-01-18 02:31:46 +00:00
|
|
|
#include <wayland-server.h>
|
2018-03-26 16:22:17 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-02-11 11:49:30 +00:00
|
|
|
#include <wlr/types/wlr_output_damage.h>
|
2018-01-20 23:06:35 +00:00
|
|
|
|
2018-01-18 02:31:46 +00:00
|
|
|
struct roots_desktop;
|
|
|
|
|
|
|
|
struct roots_output {
|
|
|
|
struct roots_desktop *desktop;
|
|
|
|
struct wlr_output *wlr_output;
|
|
|
|
struct wl_list link; // roots_desktop:outputs
|
2018-01-18 10:42:54 +00:00
|
|
|
|
2018-01-18 02:31:46 +00:00
|
|
|
struct roots_view *fullscreen_view;
|
2018-03-20 03:11:37 +00:00
|
|
|
struct wl_list layers[4]; // layer_surface::link
|
2018-01-18 10:42:54 +00:00
|
|
|
|
|
|
|
struct timespec last_frame;
|
2018-02-11 11:49:30 +00:00
|
|
|
struct wlr_output_damage *damage;
|
2018-01-20 23:06:35 +00:00
|
|
|
|
2018-03-26 16:22:17 +00:00
|
|
|
struct wlr_box usable_area;
|
|
|
|
|
2018-02-12 09:36:43 +00:00
|
|
|
struct wl_listener destroy;
|
2018-03-29 16:18:13 +00:00
|
|
|
struct wl_listener mode;
|
|
|
|
struct wl_listener transform;
|
2018-02-23 09:29:18 +00:00
|
|
|
struct wl_listener damage_frame;
|
|
|
|
struct wl_listener damage_destroy;
|
2018-01-18 02:31:46 +00:00
|
|
|
};
|
|
|
|
|
2018-02-12 09:36:43 +00:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data);
|
2018-01-18 02:31:46 +00:00
|
|
|
|
2018-01-23 12:37:58 +00:00
|
|
|
struct roots_view;
|
|
|
|
struct roots_drag_icon;
|
|
|
|
|
2018-01-30 13:40:22 +00:00
|
|
|
void output_damage_whole(struct roots_output *output);
|
2018-01-18 15:30:56 +00:00
|
|
|
void output_damage_whole_view(struct roots_output *output,
|
|
|
|
struct roots_view *view);
|
|
|
|
void output_damage_from_view(struct roots_output *output,
|
|
|
|
struct roots_view *view);
|
2018-01-23 12:37:58 +00:00
|
|
|
void output_damage_whole_drag_icon(struct roots_output *output,
|
|
|
|
struct roots_drag_icon *icon);
|
2018-03-21 01:13:39 +00:00
|
|
|
void output_damage_from_local_surface(struct roots_output *output,
|
2018-03-27 03:13:09 +00:00
|
|
|
struct wlr_surface *surface, double ox, double oy, float rotation);
|
|
|
|
void output_damage_whole_local_surface(struct roots_output *output,
|
|
|
|
struct wlr_surface *surface, double ox, double oy, float rotation);
|
2018-01-18 02:31:46 +00:00
|
|
|
|
|
|
|
#endif
|