wlroots-hyprland/include/rootston/view.h

91 lines
2.6 KiB
C
Raw Normal View History

2017-09-23 02:24:32 +02:00
#ifndef _ROOTSTON_VIEW_H
#define _ROOTSTON_VIEW_H
2017-10-08 12:17:25 +02:00
2017-09-23 17:13:18 +02:00
#include <stdbool.h>
2017-09-23 23:48:13 +02:00
#include <wlr/types/wlr_box.h>
2017-09-23 17:13:18 +02:00
#include <wlr/types/wlr_surface.h>
2017-09-23 23:48:13 +02:00
#include <wlr/types/wlr_xdg_shell_v6.h>
2017-09-23 02:24:32 +02:00
struct roots_wl_shell_surface {
2017-09-27 14:48:53 +02: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-28 00:29:37 +02:00
struct wl_listener request_move;
struct wl_listener request_resize;
2017-10-08 17:59:38 +02:00
struct wl_listener surface_commit;
2017-09-23 02:24:32 +02:00
};
struct roots_xdg_surface_v6 {
2017-09-23 17:13:18 +02:00
struct roots_view *view;
2017-10-08 12:17:25 +02:00
2017-09-23 02:24:32 +02:00
// TODO: Maybe destroy listener should go in roots_view
2017-10-08 12:17:25 +02:00
struct wl_listener commit;
2017-09-23 17:13:18 +02:00
struct wl_listener destroy;
struct wl_listener request_move;
struct wl_listener request_resize;
2017-09-23 02:24:32 +02:00
};
struct roots_xwayland_surface {
2017-09-28 14:54:57 +02:00
struct roots_view *view;
2017-09-28 14:54:57 +02:00
// TODO: Maybe destroy listener should go in roots_view
struct wl_listener destroy;
struct wl_listener request_configure;
2017-10-27 16:48:09 +02:00
struct wl_listener request_move;
struct wl_listener request_resize;
2017-10-25 03:07:46 +02:00
struct wl_listener map_notify;
struct wl_listener unmap_notify;
2017-09-28 14:54:57 +02:00
};
2017-09-23 02:24:32 +02:00
enum roots_view_type {
ROOTS_WL_SHELL_VIEW,
ROOTS_XDG_SHELL_V6_VIEW,
ROOTS_XWAYLAND_VIEW,
};
struct roots_view {
2017-09-24 00:18:19 +02:00
struct roots_desktop *desktop;
2017-09-23 02:24:32 +02:00
double x, y;
float rotation;
// TODO: Something for roots-enforced width/height
enum roots_view_type type;
union {
2017-09-27 14:48:53 +02:00
struct wlr_wl_shell_surface *wl_shell_surface;
2017-09-23 17:13:18 +02:00
struct wlr_xdg_surface_v6 *xdg_surface_v6;
2017-10-06 23:50:25 +02:00
#ifdef HAS_XWAYLAND
struct wlr_xwayland_surface *xwayland_surface;
2017-10-06 23:50:25 +02:00
#endif
2017-09-23 02:24:32 +02:00
};
union {
struct roots_wl_shell_surface *roots_wl_shell_surface;
2017-09-23 17:13:18 +02:00
struct roots_xdg_surface_v6 *roots_xdg_surface_v6;
2017-10-06 23:50:25 +02:00
#ifdef HAS_XWAYLAND
struct roots_xwayland_surface *roots_xwayland_surface;
2017-10-06 23:50:25 +02:00
#endif
2017-09-23 02:24:32 +02:00
};
2017-09-23 17:13:18 +02:00
struct wlr_surface *wlr_surface;
2017-09-23 23:48:13 +02: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 14:02:09 +02:00
void (*get_size)(struct roots_view *view, struct wlr_box *box);
2017-09-23 23:48:13 +02:00
void (*activate)(struct roots_view *view, bool active);
2017-09-30 11:57:39 +02:00
void (*resize)(struct roots_view *view, uint32_t width, uint32_t height);
2017-10-19 18:33:02 +02:00
void (*set_position)(struct roots_view *view, double x, double y);
void (*close)(struct roots_view *view);
2017-09-23 02:24:32 +02:00
};
2017-09-30 14:02:09 +02:00
void view_get_size(struct roots_view *view, struct wlr_box *box);
2017-09-23 23:48:13 +02:00
void view_activate(struct roots_view *view, bool active);
2017-09-30 11:57:39 +02:00
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
2017-10-19 18:33:02 +02:00
void view_set_position(struct roots_view *view, double x, double y);
void view_close(struct roots_view *view);
2017-10-08 12:17:25 +02:00
bool view_center(struct roots_view *view);
2017-10-25 20:34:40 +02:00
void view_setup(struct roots_view *view);
void view_teardown(struct roots_view *view);
2017-09-23 23:48:13 +02:00
2017-09-23 02:24:32 +02:00
#endif