diff options
Diffstat (limited to 'include/sway/tree')
| -rw-r--r-- | include/sway/tree/container.h | 12 | ||||
| -rw-r--r-- | include/sway/tree/layout.h | 9 | 
2 files changed, 17 insertions, 4 deletions
| diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h index ca7a3288..59c5b4c7 100644 --- a/include/sway/tree/container.h +++ b/include/sway/tree/container.h @@ -305,6 +305,12 @@ bool container_is_floating(struct sway_container *container);  void container_get_box(struct sway_container *container, struct wlr_box *box);  /** + * Move a floating container by the specified amount. + */ +void container_floating_translate(struct sway_container *con, +		double x_amount, double y_amount); + +/**   * Move a floating container to a new layout-local position.   */  void container_floating_move_to(struct sway_container *con, @@ -318,4 +324,10 @@ void container_set_dirty(struct sway_container *container);  bool container_has_urgent_child(struct sway_container *container); +/** + * If the container is involved in a drag or resize operation via a mouse, this + * ends the operation. + */ +void container_end_mouse_operation(struct sway_container *container); +  #endif diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h index ba265623..5a78fd58 100644 --- a/include/sway/tree/layout.h +++ b/include/sway/tree/layout.h @@ -14,10 +14,11 @@ enum movement_direction {  };  enum resize_edge { -	RESIZE_EDGE_LEFT, -	RESIZE_EDGE_RIGHT, -	RESIZE_EDGE_TOP, -	RESIZE_EDGE_BOTTOM, +	RESIZE_EDGE_NONE   = 0, +	RESIZE_EDGE_LEFT   = 1, +	RESIZE_EDGE_RIGHT  = 2, +	RESIZE_EDGE_TOP    = 4, +	RESIZE_EDGE_BOTTOM = 8,  };  struct sway_container; | 
