basic decorations

This commit is contained in:
Tony Crisci 2018-01-16 19:04:26 -05:00
parent 3751a17321
commit 61bd79200c
7 changed files with 141 additions and 20 deletions

View file

@ -28,6 +28,11 @@ struct roots_seat {
struct roots_seat_view {
struct roots_seat *seat;
struct roots_view *view;
bool has_button_grab;
double grab_vx;
double grab_vy;
struct wl_list link; // roots_seat::views
struct wl_listener view_destroy;
@ -84,4 +89,7 @@ void roots_seat_begin_resize(struct roots_seat *seat, struct roots_view *view,
void roots_seat_begin_rotate(struct roots_seat *seat, struct roots_view *view);
struct roots_seat_view *roots_seat_view_from_view( struct roots_seat *seat,
struct roots_view *view);
#endif