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