wlroots-hyprland/include/rootston/desktop.h

83 lines
2.7 KiB
C
Raw Normal View History

2017-09-23 02:24:32 +02:00
#ifndef _ROOTSTON_DESKTOP_H
#define _ROOTSTON_DESKTOP_H
#include <time.h>
#include <wayland-server.h>
2017-12-26 18:51:27 +01:00
#include "config.h"
2017-09-23 02:24:32 +02:00
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_compositor.h>
#include <wlr/types/wlr_wl_shell.h>
#include <wlr/types/wlr_xdg_shell_v6.h>
2017-11-12 15:49:27 +01:00
#include <wlr/types/wlr_xcursor_manager.h>
2017-09-23 02:24:32 +02:00
#include <wlr/types/wlr_gamma_control.h>
#include <wlr/types/wlr_primary_selection.h>
#include <wlr/types/wlr_screenshooter.h>
2017-10-22 04:00:04 +02:00
#include <wlr/types/wlr_list.h>
2017-09-23 02:24:32 +02:00
#include "rootston/view.h"
#include "rootston/config.h"
2017-09-23 02:24:32 +02:00
struct roots_output {
struct roots_desktop *desktop;
struct wlr_output *wlr_output;
2017-09-23 02:24:32 +02:00
struct wl_listener frame;
struct timespec last_frame;
struct wl_list link; // roots_desktop:outputs
struct roots_view *fullscreen_view;
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;
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 wl_listener output_add;
struct wl_listener output_remove;
struct wl_listener xdg_shell_v6_surface;
struct wl_listener wl_shell_surface;
struct wl_listener decoration_new;
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);
struct roots_view *desktop_view_at(struct roots_desktop *desktop, double lx,
double ly, struct wlr_surface **surface, double *sx, double *sy);
2017-11-17 12:45:07 +01:00
void view_init(struct roots_view *view, struct roots_desktop *desktop);
2017-09-23 17:13:18 +02:00
void view_destroy(struct roots_view *view);
2017-09-23 23:48:13 +02:00
void view_activate(struct roots_view *view, bool activate);
2017-09-23 17:13:18 +02:00
void output_add_notify(struct wl_listener *listener, void *data);
void output_remove_notify(struct wl_listener *listener, void *data);
2017-09-23 17:13:18 +02:00
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
void handle_wl_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