]> git.lizzy.rs Git - bspwm.git/blob - helpers.h
Fix gcc warnings
[bspwm.git] / 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
34 #define LENGTH(x)         (sizeof(x) / sizeof(*x))
35 #define MAX(A, B)         ((A) > (B) ? (A) : (B))
36 #define MIN(A, B)         ((A) < (B) ? (A) : (B))
37 #define BOOLSTR(A)        ((A) ? "true" : "false")
38 #define ONOFFSTR(A)       ((A) ? "on" : "off")
39 #define LAYERSTR(A)       ((A) == LAYER_BELOW ? "below" : ((A) == LAYER_NORMAL ? "normal" : "above"))
40 #define STATESTR(A)       ((A) == STATE_TILED ? "tiled" : ((A) == STATE_FLOATING ? "floating" : ((A) == STATE_FULLSCREEN ? "fullscreen" : "pseudo_tiled")))
41 #define IS_TILED(c)       (c->state == STATE_TILED || c->state == STATE_PSEUDO_TILED)
42 #define IS_FLOATING(c)    (c->state == STATE_FLOATING)
43 #define IS_FULLSCREEN(c)  (c->state == STATE_FULLSCREEN)
44
45 #define XCB_CONFIG_WINDOW_X_Y               (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y)
46 #define XCB_CONFIG_WINDOW_WIDTH_HEIGHT      (XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
47 #define XCB_CONFIG_WINDOW_X_Y_WIDTH_HEIGHT  (XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT)
48
49 #define MAXLEN    256
50 #define SMALEN     32
51 #define INIT_CAP    8
52
53 #define streq(s1, s2)     (strcmp((s1), (s2)) == 0)
54
55 void warn(char *fmt, ...);
56 void err(char *fmt, ...);
57 bool get_color(char *col, xcb_window_t win, uint32_t *pxl);
58 double distance(xcb_point_t a, xcb_point_t b);
59
60 #endif