]> git.lizzy.rs Git - bspwm.git/blob - helpers.c
New setting: leaf_monocle
[bspwm.git] / helpers.c
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 #include <stdlib.h>
26 #include <string.h>
27 #include <math.h>
28 #include "bspwm.h"
29
30 void warn(char *fmt, ...)
31 {
32         va_list ap;
33         va_start(ap, fmt);
34         vfprintf(stderr, fmt, ap);
35         va_end(ap);
36 }
37
38 __attribute__((noreturn))
39 void err(char *fmt, ...)
40 {
41         va_list ap;
42         va_start(ap, fmt);
43         vfprintf(stderr, fmt, ap);
44         va_end(ap);
45         exit(EXIT_FAILURE);
46 }
47
48 bool get_color(char *col, xcb_window_t win, uint32_t *pxl)
49 {
50         xcb_colormap_t map = screen->default_colormap;
51         xcb_get_window_attributes_reply_t *reply = xcb_get_window_attributes_reply(dpy, xcb_get_window_attributes(dpy, win), NULL);
52         if (reply != NULL)
53                 map = reply->colormap;
54         free(reply);
55
56         if (col[0] == '#') {
57                 unsigned int red, green, blue;
58                 if (sscanf(col + 1, "%02x%02x%02x", &red, &green, &blue) == 3) {
59                         /* 2**16 - 1 == 0xffff and 0x101 * 0xij == 0xijij */
60                         red *= 0x101;
61                         green *= 0x101;
62                         blue *= 0x101;
63                         xcb_alloc_color_reply_t *reply = xcb_alloc_color_reply(dpy, xcb_alloc_color(dpy, map, red, green, blue), NULL);
64                         if (reply != NULL) {
65                                 *pxl = reply->pixel;
66                                 free(reply);
67                                 return true;
68                         }
69                 }
70         } else {
71                 xcb_alloc_named_color_reply_t *reply = xcb_alloc_named_color_reply(dpy, xcb_alloc_named_color(dpy, map, strlen(col), col), NULL);
72                 if (reply != NULL) {
73                         *pxl = reply->pixel;
74                         free(reply);
75                         return true;
76                 }
77         }
78         *pxl = 0;
79         return false;
80 }
81
82 double distance(xcb_point_t a, xcb_point_t b)
83 {
84         return hypot(a.x - b.x, a.y - b.y);
85 }