]> git.sur5r.net Git - i3/i3/blob - i3bar/include/xcb.h
c1b7cc14e3575bd98051ddd3040b89af16fd90aa
[i3/i3] / i3bar / include / xcb.h
1 /*
2  * i3bar - an xcb-based status- and ws-bar for i3
3  *
4  * © 2010-2011 Axel Wagner and contributors
5  *
6  * See file LICNSE for license information
7  *
8  */
9 #ifndef XCB_H_
10 #define XCB_H_
11
12 #include <stdint.h>
13 //#include "outputs.h"
14
15 #ifdef XCB_COMPAT
16 #define XCB_ATOM_CARDINAL CARDINAL
17 #endif
18
19 #define _NET_SYSTEM_TRAY_ORIENTATION_HORZ 0
20 #define _NET_SYSTEM_TRAY_ORIENTATION_VERT 1
21 #define SYSTEM_TRAY_REQUEST_DOCK    0
22 #define SYSTEM_TRAY_BEGIN_MESSAGE   1
23 #define SYSTEM_TRAY_CANCEL_MESSAGE  2
24 #define XEMBED_MAPPED                   (1 << 0)
25 #define XEMBED_EMBEDDED_NOTIFY          0
26
27 struct xcb_color_strings_t {
28     char *bar_fg;
29     char *bar_bg;
30     char *active_ws_fg;
31     char *active_ws_bg;
32     char *inactive_ws_fg;
33     char *inactive_ws_bg;
34     char *focus_ws_bg;
35     char *focus_ws_fg;
36     char *urgent_ws_bg;
37     char *urgent_ws_fg;
38 };
39
40 typedef struct xcb_colors_t xcb_colors_t;
41
42 /*
43  * Initialize xcb and use the specified fontname for text-rendering
44  *
45  */
46 char *init_xcb(char *fontname);
47
48 /*
49  * Initialize the colors
50  *
51  */
52 void init_colors(const struct xcb_color_strings_t *colors);
53
54 /*
55  * Cleanup the xcb-stuff.
56  * Called once, before the program terminates.
57  *
58  */
59 void clean_xcb();
60
61 /*
62  * Get the earlier requested atoms and save them in the prepared data-structure
63  *
64  */
65 void get_atoms();
66
67 /*
68  * Destroy the bar of the specified output
69  *
70  */
71 void destroy_window(i3_output *output);
72
73 /*
74  * Reallocate the statusline-buffer
75  *
76  */
77 void realloc_sl_buffer();
78
79 /*
80  * Reconfigure all bars and create new for newly activated outputs
81  *
82  */
83 void reconfig_windows();
84
85 /*
86  * Render the bars, with buttons and statusline
87  *
88  */
89 void draw_bars();
90
91 /*
92  * Redraw the bars, i.e. simply copy the buffer to the barwindow
93  *
94  */
95 void redraw_bars();
96
97 /*
98  * Predicts the length of text based on cached data.
99  * The string has to be encoded in ucs2 and glyph_len has to be the length
100  * of the string (in glyphs).
101  *
102  */
103 uint32_t predict_text_extents(xcb_char2b_t *text, uint32_t length);
104
105 #endif