]> git.sur5r.net Git - i3/i3/blob - include/resize.h
Bugfix: Store width_factor/height_factor per workspace, not per container
[i3/i3] / include / resize.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11
12 #ifndef _RESIZE_H
13 #define _RESIZE_H
14
15 #include <xcb/xcb.h>
16
17 typedef enum { O_HORIZONTAL, O_VERTICAL } resize_orientation_t;
18
19 /**
20  * Renders the resize window between the first/second container and resizes
21  * the table column/row.
22  *
23  */
24 int resize_graphical_handler(xcb_connection_t *conn, Container *first, Container *second,
25                              resize_orientation_t orientation, xcb_button_press_event_t *event);
26
27 #endif