#ifndef _SWAY_OUTPUT_H #define _SWAY_OUTPUT_H #include #include #include #include #include #include "config.h" #include "scenefx/render/pass.h" #include "sway/tree/node.h" #include "sway/tree/view.h" struct decoration_data get_undecorated_decoration_data(); struct sway_server; struct sway_container; enum swipe_gesture_direction { SWIPE_GESTURE_DIRECTION_NONE, SWIPE_GESTURE_DIRECTION_HORIZONTAL, SWIPE_GESTURE_DIRECTION_VERTICAL, }; struct workspace_scroll { double percent; double avg_velocity; int num_updates; enum swipe_gesture_direction direction; }; struct decoration_data { float alpha; float saturation; int corner_radius; float dim; float *dim_color; bool has_titlebar; bool discard_transparent; bool blur; bool shadow; }; struct render_data { struct fx_render_context *ctx; pixman_region32_t *damage; struct wlr_box *clip_box; struct decoration_data deco_data; bool on_focused_workspace; struct sway_view *view; }; struct sway_output_state { list_t *workspaces; struct sway_workspace *active_workspace; }; struct sway_output { struct sway_node node; struct wlr_output *wlr_output; struct sway_server *server; struct wl_list link; struct wl_list layers[4]; // sway_layer_surface::link struct wlr_box usable_area; struct timespec last_frame; struct wlr_damage_ring damage_ring; int lx, ly; // layout coords int width, height; // transformed buffer size enum wl_output_subpixel detected_subpixel; enum scale_filter_mode scale_filter; bool enabling, enabled; list_t *workspaces; struct sway_output_state current; struct wl_listener layout_destroy; struct wl_listener destroy; struct wl_listener commit; struct wl_listener present; struct wl_listener damage; struct wl_listener frame; struct wl_listener needs_frame; struct wl_listener request_state; struct workspace_scroll workspace_scroll; struct { struct wl_signal disable; } events; struct timespec last_presentation; uint32_t refresh_nsec; int max_render_time; // In milliseconds struct wl_event_source *repaint_timer; bool gamma_lut_changed; }; struct sway_output_non_desktop { struct wlr_output *wlr_output; struct wl_listener destroy; }; struct fx_render_context { struct sway_output *output; struct wlr_renderer *renderer; pixman_region32_t *output_damage; struct fx_gles_render_pass *pass; }; struct sway_output *output_create(struct wlr_output *wlr_output); void output_destroy(struct sway_output *output); void output_begin_destroy(struct sway_output *output); struct sway_output *output_from_wlr_output(struct wlr_output *output); struct sway_output *output_get_in_direction(struct sway_output *reference, enum wlr_direction direction); void output_add_workspace(struct sway_output *output, struct sway_workspace *workspace); typedef void (*sway_surface_iterator_func_t)(struct sway_output *output, struct sway_view *view, struct wlr_surface *surface, struct wlr_box *box, void *user_data); void output_damage_whole(struct sway_output *output); void output_damage_surface(struct sway_output *output, double ox, double oy, struct wlr_surface *surface, bool whole); void output_damage_from_view(struct sway_output *output, struct sway_view *view); void output_damage_box(struct sway_output *output, struct wlr_box *box); void output_damage_whole_container(struct sway_output *output, struct sway_container *con); bool output_match_name_or_id(struct sway_output *output, const char *name_or_id); // this ONLY includes the enabled outputs struct sway_output *output_by_name_or_id(const char *name_or_id); // this includes all the outputs, including disabled ones struct sway_output *all_output_by_name_or_id(const char *name_or_id); void output_sort_workspaces(struct sway_output *output); void output_enable(struct sway_output *output); void output_disable(struct sway_output *output); bool output_has_opaque_overlay_layer_surface(struct sway_output *output); struct sway_workspace *output_get_active_workspace(struct sway_output *output); void output_render(struct fx_render_context *ctx); void output_surface_for_each_surface(struct sway_output *output, struct wlr_surface *surface, double ox, double oy, sway_surface_iterator_func_t iterator, void *user_data); void output_view_for_each_surface(struct sway_output *output, struct sway_view *view, sway_surface_iterator_func_t iterator, void *user_data); void output_view_for_each_popup_surface(struct sway_output *output, struct sway_view *view, sway_surface_iterator_func_t iterator, void *user_data); void output_layer_for_each_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); void output_layer_for_each_toplevel_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); void output_layer_for_each_popup_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); #if HAVE_XWAYLAND void output_unmanaged_for_each_surface(struct sway_output *output, struct wl_list *unmanaged, sway_surface_iterator_func_t iterator, void *user_data); #endif void output_input_popups_for_each_surface(struct sway_output *output, struct wl_list *input_popups, sway_surface_iterator_func_t iterator, void *user_data); void output_drag_icons_for_each_surface(struct sway_output *output, struct wl_list *drag_icons, sway_surface_iterator_func_t iterator, void *user_data); void output_for_each_workspace(struct sway_output *output, void (*f)(struct sway_workspace *ws, void *data), void *data); void output_for_each_container(struct sway_output *output, void (*f)(struct sway_container *con, void *data), void *data); struct sway_workspace *output_find_workspace(struct sway_output *output, bool (*test)(struct sway_workspace *ws, void *data), void *data); struct sway_container *output_find_container(struct sway_output *output, bool (*test)(struct sway_container *con, void *data), void *data); void output_get_box(struct sway_output *output, struct wlr_box *box); enum sway_container_layout output_get_default_layout( struct sway_output *output); void render_rect(struct fx_render_context *ctx, const struct wlr_box *_box, float color[static 4]); void render_rounded_rect(struct fx_render_context *ctx, const struct wlr_box *_box, float color[static 4], int corner_radius, enum corner_location corner_location); void render_blur(struct fx_render_context *ctx, struct wlr_texture *texture, const struct wlr_fbox *src_box, const struct wlr_box *dst_box, bool optimized_blur, pixman_region32_t *opaque_region, struct decoration_data deco_data); void premultiply_alpha(float color[4], float opacity); void scale_box(struct wlr_box *box, float scale); enum wlr_direction opposite_direction(enum wlr_direction d); void handle_output_layout_change(struct wl_listener *listener, void *data); void handle_gamma_control_set_gamma(struct wl_listener *listener, void *data); void handle_output_manager_apply(struct wl_listener *listener, void *data); void handle_output_manager_test(struct wl_listener *listener, void *data); void handle_output_power_manager_set_mode(struct wl_listener *listener, void *data); struct workspace_scroll workspace_scroll_get_default(); bool workspace_scroll_equal(struct workspace_scroll *a, struct workspace_scroll *b); void workspace_scroll_begin(struct sway_seat *seat, enum swipe_gesture_direction direction); void workspace_scroll_update(struct sway_seat *seat, struct gesture_tracker *tracker, struct wlr_pointer_swipe_update_event *event, int invert); void workspace_scroll_end(struct sway_seat *seat); void workspace_scroll_reset(struct sway_seat *seat, struct sway_workspace *ws); struct sway_output_non_desktop *output_non_desktop_create(struct wlr_output *wlr_output); #endif