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;
|
2019-03-08 16:11:19 +00:00
|
|
|
struct wl_listener enable;
|
2018-03-29 16:18:13 +00:00
|
|
|
struct wl_listener mode;
|
|
|
|
struct wl_listener transform;
|
2018-10-02 09:46:28 +00:00
|
|
|
struct wl_listener present;
|
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
|
|
|
};
|
|
|
|
|
2019-02-25 13:59:57 +00: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 08:25:59 +00:00
|
|
|
void rotate_child_position(double *sx, double *sy, double sw, double sh,
|
|
|
|
double pw, double ph, float rotation);
|
|
|
|
|
2019-02-25 13:59:57 +00: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 11:12:10 +00: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 13:59:57 +00:00
|
|
|
void output_for_each_surface(struct roots_output *output,
|
|
|
|
roots_surface_iterator_func_t iterator, void *user_data);
|
|
|
|
|
2018-02-12 09:36:43 +00:00
|
|
|
void handle_new_output(struct wl_listener *listener, void *data);
|
2019-03-09 22:12:27 +00:00
|
|
|
void handle_output_manager_apply(struct wl_listener *listener, void *data);
|
|
|
|
void handle_output_manager_test(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,
|
2019-02-25 13:59:57 +00:00
|
|
|
struct wlr_surface *surface, double ox, double oy);
|
2018-03-27 03:13:09 +00:00
|
|
|
void output_damage_whole_local_surface(struct roots_output *output,
|
2019-02-25 13:59:57 +00:00
|
|
|
struct wlr_surface *surface, double ox, double oy);
|
2018-01-18 02:31:46 +00:00
|
|
|
|
2019-03-02 11:12:10 +00: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 02:31:46 +00:00
|
|
|
#endif
|