diff options
author | Luminarys <kizunanohikari@gmail.com> | 2015-08-21 22:26:11 -0500 |
---|---|---|
committer | Luminarys <kizunanohikari@gmail.com> | 2015-08-21 22:26:11 -0500 |
commit | f6b16ca089753beb4f7425fce195321e3073fb02 (patch) | |
tree | 09c43c1ddba542b6c7e5c2718f706916df313b2d /include/resize.h | |
parent | ad1ca31dd5a36736176002ec7b7c9548cd63113d (diff) |
Refactored resizing functions into resize.c
Diffstat (limited to 'include/resize.h')
-rw-r--r-- | include/resize.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/resize.h b/include/resize.h new file mode 100644 index 00000000..4ace1815 --- /dev/null +++ b/include/resize.h @@ -0,0 +1,8 @@ +#ifndef _SWAY_RESIZE_H +#define _SWAY_RESIZE_H + +bool mouse_resize_tiled(struct wlc_origin prev_pos); +bool resize_floating(struct wlc_origin prev_pos); +bool resize_tiled(int amount, bool use_width); + +#endif |