aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorVincent Vanlaer <vincent.vanlaer@skynet.be>2018-02-06 12:36:38 +0100
committerVincent Vanlaer <vincent.vanlaer@skynet.be>2018-02-06 12:36:38 +0100
commit7ae8800a637f9c4b0bc0ab33e10bc40fc30f91fa (patch)
tree8d6d1e003a480484dc07b9548dea6f09323bcda1 /include/rootston
parent7e3bb39d4994767edb972fe3039c7dd317fb63b0 (diff)
Cancel rootston move/resize/rotate on escape press
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/seat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rootston/seat.h b/include/rootston/seat.h
index 966d98e5..70e8e867 100644
--- a/include/rootston/seat.h
+++ b/include/rootston/seat.h
@@ -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);