mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
24 lines
577 B
C++
24 lines
577 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:
|
|
using xpp::window<class connection&>::window;
|
|
|
|
window& operator=(const xcb_window_t win);
|
|
|
|
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(unsigned short int w, unsigned short int h, short int x, bool bottom = false);
|
|
};
|
|
|
|
POLYBAR_NS_END
|