mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
4556a4a7a8
Fixed #2642
24 lines
550 B
C++
24 lines
550 B
C++
#pragma once
|
|
|
|
#include <xcb/xcb.h>
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
#include <xpp/window.hpp>
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
class connection;
|
|
|
|
class window : public xpp::window<connection&> {
|
|
public:
|
|
window(const window&) = default;
|
|
using xpp::window<class connection&>::window;
|
|
|
|
window reconfigure_geom(unsigned short int w, unsigned short int h, short int x = 0, short int y = 0);
|
|
window reconfigure_pos(short int x, short int y);
|
|
window reconfigure_struts(uint32_t w, uint32_t strut, uint32_t x, bool bottom = false);
|
|
};
|
|
|
|
POLYBAR_NS_END
|