2016-11-02 15:22:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <X11/Xlib-xcb.h>
|
|
|
|
#include <xcb/xcb_util.h>
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
|
2016-11-04 13:54:33 -04:00
|
|
|
class connection;
|
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
namespace xutils {
|
|
|
|
xcb_connection_t* get_connection();
|
|
|
|
|
|
|
|
void pack_values(uint32_t mask, const uint32_t* src, uint32_t* dest);
|
|
|
|
void pack_values(uint32_t mask, const xcb_params_cw_t* src, uint32_t* dest);
|
|
|
|
void pack_values(uint32_t mask, const xcb_params_gc_t* src, uint32_t* dest);
|
|
|
|
void pack_values(uint32_t mask, const xcb_params_configure_window_t* src, uint32_t* dest);
|
2016-11-04 13:54:33 -04:00
|
|
|
|
|
|
|
void visibility_notify(connection& conn, const xcb_window_t& win, xcb_visibility_t state);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|