wlroots/include/rootston/view.h

47 lines
1.0 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>
#include <wlr/types/wlr_xdg_shell_v6.h>
#include <wlr/types/wlr_surface.h>
2017-09-23 00:24:32 +00:00
struct roots_wl_shell_surface {
// TODO
void *_placeholder;
};
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
};
enum roots_view_type {
ROOTS_WL_SHELL_VIEW,
ROOTS_XDG_SHELL_V6_VIEW,
ROOTS_XWAYLAND_VIEW,
};
struct roots_view {
double x, y;
float rotation;
// TODO: Something for roots-enforced width/height
enum roots_view_type type;
union {
struct wlr_shell_surface *wl_shell_surface;
2017-09-23 15:13:18 +00:00
struct wlr_xdg_surface_v6 *xdg_surface_v6;
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;
2017-09-23 00:24:32 +00:00
};
2017-09-23 15:13:18 +00:00
struct wlr_surface *wlr_surface;
2017-09-23 00:24:32 +00:00
struct wl_list link;
};
#endif