]> git.lizzy.rs Git - bspwm.git/blob - src/helpers.h
Add automatic insertion scheme: alternate
[bspwm.git] / src / helpers.h
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #ifndef BSPWM_HELPERS_H
26 #define BSPWM_HELPERS_H
27
28 #include <xcb/xcb.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <stdbool.h>
32 #include <stdint.h>
33 #include <float.h>
34
35 #define LENGTH(x)         (sizeof(x) / sizeof(*x))
36 #define MAX(A, B)         ((A) > (B) ? (A) : (B))
37 #define MIN(A, B)         ((A) < (B) ? (A) : (B))
38
39 #define IS_TILED(c)       (c->state == STATE_TILED || c->state == STATE_PSEUDO_TILED)
40 #define IS_FLOATING(c)    (c->state == STATE_FLOATING)
41 #define IS_FULLSCREEN(c)  (c->state == STATE_FULLSCREEN)
42 #define IS_RECEPTACLE(n)  (is_leaf(n) && n->client == NULL)
43 #define IS_MONOCLE(d)     (d->layout == LAYOUT_MONOCLE || (single_monocle && tiled_count(d->root, true) <= 1))
44
45 #define BOOL_STR(A)       ((A) ? "true" : "false")
46 #define ON_OFF_STR(A)     ((A) ? "on" : "off")
47 #define LAYOUT_STR(A)     ((A) == LAYOUT_TILED ? "tiled" : "monocle")
48 #define LAYOUT_CHR(A)     ((A) == LAYOUT_TILED ? 'T' : 'M')
49 #define CHILD_POL_STR(A)  ((A) == FIRST_CHILD ? "first_child" : "second_child")
50 #define AUTO_SCM_STR(A)   ((A) == SCHEME_LONGEST_SIDE ? "longest_side" : ((A) == SCHEME_ALTERNATE ? "alternate" : "spiral"))
51 #define TIGHTNESS_STR(A)  ((A) == TIGHTNESS_HIGH ? "high" : "low")
52 #define SPLIT_TYPE_STR(A) ((A) == TYPE_HORIZONTAL ? "horizontal" : "vertical")
53 #define SPLIT_MODE_STR(A) ((A) == MODE_AUTOMATIC ? "automatic" : "manual")
54 #define SPLIT_DIR_STR(A)  ((A) == DIR_NORTH ? "north" : ((A) == DIR_WEST ? "west" : ((A) == DIR_SOUTH ? "south" : "east")))
55 #define STATE_STR(A)      ((A) == STATE_TILED ? "tiled" : ((A) == STATE_FLOATING ? "floating" : ((A) == STATE_FULLSCREEN ? "fullscreen" : "pseudo_tiled")))
56 #define STATE_CHR(A)      ((A) == STATE_TILED ? 'T' : ((A) == STATE_FLOATING ? 'F' : ((A) == STATE_FULLSCREEN ? '=' : 'P')))
57 #define LAYER_STR(A)      ((A) == LAYER_BELOW ? "below" : ((A) == LAYER_NORMAL ? "normal" : "above"))
58
59 #define XCB_CONFIG_WINDOW_X_Y               (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y)
60 #define XCB_CONFIG_WINDOW_WIDTH_HEIGHT      (XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
61 #define XCB_CONFIG_WINDOW_X_Y_WIDTH_HEIGHT  (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
62
63 #define MAXLEN    256
64 #define SMALEN     32
65 #define INIT_CAP    8
66
67 #define cleaned_mask(m)   (m & ~(num_lock | scroll_lock | caps_lock))
68 #define streq(s1, s2)     (strcmp((s1), (s2)) == 0)
69 #define unsigned_subtract(a, b)  \
70         do {                         \
71                 if (b > a) {             \
72                         a = 0;               \
73                 } else {                 \
74                         a -= b;              \
75                 }                        \
76         } while (false)
77
78
79 void warn(char *fmt, ...);
80 void err(char *fmt, ...);
81 char *read_string(const char *file_path, size_t *tlen);
82 char *copy_string(char *str, size_t len);
83 char *mktempfifo(const char *template);
84 int asprintf(char **buf, const char *fmt, ...);
85 int vasprintf(char **buf, const char *fmt, va_list args);
86 uint32_t get_color_pixel(const char *color);
87 bool is_hex_color(const char *color);
88
89 #endif