]> git.sur5r.net Git - i3/i3/blob - i3bar/include/common.h
Merge branch 'displayversion'
[i3/i3] / i3bar / include / common.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
6  *
7  */
8 #ifndef COMMON_H_
9 #define COMMON_H_
10
11 #include <stdbool.h>
12
13 typedef struct rect_t rect;
14
15 struct ev_loop* main_loop;
16 char            *statusline;
17 char            *statusline_buffer;
18
19 struct rect_t {
20     int x;
21     int y;
22     int w;
23     int h;
24 };
25
26 #include "queue.h"
27 #include "child.h"
28 #include "ipc.h"
29 #include "outputs.h"
30 #include "util.h"
31 #include "workspaces.h"
32 #include "trayclients.h"
33 #include "xcb.h"
34 #include "ucs2_to_utf8.h"
35 #include "config.h"
36 #include "libi3.h"
37
38 #endif