2018-02-12 20:29:23 +00:00
|
|
|
#ifndef ROOTSTON_VIEW_H
|
|
|
|
#define ROOTSTON_VIEW_H
|
2017-09-23 15:13:18 +00:00
|
|
|
#include <stdbool.h>
|
2017-12-27 13:37:55 +00:00
|
|
|
#include <wlr/config.h>
|
2017-09-23 21:48:13 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-10-02 11:08:23 +00:00
|
|
|
#include <wlr/types/wlr_foreign_toplevel_management_v1.h>
|
2017-09-23 15:13:18 +00:00
|
|
|
#include <wlr/types/wlr_surface.h>
|
2018-06-10 10:15:26 +00:00
|
|
|
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
2017-09-23 21:48:13 +00:00
|
|
|
#include <wlr/types/wlr_xdg_shell_v6.h>
|
2018-02-14 11:40:13 +00:00
|
|
|
#include <wlr/types/wlr_xdg_shell.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;
|
2017-10-21 10:35:51 +00:00
|
|
|
|
2017-09-27 19:15:31 +00:00
|
|
|
struct wl_listener destroy;
|
2018-01-22 15:01:32 +00:00
|
|
|
struct wl_listener new_popup;
|
2017-09-27 22:29:37 +00:00
|
|
|
struct wl_listener request_move;
|
|
|
|
struct wl_listener request_resize;
|
2017-11-21 08:50:00 +00:00
|
|
|
struct wl_listener request_maximize;
|
|
|
|
struct wl_listener request_fullscreen;
|
2017-11-09 19:06:05 +00:00
|
|
|
struct wl_listener set_state;
|
2018-10-02 11:08:23 +00:00
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener set_class;
|
2017-10-08 15:59:38 +00:00
|
|
|
|
|
|
|
struct wl_listener surface_commit;
|
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-10-08 10:17:25 +00:00
|
|
|
|
2017-09-23 15:13:18 +00:00
|
|
|
struct wl_listener destroy;
|
2018-01-21 20:06:37 +00:00
|
|
|
struct wl_listener new_popup;
|
2018-03-10 10:18:50 +00:00
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
2017-09-23 15:13:18 +00:00
|
|
|
struct wl_listener request_move;
|
|
|
|
struct wl_listener request_resize;
|
2017-11-09 20:41:11 +00:00
|
|
|
struct wl_listener request_maximize;
|
2017-11-20 16:27:36 +00:00
|
|
|
struct wl_listener request_fullscreen;
|
2018-08-25 19:46:55 +00:00
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener set_app_id;
|
2017-11-05 09:22:42 +00:00
|
|
|
|
2018-01-21 20:06:37 +00:00
|
|
|
struct wl_listener surface_commit;
|
|
|
|
|
2017-11-20 11:05:21 +00:00
|
|
|
uint32_t pending_move_resize_configure_serial;
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
|
|
|
|
2018-08-06 07:30:03 +00:00
|
|
|
struct roots_xdg_toplevel_decoration;
|
|
|
|
|
2018-02-14 11:40:13 +00:00
|
|
|
struct roots_xdg_surface {
|
|
|
|
struct roots_view *view;
|
|
|
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener new_popup;
|
2018-03-15 19:15:09 +00:00
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct wl_listener request_move;
|
|
|
|
struct wl_listener request_resize;
|
|
|
|
struct wl_listener request_maximize;
|
|
|
|
struct wl_listener request_fullscreen;
|
2018-08-25 19:46:55 +00:00
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener set_app_id;
|
|
|
|
|
2018-02-14 11:40:13 +00:00
|
|
|
|
|
|
|
struct wl_listener surface_commit;
|
|
|
|
|
|
|
|
uint32_t pending_move_resize_configure_serial;
|
2018-08-06 07:30:03 +00:00
|
|
|
|
|
|
|
struct roots_xdg_toplevel_decoration *xdg_toplevel_decoration;
|
2018-02-14 11:40:13 +00:00
|
|
|
};
|
|
|
|
|
2017-09-28 21:26:31 +00:00
|
|
|
struct roots_xwayland_surface {
|
2017-09-28 12:54:57 +00:00
|
|
|
struct roots_view *view;
|
2017-10-21 10:35:51 +00:00
|
|
|
|
2017-09-28 12:54:57 +00:00
|
|
|
struct wl_listener destroy;
|
2017-09-29 16:28:38 +00:00
|
|
|
struct wl_listener request_configure;
|
2017-10-27 14:48:09 +00:00
|
|
|
struct wl_listener request_move;
|
|
|
|
struct wl_listener request_resize;
|
2017-11-08 22:03:07 +00:00
|
|
|
struct wl_listener request_maximize;
|
2017-11-20 16:58:26 +00:00
|
|
|
struct wl_listener request_fullscreen;
|
2018-03-30 15:01:23 +00:00
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
2018-08-25 19:46:55 +00:00
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener set_class;
|
2017-11-20 11:05:21 +00:00
|
|
|
|
|
|
|
struct wl_listener surface_commit;
|
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,
|
2018-02-14 11:40:13 +00:00
|
|
|
ROOTS_XDG_SHELL_VIEW,
|
2018-11-12 09:12:46 +00:00
|
|
|
#if WLR_HAS_XWAYLAND
|
2017-09-23 00:24:32 +00:00
|
|
|
ROOTS_XWAYLAND_VIEW,
|
2018-01-28 12:04:46 +00:00
|
|
|
#endif
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct roots_view {
|
2017-09-23 22:18:19 +00:00
|
|
|
struct roots_desktop *desktop;
|
2017-11-17 11:45:07 +00:00
|
|
|
struct wl_list link; // roots_desktop::views
|
2017-11-05 15:29:43 +00:00
|
|
|
|
2018-12-05 09:01:25 +00:00
|
|
|
struct wlr_box box;
|
2017-09-23 00:24:32 +00:00
|
|
|
float rotation;
|
2018-02-23 10:30:55 +00:00
|
|
|
float alpha;
|
2017-11-05 15:29:43 +00:00
|
|
|
|
2018-01-16 12:50:40 +00:00
|
|
|
bool decorated;
|
|
|
|
int border_width;
|
|
|
|
int titlebar_height;
|
|
|
|
|
2017-11-05 15:29:43 +00:00
|
|
|
bool maximized;
|
2017-11-20 18:45:10 +00:00
|
|
|
struct roots_output *fullscreen_output;
|
2017-11-05 15:29:43 +00:00
|
|
|
struct {
|
|
|
|
double x, y;
|
|
|
|
uint32_t width, height;
|
|
|
|
float rotation;
|
|
|
|
} saved;
|
|
|
|
|
2017-11-20 11:05:21 +00:00
|
|
|
struct {
|
|
|
|
bool update_x, update_y;
|
|
|
|
double x, y;
|
|
|
|
uint32_t width, height;
|
|
|
|
} pending_move_resize;
|
|
|
|
|
2017-09-23 00:24:32 +00:00
|
|
|
// 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;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct wlr_xdg_surface *xdg_surface;
|
2018-11-12 09:12:46 +00:00
|
|
|
#if WLR_HAS_XWAYLAND
|
2017-09-28 21:26:31 +00:00
|
|
|
struct wlr_xwayland_surface *xwayland_surface;
|
2017-10-06 21:50:25 +00:00
|
|
|
#endif
|
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;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct roots_xdg_surface *roots_xdg_surface;
|
2018-11-12 09:12:46 +00:00
|
|
|
#if WLR_HAS_XWAYLAND
|
2017-09-28 21:26:31 +00:00
|
|
|
struct roots_xwayland_surface *roots_xwayland_surface;
|
2017-10-06 21:50:25 +00:00
|
|
|
#endif
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
2018-01-21 13:50:37 +00:00
|
|
|
|
2017-09-23 15:13:18 +00:00
|
|
|
struct wlr_surface *wlr_surface;
|
2018-01-21 13:50:37 +00:00
|
|
|
struct wl_list children; // roots_view_child::link
|
|
|
|
|
2018-10-02 11:08:23 +00:00
|
|
|
struct wlr_foreign_toplevel_handle_v1 *toplevel_handle;
|
|
|
|
struct wl_listener toplevel_handle_request_maximize;
|
|
|
|
struct wl_listener toplevel_handle_request_activate;
|
|
|
|
struct wl_listener toplevel_handle_request_close;
|
|
|
|
|
2018-01-21 13:50:37 +00:00
|
|
|
struct wl_listener new_subsurface;
|
2017-11-05 15:29:43 +00:00
|
|
|
|
2017-11-17 11:45:07 +00:00
|
|
|
struct {
|
2018-03-13 11:31:45 +00:00
|
|
|
struct wl_signal unmap;
|
2017-11-17 11:45:07 +00:00
|
|
|
struct wl_signal destroy;
|
|
|
|
} events;
|
|
|
|
|
2018-01-28 09:11:31 +00:00
|
|
|
// TODO: this should follow the typical type/impl pattern we use elsewhere
|
2017-09-23 21:48:13 +00:00
|
|
|
void (*activate)(struct roots_view *view, bool active);
|
2017-11-03 13:49:15 +00:00
|
|
|
void (*move)(struct roots_view *view, double x, double y);
|
2017-09-30 09:57:39 +00:00
|
|
|
void (*resize)(struct roots_view *view, uint32_t width, uint32_t height);
|
2017-11-03 13:49:15 +00:00
|
|
|
void (*move_resize)(struct roots_view *view, double x, double y,
|
|
|
|
uint32_t width, uint32_t height);
|
2017-11-05 15:29:43 +00:00
|
|
|
void (*maximize)(struct roots_view *view, bool maximized);
|
2017-11-20 16:27:36 +00:00
|
|
|
void (*set_fullscreen)(struct roots_view *view, bool fullscreen);
|
2017-10-06 13:39:39 +00:00
|
|
|
void (*close)(struct roots_view *view);
|
2018-03-12 08:17:06 +00:00
|
|
|
void (*destroy)(struct roots_view *view);
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
|
|
|
|
2018-01-21 13:50:37 +00:00
|
|
|
struct roots_view_child {
|
|
|
|
struct roots_view *view;
|
|
|
|
struct wlr_surface *wlr_surface;
|
|
|
|
struct wl_list link;
|
|
|
|
|
|
|
|
struct wl_listener commit;
|
|
|
|
struct wl_listener new_subsurface;
|
2018-01-21 14:13:10 +00:00
|
|
|
|
|
|
|
void (*destroy)(struct roots_view_child *child);
|
2018-01-21 13:50:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct roots_subsurface {
|
|
|
|
struct roots_view_child view_child;
|
|
|
|
struct wlr_subsurface *wlr_subsurface;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
};
|
|
|
|
|
2018-01-22 15:01:32 +00:00
|
|
|
struct roots_wl_shell_popup {
|
|
|
|
struct roots_view_child view_child;
|
|
|
|
struct wlr_wl_shell_surface *wlr_wl_shell_surface;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener set_state;
|
|
|
|
struct wl_listener new_popup;
|
|
|
|
};
|
|
|
|
|
2018-01-21 20:06:37 +00:00
|
|
|
struct roots_xdg_popup_v6 {
|
|
|
|
struct roots_view_child view_child;
|
|
|
|
struct wlr_xdg_popup_v6 *wlr_popup;
|
|
|
|
struct wl_listener destroy;
|
2018-03-26 23:02:28 +00:00
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
2018-01-21 20:06:37 +00:00
|
|
|
struct wl_listener new_popup;
|
|
|
|
};
|
|
|
|
|
2018-02-14 11:40:13 +00:00
|
|
|
struct roots_xdg_popup {
|
|
|
|
struct roots_view_child view_child;
|
|
|
|
struct wlr_xdg_popup *wlr_popup;
|
|
|
|
struct wl_listener destroy;
|
2018-03-27 21:27:58 +00:00
|
|
|
struct wl_listener map;
|
|
|
|
struct wl_listener unmap;
|
2018-02-14 11:40:13 +00:00
|
|
|
struct wl_listener new_popup;
|
|
|
|
};
|
|
|
|
|
2018-06-10 10:15:26 +00:00
|
|
|
struct roots_xdg_toplevel_decoration {
|
|
|
|
struct wlr_xdg_toplevel_decoration_v1 *wlr_decoration;
|
|
|
|
struct roots_xdg_surface *surface;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener request_mode;
|
|
|
|
struct wl_listener surface_commit;
|
|
|
|
};
|
|
|
|
|
2017-11-11 14:39:15 +00:00
|
|
|
void view_get_box(const struct roots_view *view, struct wlr_box *box);
|
2017-09-23 21:48:13 +00:00
|
|
|
void view_activate(struct roots_view *view, bool active);
|
2017-11-03 13:49:15 +00:00
|
|
|
void view_move(struct roots_view *view, double x, double y);
|
2017-09-30 09:57:39 +00:00
|
|
|
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
|
2017-11-03 13:49:15 +00:00
|
|
|
void view_move_resize(struct roots_view *view, double x, double y,
|
|
|
|
uint32_t width, uint32_t height);
|
2017-11-05 15:29:43 +00:00
|
|
|
void view_maximize(struct roots_view *view, bool maximized);
|
2017-11-20 16:27:36 +00:00
|
|
|
void view_set_fullscreen(struct roots_view *view, bool fullscreen,
|
|
|
|
struct wlr_output *output);
|
2018-01-27 09:43:17 +00:00
|
|
|
void view_rotate(struct roots_view *view, float rotation);
|
2018-02-23 10:30:55 +00:00
|
|
|
void view_cycle_alpha(struct roots_view *view);
|
2017-10-06 13:39:39 +00:00
|
|
|
void view_close(struct roots_view *view);
|
2017-10-08 10:17:25 +00:00
|
|
|
bool view_center(struct roots_view *view);
|
2017-10-25 18:34:40 +00:00
|
|
|
void view_setup(struct roots_view *view);
|
|
|
|
void view_teardown(struct roots_view *view);
|
2017-09-23 21:48:13 +00:00
|
|
|
|
2018-10-02 11:08:23 +00:00
|
|
|
void view_set_title(struct roots_view *view, const char *title);
|
|
|
|
void view_set_app_id(struct roots_view *view, const char *app_id);
|
|
|
|
void view_create_foreign_toplevel_handle(struct roots_view *view);
|
|
|
|
|
2018-01-21 23:24:53 +00:00
|
|
|
void view_get_deco_box(const struct roots_view *view, struct wlr_box *box);
|
|
|
|
|
2018-01-21 23:46:19 +00:00
|
|
|
enum roots_deco_part {
|
|
|
|
ROOTS_DECO_PART_NONE = 0,
|
|
|
|
ROOTS_DECO_PART_TOP_BORDER = (1 << 0),
|
|
|
|
ROOTS_DECO_PART_BOTTOM_BORDER = (1 << 1),
|
|
|
|
ROOTS_DECO_PART_LEFT_BORDER = (1 << 2),
|
|
|
|
ROOTS_DECO_PART_RIGHT_BORDER = (1 << 3),
|
|
|
|
ROOTS_DECO_PART_TITLEBAR = (1 << 4),
|
2018-01-21 23:24:53 +00:00
|
|
|
};
|
|
|
|
|
2018-01-21 23:46:19 +00:00
|
|
|
enum roots_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy);
|
2018-01-21 23:24:53 +00:00
|
|
|
|
2018-01-21 13:50:37 +00:00
|
|
|
void view_child_init(struct roots_view_child *child, struct roots_view *view,
|
|
|
|
struct wlr_surface *wlr_surface);
|
|
|
|
void view_child_finish(struct roots_view_child *child);
|
|
|
|
|
|
|
|
struct roots_subsurface *subsurface_create(struct roots_view *view,
|
|
|
|
struct wlr_subsurface *wlr_subsurface);
|
|
|
|
|
2017-09-23 00:24:32 +00:00
|
|
|
#endif
|