]> git.sur5r.net Git - i3/i3/blob - include/xcb.h
Use default cursor (XC_left_ptr) for all windows
[i3/i3] / include / xcb.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #ifndef _XCB_H
12 #define _XCB_H
13
14 #include "data.h"
15
16 #define _NET_WM_STATE_REMOVE    0
17 #define _NET_WM_STATE_ADD       1
18 #define _NET_WM_STATE_TOGGLE    2
19
20 /* This is the equivalent of XC_left_ptr. I’m not sure why xcb doesn’t have a constant for that. */
21 #define XCB_CURSOR_LEFT_PTR     68
22 #define XCB_CURSOR_SB_H_DOUBLE_ARROW 108
23 #define XCB_CURSOR_SB_V_DOUBLE_ARROW 116
24
25 enum { _NET_SUPPORTED = 0,
26         _NET_SUPPORTING_WM_CHECK,
27         _NET_WM_NAME,
28         _NET_WM_STATE_FULLSCREEN,
29         _NET_WM_STATE,
30         _NET_WM_WINDOW_TYPE,
31         _NET_WM_WINDOW_TYPE_DOCK,
32         _NET_WM_DESKTOP,
33         _NET_WM_STRUT_PARTIAL,
34         UTF8_STRING
35 };
36
37 i3Font *load_font(xcb_connection_t *connection, const char *pattern);
38 uint32_t get_colorpixel(xcb_connection_t *conn, Client *client, xcb_window_t window, char *hex);
39 xcb_window_t create_window(xcb_connection_t *conn, Rect r, uint16_t window_class, uint16_t cursor,
40                            uint32_t mask, uint32_t *values);
41 void xcb_change_gc_single(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t mask, uint32_t value);
42 void xcb_draw_line(xcb_connection_t *conn, xcb_drawable_t drawable, xcb_gcontext_t gc,
43                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t to_x, uint32_t to_y);
44 void xcb_draw_rect(xcb_connection_t *connection, xcb_drawable_t drawable, xcb_gcontext_t gc,
45                    uint32_t colorpixel, uint32_t x, uint32_t y, uint32_t width, uint32_t height);
46
47 #endif