gri3-wm/i3bar/include/xcb.h

27 lines
386 B
C
Raw Normal View History

2010-07-22 01:15:18 +02:00
#ifndef XCB_H_
#define XCB_H_
#include <xcb/xcb.h>
#define NUM_ATOMS 3
enum {
#define ATOM_DO(name) name,
#include "xcb_atoms.def"
};
xcb_atom_t atoms[NUM_ATOMS];
xcb_connection_t* xcb_connection;
xcb_screen_t* xcb_screens;
xcb_window_t xcb_root;
void init_xcb();
void clean_xcb();
void get_atoms();
void destroy_windows();
2010-07-22 01:15:18 +02:00
void create_windows();
2010-07-26 17:21:46 +02:00
void draw_buttons();
2010-07-22 01:15:18 +02:00
#endif