]> git.lizzy.rs Git - bspwm.git/blob - src/helpers.h
e51e5d06e2c36e8b969fc52292a6aa5534485ca7
[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
44 #define BOOL_STR(A)       ((A) ? "true" : "false")
45 #define ON_OFF_STR(A)     ((A) ? "on" : "off")
46 #define LAYOUT_STR(A)     ((A) == LAYOUT_TILED ? "tiled" : "monocle")
47 #define LAYOUT_CHR(A)     ((A) == LAYOUT_TILED ? 'T' : 'M')
48 #define CHILD_POL_STR(A)  ((A) == FIRST_CHILD ? "first_child" : "second_child")
49 #define AUTO_SCM_STR(A)   ((A) == SCHEME_LONGEST_SIDE ? "longest_side" : ((A) == SCHEME_ALTERNATE ? "alternate" : "spiral"))
50 #define TIGHTNESS_STR(A)  ((A) == TIGHTNESS_HIGH ? "high" : "low")
51 #define SPLIT_TYPE_STR(A) ((A) == TYPE_HORIZONTAL ? "horizontal" : "vertical")
52 #define SPLIT_MODE_STR(A) ((A) == MODE_AUTOMATIC ? "automatic" : "manual")
53 #define SPLIT_DIR_STR(A)  ((A) == DIR_NORTH ? "north" : ((A) == DIR_WEST ? "west" : ((A) == DIR_SOUTH ? "south" : "east")))
54 #define STATE_STR(A)      ((A) == STATE_TILED ? "tiled" : ((A) == STATE_FLOATING ? "floating" : ((A) == STATE_FULLSCREEN ? "fullscreen" : "pseudo_tiled")))
55 #define STATE_CHR(A)      ((A) == STATE_TILED ? 'T' : ((A) == STATE_FLOATING ? 'F' : ((A) == STATE_FULLSCREEN ? '=' : 'P')))
56 #define LAYER_STR(A)      ((A) == LAYER_BELOW ? "below" : ((A) == LAYER_NORMAL ? "normal" : "above"))
57
58 #define XCB_CONFIG_WINDOW_X_Y               (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y)
59 #define XCB_CONFIG_WINDOW_WIDTH_HEIGHT      (XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
60 #define XCB_CONFIG_WINDOW_X_Y_WIDTH_HEIGHT  (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
61
62 #define MAXLEN    256
63 #define SMALEN     32
64 #define INIT_CAP    8
65
66 #define cleaned_mask(m)   (m & ~(num_lock | scroll_lock | caps_lock))
67 #define streq(s1, s2)     (strcmp((s1), (s2)) == 0)
68 #define unsigned_subtract(a, b)  \
69         do {                         \
70                 if (b > a) {             \
71                         a = 0;               \
72                 } else {                 \
73                         a -= b;              \
74                 }                        \
75         } while (false)
76
77
78 void warn(char *fmt, ...);
79 void err(char *fmt, ...);
80 char *read_string(const char *file_path, size_t *tlen);
81 char *copy_string(char *str, size_t len);
82 char *mktempfifo(const char *template);
83 int asprintf(char **buf, const char *fmt, ...);
84 int vasprintf(char **buf, const char *fmt, va_list args);
85 uint32_t get_color_pixel(const char *color);
86 bool is_hex_color(const char *color);
87
88 #endif