2018-02-12 21:29:23 +01:00
|
|
|
#ifndef ROOTSTON_OUTPUT_H
|
|
|
|
#define ROOTSTON_OUTPUT_H
|
2018-01-18 03:31:46 +01:00
|
|
|
#include <pixman.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <time.h>
|
2018-01-18 03:31:46 +01:00
|
|
|
#include <wayland-server.h>
|
2018-03-26 18:22:17 +02:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-02-11 12:49:30 +01:00
|
|
|
#include <wlr/types/wlr_output_damage.h>
|
2018-01-21 00:06:35 +01:00
|
|
|
|
2018-01-18 03:31:46 +01: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 11:42:54 +01:00
|
|
|
|
2018-01-18 03:31:46 +01:00
|
|
|
struct roots_view *fullscreen_view;
|
2018-03-20 04:11:37 +01:00
|
|
|
struct wl_list layers[4]; // layer_surface::link
|
2018-01-18 11:42:54 +01:00
|
|
|
|
|
|
|
struct timespec last_frame;
|
2018-02-11 12:49:30 +01:00
|
|
|
struct wlr_output_damage *damage;
|
2018-01-21 00:06:35 +01:00
|
|
|
|
2018-03-26 18:22:17 +02:00
|
|
|
struct wlr_box usable_area;
|
|
|
|
|
2018-02-12 10:36:43 +01:00
|
|
|
struct wl_listener destroy;
|
2018-03-29 18:18:13 +02:00
|
|
|
struct wl_listener mode;
|
|
|
|
struct wl_listener transform;
|
2018-10-02 11:46:28 +02:00
|
|
|
struct wl_listener present;
|
2018-02-23 10:29:18 +01:00
|
|
|
struct wl_listener damage_frame;
|
|
|
|
struct wl_listener damage_destroy;
|
2018-01-18 03:31:46 +01:00
|
|
|
};
|
|
|
|
|
2019-02-25 14:59:57 +01:00
|
|
|
typedef void (*roots_surface_iterator_func_t)(struct roots_output *output,
|
|
|
|
struct wlr_surface *surface, struct wlr_box *box, float rotation,
|
|
|
|
void *user_data);
|
|
|
|
|
2018-09-27 10:25:59 +02:00
|
|
|
void rotate_child_position(double *sx, double *sy, double sw, double sh,
|
|
|
|
double pw, double ph, float rotation);
|
|
|
|
|
2019-02-25 14:59:57 +01:00
|
|
|
struct roots_input;
|
|
|
|
|
|
|
|
void output_surface_for_each_surface(struct roots_output *output,
|
|
|
|
struct wlr_surface *surface, double ox, double oy,
|
|
|
|
roots_surface_iterator_func_t iterator, void *user_data);
|
|
|
|
void output_view_for_each_surface(struct roots_output *output,
|
|
|
|
struct roots_view *view, roots_surface_iterator_func_t iterator,
|
|
|
|
void *user_data);
|
|
|
|
void output_drag_icons_for_each_surface(struct roots_output *output,
|
|
|
|
struct roots_input *input, roots_surface_iterator_func_t iterator,
|
|
|
|
void *user_data);
|
2019-03-02 12:12:10 +01:00
|
|
|
void output_layer_for_each_surface(struct roots_output *output,
|
|
|
|
struct wl_list *layer_surfaces, roots_surface_iterator_func_t iterator,
|
|
|
|
void *user_data);
|
|
|
|
#if WLR_HAS_XWAYLAND
|
|
|
|
struct wlr_xwayland_surface;
|
|
|
|
void output_xwayland_children_for_each_surface(
|
|
|
|
struct roots_output *output, struct wlr_xwayland_surface *surface,
|
|
|
|
roots_surface_iterator_func_t iterator, void *user_data);
|
|
|
|
#endif
|
2019-02-25 14:59:57 +01:00
|
|
|
void output_for_each_surface(struct roots_output *output,
|
|
|
|
roots_surface_iterator_func_t iterator, void *user_data);
|
|
|
|
|
2018-02-12 10:36:43 +01:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data);
|
2018-01-18 03:31:46 +01:00
|
|
|
|
2018-01-23 13:37:58 +01:00
|
|
|
struct roots_view;
|
|
|
|
struct roots_drag_icon;
|
|
|
|
|
2018-01-30 14:40:22 +01:00
|
|
|
void output_damage_whole(struct roots_output *output);
|
2018-01-18 16:30:56 +01: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 13:37:58 +01:00
|
|
|
void output_damage_whole_drag_icon(struct roots_output *output,
|
|
|
|
struct roots_drag_icon *icon);
|
2018-03-21 02:13:39 +01:00
|
|
|
void output_damage_from_local_surface(struct roots_output *output,
|
2019-02-25 14:59:57 +01:00
|
|
|
struct wlr_surface *surface, double ox, double oy);
|
2018-03-27 05:13:09 +02:00
|
|
|
void output_damage_whole_local_surface(struct roots_output *output,
|
2019-02-25 14:59:57 +01:00
|
|
|
struct wlr_surface *surface, double ox, double oy);
|
2018-01-18 03:31:46 +01:00
|
|
|
|
2019-03-02 12:12:10 +01:00
|
|
|
void output_render(struct roots_output *output);
|
|
|
|
|
|
|
|
void scale_box(struct wlr_box *box, float scale);
|
|
|
|
void get_decoration_box(struct roots_view *view,
|
|
|
|
struct roots_output *output, struct wlr_box *box);
|
|
|
|
|
2018-01-18 03:31:46 +01:00
|
|
|
#endif
|