Cancel rootston move/resize/rotate on escape press

This commit is contained in:
Vincent Vanlaer 2018-02-06 12:36:38 +01:00
parent 7e3bb39d49
commit 7ae8800a63
3 changed files with 45 additions and 0 deletions

View file

@ -84,11 +84,17 @@ void roots_seat_cycle_focus(struct roots_seat *seat);
void roots_seat_begin_move(struct roots_seat *seat, struct roots_view *view);
void roots_seat_cancel_move(struct roots_seat *seat);
void roots_seat_begin_resize(struct roots_seat *seat, struct roots_view *view,
uint32_t edges);
void roots_seat_cancel_resize(struct roots_seat *seat);
void roots_seat_begin_rotate(struct roots_seat *seat, struct roots_view *view);
void roots_seat_cancel_rotate(struct roots_seat *seat);
struct roots_seat_view *roots_seat_view_from_view( struct roots_seat *seat,
struct roots_view *view);