#pragma once #include #include #include #include "common.hpp" POLYBAR_NS class connection; class window : public xpp::window { public: window(const window&) = default; using xpp::window::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(unsigned short int w, unsigned short int h, short int x, bool bottom = false); }; POLYBAR_NS_END