2018-02-12 20:29:23 +00:00
|
|
|
#ifndef ROOTSTON_DESKTOP_H
|
|
|
|
#define ROOTSTON_DESKTOP_H
|
2017-09-23 00:24:32 +00:00
|
|
|
#include <time.h>
|
|
|
|
#include <wayland-server.h>
|
2017-12-27 13:37:55 +00:00
|
|
|
#include <wlr/config.h>
|
2017-09-23 00:24:32 +00:00
|
|
|
#include <wlr/types/wlr_compositor.h>
|
2018-07-22 15:22:34 +00:00
|
|
|
#include <wlr/types/wlr_gamma_control_v1.h>
|
2017-09-23 00:24:32 +00:00
|
|
|
#include <wlr/types/wlr_gamma_control.h>
|
2018-06-10 10:15:26 +00:00
|
|
|
#include <wlr/types/wlr_idle_inhibit_v1.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/types/wlr_idle.h>
|
2018-04-03 15:29:32 +00:00
|
|
|
#include <wlr/types/wlr_input_inhibitor.h>
|
2018-09-14 17:32:33 +00:00
|
|
|
#include <wlr/types/wlr_layer_shell_v1.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/types/wlr_list.h>
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-12-22 21:22:29 +00:00
|
|
|
#include <wlr/types/wlr_primary_selection.h>
|
2018-06-10 10:15:26 +00:00
|
|
|
#include <wlr/types/wlr_screencopy_v1.h>
|
2017-10-07 09:07:51 +00:00
|
|
|
#include <wlr/types/wlr_screenshooter.h>
|
2018-05-24 17:46:54 +00:00
|
|
|
#include <wlr/types/wlr_virtual_keyboard_v1.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/types/wlr_wl_shell.h>
|
|
|
|
#include <wlr/types/wlr_xcursor_manager.h>
|
2018-06-10 10:15:26 +00:00
|
|
|
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/types/wlr_xdg_shell_v6.h>
|
2018-02-14 11:40:13 +00:00
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
2017-09-23 04:29:53 +00:00
|
|
|
#include "rootston/config.h"
|
2018-01-18 02:31:46 +00:00
|
|
|
#include "rootston/output.h"
|
2018-02-12 20:29:23 +00:00
|
|
|
#include "rootston/view.h"
|
2017-09-23 00:24:32 +00:00
|
|
|
|
|
|
|
struct roots_desktop {
|
2017-11-17 11:45:07 +00:00
|
|
|
struct wl_list views; // roots_view::link
|
2017-09-23 15:13:18 +00:00
|
|
|
|
2017-11-20 18:45:10 +00:00
|
|
|
struct wl_list outputs; // roots_output::link
|
2017-09-23 04:29:53 +00:00
|
|
|
struct timespec last_frame;
|
2017-09-23 15:13:18 +00:00
|
|
|
|
2017-09-23 04:29:53 +00:00
|
|
|
struct roots_server *server;
|
|
|
|
struct roots_config *config;
|
|
|
|
|
2017-09-23 00:24:32 +00:00
|
|
|
struct wlr_output_layout *layout;
|
2017-11-12 10:10:56 +00:00
|
|
|
struct wlr_xcursor_manager *xcursor_manager;
|
2017-09-23 04:29:53 +00:00
|
|
|
|
|
|
|
struct wlr_compositor *compositor;
|
2017-09-23 00:24:32 +00:00
|
|
|
struct wlr_wl_shell *wl_shell;
|
2017-09-23 04:29:53 +00:00
|
|
|
struct wlr_xdg_shell_v6 *xdg_shell_v6;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct wlr_xdg_shell *xdg_shell;
|
2017-09-23 00:24:32 +00:00
|
|
|
struct wlr_gamma_control_manager *gamma_control_manager;
|
2018-07-22 15:22:34 +00:00
|
|
|
struct wlr_gamma_control_manager_v1 *gamma_control_manager_v1;
|
2017-10-07 09:07:51 +00:00
|
|
|
struct wlr_screenshooter *screenshooter;
|
2018-05-23 08:07:40 +00:00
|
|
|
struct wlr_export_dmabuf_manager_v1 *export_dmabuf_manager_v1;
|
2017-10-26 22:02:30 +00:00
|
|
|
struct wlr_server_decoration_manager *server_decoration_manager;
|
2018-06-10 10:15:26 +00:00
|
|
|
struct wlr_xdg_decoration_manager_v1 *xdg_decoration_manager;
|
2017-12-22 21:22:29 +00:00
|
|
|
struct wlr_primary_selection_device_manager *primary_selection_device_manager;
|
2018-01-07 19:42:06 +00:00
|
|
|
struct wlr_idle *idle;
|
2018-02-20 12:41:10 +00:00
|
|
|
struct wlr_idle_inhibit_manager_v1 *idle_inhibit;
|
2018-04-03 15:29:32 +00:00
|
|
|
struct wlr_input_inhibit_manager *input_inhibit;
|
2018-09-14 17:32:33 +00:00
|
|
|
struct wlr_layer_shell_v1 *layer_shell;
|
2018-05-24 17:46:54 +00:00
|
|
|
struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard;
|
2018-06-19 18:07:29 +00:00
|
|
|
struct wlr_screencopy_manager_v1 *screencopy;
|
2018-04-24 06:10:45 +00:00
|
|
|
struct wlr_tablet_manager_v2 *tablet_v2;
|
2018-08-10 16:19:16 +00:00
|
|
|
struct wlr_pointer_constraints_v1 *pointer_constraints;
|
2017-09-23 04:29:53 +00:00
|
|
|
|
2018-02-12 09:36:43 +00:00
|
|
|
struct wl_listener new_output;
|
2017-12-31 11:49:06 +00:00
|
|
|
struct wl_listener layout_change;
|
2017-09-23 04:29:53 +00:00
|
|
|
struct wl_listener xdg_shell_v6_surface;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct wl_listener xdg_shell_surface;
|
2017-09-26 21:59:25 +00:00
|
|
|
struct wl_listener wl_shell_surface;
|
2018-03-18 19:09:37 +00:00
|
|
|
struct wl_listener layer_shell_surface;
|
2018-06-10 10:15:26 +00:00
|
|
|
struct wl_listener xdg_toplevel_decoration;
|
2018-04-03 16:50:05 +00:00
|
|
|
struct wl_listener input_inhibit_activate;
|
|
|
|
struct wl_listener input_inhibit_deactivate;
|
2018-05-24 17:46:54 +00:00
|
|
|
struct wl_listener virtual_keyboard_new;
|
2018-09-27 08:25:59 +00:00
|
|
|
struct wl_listener pointer_constraint;
|
2017-10-06 21:50:25 +00:00
|
|
|
|
2017-12-26 17:51:27 +00:00
|
|
|
#ifdef WLR_HAS_XWAYLAND
|
2017-10-06 21:50:25 +00:00
|
|
|
struct wlr_xwayland *xwayland;
|
|
|
|
struct wl_listener xwayland_surface;
|
|
|
|
#endif
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
|
|
|
|
2017-09-23 04:29:53 +00:00
|
|
|
struct roots_server;
|
|
|
|
|
|
|
|
struct roots_desktop *desktop_create(struct roots_server *server,
|
2018-01-18 02:31:46 +00:00
|
|
|
struct roots_config *config);
|
2017-09-23 04:29:53 +00:00
|
|
|
void desktop_destroy(struct roots_desktop *desktop);
|
2017-11-21 09:37:53 +00:00
|
|
|
struct roots_output *desktop_output_from_wlr_output(
|
|
|
|
struct roots_desktop *desktop, struct wlr_output *output);
|
2018-03-30 19:19:33 +00:00
|
|
|
|
|
|
|
struct wlr_surface *desktop_surface_at(struct roots_desktop *desktop,
|
|
|
|
double lx, double ly, double *sx, double *sy,
|
|
|
|
struct roots_view **view);
|
2017-09-23 04:29:53 +00:00
|
|
|
|
2018-03-09 09:29:22 +00:00
|
|
|
struct roots_view *view_create(struct roots_desktop *desktop);
|
|
|
|
void view_destroy(struct roots_view *view);
|
2017-09-23 21:48:13 +00:00
|
|
|
void view_activate(struct roots_view *view, bool activate);
|
2018-01-18 15:30:56 +00:00
|
|
|
void view_apply_damage(struct roots_view *view);
|
|
|
|
void view_damage_whole(struct roots_view *view);
|
2018-01-18 11:25:39 +00:00
|
|
|
void view_update_position(struct roots_view *view, double x, double y);
|
2018-01-28 09:11:31 +00:00
|
|
|
void view_update_size(struct roots_view *view, uint32_t width, uint32_t height);
|
2018-06-10 10:15:26 +00:00
|
|
|
void view_update_decorated(struct roots_view *view, bool decorated);
|
2018-02-25 08:57:30 +00:00
|
|
|
void view_initial_focus(struct roots_view *view);
|
2018-03-09 09:29:22 +00:00
|
|
|
void view_map(struct roots_view *view, struct wlr_surface *surface);
|
|
|
|
void view_unmap(struct roots_view *view);
|
2018-03-26 18:14:23 +00:00
|
|
|
void view_arrange_maximized(struct roots_view *view);
|
2017-09-23 15:13:18 +00:00
|
|
|
|
|
|
|
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
|
2018-02-14 11:40:13 +00:00
|
|
|
void handle_xdg_shell_surface(struct wl_listener *listener, void *data);
|
2018-06-10 10:15:26 +00:00
|
|
|
void handle_xdg_toplevel_decoration(struct wl_listener *listener, void *data);
|
2017-09-26 21:59:25 +00:00
|
|
|
void handle_wl_shell_surface(struct wl_listener *listener, void *data);
|
2018-03-18 19:09:37 +00:00
|
|
|
void handle_layer_shell_surface(struct wl_listener *listener, void *data);
|
2017-09-28 12:54:57 +00:00
|
|
|
void handle_xwayland_surface(struct wl_listener *listener, void *data);
|
2017-09-23 15:13:18 +00:00
|
|
|
|
2017-09-23 00:24:32 +00:00
|
|
|
#endif
|