mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
19 lines
509 B
C++
19 lines
509 B
C++
#pragma once
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
class connection;
|
|
|
|
namespace draw_util {
|
|
void fill(xcb_connection_t* c, xcb_drawable_t d, xcb_gcontext_t g, const xcb_rectangle_t rect);
|
|
void fill(xcb_connection_t* c, xcb_drawable_t d, xcb_gcontext_t g, int16_t x, int16_t y, uint16_t w, uint16_t h);
|
|
|
|
xcb_void_cookie_t xcb_poly_text_16_patched(
|
|
xcb_connection_t* conn, xcb_drawable_t d, xcb_gcontext_t gc, int16_t x, int16_t y, uint8_t len, uint16_t* str);
|
|
}
|
|
|
|
POLYBAR_NS_END
|