summaryrefslogtreecommitdiffstats
path: root/include/sway/resize.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/resize.h')
-rw-r--r--include/sway/resize.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/sway/resize.h b/include/sway/resize.h
new file mode 100644
index 00000000..0d382994
--- /dev/null
+++ b/include/sway/resize.h
@@ -0,0 +1,14 @@
1#ifndef _SWAY_RESIZE_H
2#define _SWAY_RESIZE_H
3#include <stdbool.h>
4
5enum resize_dim_types {
6 RESIZE_DIM_PX,
7 RESIZE_DIM_PPT,
8 RESIZE_DIM_DEFAULT,
9};
10
11bool set_size(int dimension, bool use_width);
12bool resize(int dimension, bool use_width, enum resize_dim_types dim_type);
13
14#endif