wlroots/include/rootston/view.h

76 lines
2.4 KiB
C
Raw Normal View History

2017-09-23 00:24:32 +00:00
#ifndef _ROOTSTON_VIEW_H
#define _ROOTSTON_VIEW_H
2017-09-23 15:13:18 +00:00
#include <stdbool.h>
2017-09-23 21:48:13 +00:00
#include <wlr/types/wlr_box.h>
2017-09-23 15:13:18 +00:00
#include <wlr/types/wlr_surface.h>
2017-09-23 21:48:13 +00:00
#include <wlr/types/wlr_xdg_shell_v6.h>
2017-09-23 00:24:32 +00:00
struct roots_wl_shell_surface {
2017-09-27 12:48:53 +00:00
struct roots_view *view;
// TODO: Maybe destroy listener should go in roots_view
struct wl_listener destroy;
struct wl_listener ping_timeout;
2017-09-27 22:29:37 +00:00
struct wl_listener request_move;
struct wl_listener request_resize;
struct wl_listener request_set_fullscreen;
struct wl_listener request_set_maximized;
2017-09-23 00:24:32 +00:00
};
struct roots_xdg_surface_v6 {
2017-09-23 15:13:18 +00:00
struct roots_view *view;
2017-09-23 00:24:32 +00:00
// TODO: Maybe destroy listener should go in roots_view
2017-09-23 15:13:18 +00:00
struct wl_listener destroy;
struct wl_listener ping_timeout;
struct wl_listener request_minimize;
struct wl_listener request_move;
struct wl_listener request_resize;
struct wl_listener request_show_window_menu;
2017-09-23 00:24:32 +00:00
};
struct roots_xwayland_surface {
2017-09-28 12:54:57 +00:00
struct roots_view *view;
// TODO: Maybe destroy listener should go in roots_view
struct wl_listener destroy;
struct wl_listener request_configure;
2017-09-28 12:54:57 +00:00
};
2017-09-23 00:24:32 +00:00
enum roots_view_type {
ROOTS_WL_SHELL_VIEW,
ROOTS_XDG_SHELL_V6_VIEW,
ROOTS_XWAYLAND_VIEW,
};
struct roots_view {
2017-09-23 22:18:19 +00:00
struct roots_desktop *desktop;
2017-09-23 00:24:32 +00:00
double x, y;
float rotation;
// TODO: Something for roots-enforced width/height
enum roots_view_type type;
union {
2017-09-27 12:48:53 +00:00
struct wlr_wl_shell_surface *wl_shell_surface;
2017-09-23 15:13:18 +00:00
struct wlr_xdg_surface_v6 *xdg_surface_v6;
struct wlr_xwayland_surface *xwayland_surface;
2017-09-23 00:24:32 +00:00
};
union {
struct roots_wl_shell_surface *roots_wl_shell_surface;
2017-09-23 15:13:18 +00:00
struct roots_xdg_surface_v6 *roots_xdg_surface_v6;
struct roots_xwayland_surface *roots_xwayland_surface;
2017-09-23 00:24:32 +00:00
};
2017-09-23 15:13:18 +00:00
struct wlr_surface *wlr_surface;
2017-09-23 21:48:13 +00:00
// TODO: This would probably be better as a field that's updated on a
// configure event from the xdg_shell
// If not then this should follow the typical type/impl pattern we use
// elsewhere
2017-09-30 12:02:09 +00:00
void (*get_size)(struct roots_view *view, struct wlr_box *box);
2017-09-23 21:48:13 +00:00
void (*get_input_bounds)(struct roots_view *view, struct wlr_box *box);
void (*activate)(struct roots_view *view, bool active);
2017-09-30 09:57:39 +00:00
void (*resize)(struct roots_view *view, uint32_t width, uint32_t height);
2017-09-23 00:24:32 +00:00
};
2017-09-30 12:02:09 +00:00
void view_get_size(struct roots_view *view, struct wlr_box *box);
2017-09-23 21:48:13 +00:00
void view_get_input_bounds(struct roots_view *view, struct wlr_box *box);
void view_activate(struct roots_view *view, bool active);
2017-09-30 09:57:39 +00:00
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
2017-09-23 21:48:13 +00:00
2017-09-23 00:24:32 +00:00
#endif