wlroots-hyprland/include/rootston/desktop.h

103 lines
3.7 KiB
C
Raw Normal View History

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>
#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>
#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>
#include <wlr/types/wlr_primary_selection.h>
#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>
#include <wlr/types/wlr_xdg_shell.h>
#include <wlr/types/wlr_list.h>
#include <wlr/types/wlr_idle.h>
#include <wlr/types/wlr_idle_inhibit_v1.h>
#include "rootston/view.h"
#include "rootston/config.h"
#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
struct wl_list outputs; // roots_output::link
struct timespec last_frame;
2017-09-23 17:13:18 +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;
struct wlr_compositor *compositor;
2017-09-23 02:24:32 +02:00
struct wlr_wl_shell *wl_shell;
struct wlr_xdg_shell_v6 *xdg_shell_v6;
struct wlr_xdg_shell *xdg_shell;
2017-09-23 02:24:32 +02:00
struct wlr_gamma_control_manager *gamma_control_manager;
struct wlr_screenshooter *screenshooter;
struct wlr_server_decoration_manager *server_decoration_manager;
struct wlr_primary_selection_device_manager *primary_selection_device_manager;
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;
struct wl_listener new_output;
2017-12-31 12:49:06 +01:00
struct wl_listener layout_change;
struct wl_listener xdg_shell_v6_surface;
struct wl_listener xdg_shell_surface;
struct wl_listener wl_shell_surface;
struct wl_listener layer_shell_surface;
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
};
struct roots_server;
struct roots_desktop *desktop_create(struct roots_server *server,
struct roots_config *config);
void desktop_destroy(struct roots_desktop *desktop);
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);
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);
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);
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);
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);
void handle_xdg_shell_surface(struct wl_listener *listener, void *data);
void handle_wl_shell_surface(struct wl_listener *listener, void *data);
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