wlroots/include/rootston/desktop.h

75 lines
2.2 KiB
C
Raw Normal View History

2017-09-23 00:24:32 +00:00
#ifndef _ROOTSTON_DESKTOP_H
#define _ROOTSTON_DESKTOP_H
#include <time.h>
#include <wayland-server.h>
#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 14:49:27 +00:00
#include <wlr/types/wlr_xcursor_manager.h>
2017-09-23 00:24:32 +00:00
#include <wlr/types/wlr_gamma_control.h>
#include <wlr/types/wlr_screenshooter.h>
2017-10-22 02:00:04 +00:00
#include <wlr/types/wlr_list.h>
2017-09-23 00:24:32 +00:00
#include "rootston/view.h"
#include "rootston/config.h"
2017-09-23 00:24:32 +00:00
struct roots_output {
struct roots_desktop *desktop;
struct wlr_output *wlr_output;
2017-09-23 00:24:32 +00:00
struct wl_listener frame;
struct timespec last_frame;
struct wl_list link;
};
struct roots_desktop {
2017-10-22 02:00:04 +00:00
struct wlr_list *views;
2017-09-23 15:13:18 +00:00
2017-09-23 00:24:32 +00:00
struct wl_list outputs;
struct timespec last_frame;
2017-09-23 15:13:18 +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;
struct wlr_compositor *compositor;
2017-09-23 00:24:32 +00:00
struct wlr_wl_shell *wl_shell;
struct wlr_xdg_shell_v6 *xdg_shell_v6;
2017-09-23 00:24:32 +00:00
struct wlr_gamma_control_manager *gamma_control_manager;
struct wlr_screenshooter *screenshooter;
struct wlr_server_decoration_manager *server_decoration_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 21:50:25 +00:00
#ifdef HAS_XWAYLAND
struct wlr_xwayland *xwayland;
struct wl_listener xwayland_surface;
#endif
2017-09-23 00:24:32 +00:00
};
struct roots_server;
struct roots_desktop *desktop_create(struct roots_server *server,
struct roots_config *config);
void desktop_destroy(struct roots_desktop *desktop);
2017-09-23 15:13:18 +00:00
void view_destroy(struct roots_view *view);
2017-09-30 16:33:39 +00:00
struct roots_view *view_at(struct roots_desktop *desktop, double lx, double ly,
struct wlr_surface **surface, double *sx, double *sy);
2017-09-23 21:48:13 +00:00
void view_activate(struct roots_view *view, bool activate);
2017-09-23 15:13:18 +00:00
void output_add_notify(struct wl_listener *listener, void *data);
void output_remove_notify(struct wl_listener *listener, void *data);
2017-09-23 15:13:18 +00: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 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