132 lines
3.4 KiB
C++
132 lines
3.4 KiB
C++
#include <xcb/xcb_icccm.h>
|
|
|
|
#include "components/types.hpp"
|
|
#include "utils/memory.hpp"
|
|
#include "x11/atoms.hpp"
|
|
#include "x11/connection.hpp"
|
|
#include "x11/extensions/randr.hpp"
|
|
#include "x11/window.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
window& window::operator=(const xcb_window_t win) {
|
|
*this = window{connection(), win};
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Create window and check for errors
|
|
*/
|
|
window window::create_checked(int16_t x, int16_t y, uint16_t w, uint16_t h, uint32_t mask, const xcb_params_cw_t* p) {
|
|
if (*this == XCB_NONE) {
|
|
*this = connection().generate_id();
|
|
}
|
|
|
|
auto root = connection().screen()->root;
|
|
auto copy = XCB_COPY_FROM_PARENT;
|
|
uint32_t values[16]{0};
|
|
connection::pack_values(mask, p, values);
|
|
connection().create_window_checked(copy, *this, root, x, y, w, h, 0, copy, copy, mask, values);
|
|
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Change the window event mask
|
|
*/
|
|
window window::change_event_mask(uint32_t mask) {
|
|
change_attributes_checked(XCB_CW_EVENT_MASK, &mask);
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Add given event to the event mask unless already added
|
|
*/
|
|
window window::ensure_event_mask(uint32_t event) {
|
|
connection().ensure_event_mask(*this, event);
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Reconfigure the window geometry
|
|
*/
|
|
window window::reconfigure_geom(uint16_t w, uint16_t h, int16_t x, int16_t y) {
|
|
uint32_t mask{0};
|
|
uint32_t values[7]{0};
|
|
|
|
xcb_params_configure_window_t params{};
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, width, w);
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, height, h);
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, x, x);
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, y, y);
|
|
|
|
connection::pack_values(mask, ¶ms, values);
|
|
configure_checked(mask, values);
|
|
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Reconfigure the window position
|
|
*/
|
|
window window::reconfigure_pos(int16_t x, int16_t y) {
|
|
uint32_t mask{0};
|
|
uint32_t values[2]{0};
|
|
|
|
xcb_params_configure_window_t params{};
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, x, x);
|
|
XCB_AUX_ADD_PARAM(&mask, ¶ms, y, y);
|
|
|
|
connection::pack_values(mask, ¶ms, values);
|
|
configure_checked(mask, values);
|
|
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Reconfigure the windows ewmh strut
|
|
*/
|
|
window window::reconfigure_struts(uint16_t w, uint16_t h, int16_t x, bool bottom) {
|
|
uint32_t none{0};
|
|
uint32_t values[12]{none};
|
|
|
|
if (bottom) {
|
|
values[static_cast<int>(strut::BOTTOM)] = h;
|
|
values[static_cast<int>(strut::BOTTOM_START_X)] = x;
|
|
values[static_cast<int>(strut::BOTTOM_END_X)] = x + w - 1;
|
|
} else {
|
|
values[static_cast<int>(strut::TOP)] = h;
|
|
values[static_cast<int>(strut::TOP_START_X)] = x;
|
|
values[static_cast<int>(strut::TOP_END_X)] = x + w - 1;
|
|
}
|
|
|
|
connection().change_property_checked(XCB_PROP_MODE_REPLACE, *this, _NET_WM_STRUT, XCB_ATOM_CARDINAL, 32, 4, values);
|
|
connection().change_property_checked(
|
|
XCB_PROP_MODE_REPLACE, *this, _NET_WM_STRUT_PARTIAL, XCB_ATOM_CARDINAL, 32, 12, values);
|
|
|
|
return *this;
|
|
}
|
|
|
|
/**
|
|
* Trigger redraw by toggling visibility state
|
|
*/
|
|
void window::redraw() {
|
|
visibility_notify(XCB_VISIBILITY_FULLY_OBSCURED);
|
|
visibility_notify(XCB_VISIBILITY_UNOBSCURED);
|
|
connection().flush();
|
|
}
|
|
|
|
/**
|
|
* Send visibility notify event
|
|
*/
|
|
void window::visibility_notify(xcb_visibility_t state) {
|
|
auto notify = memory_util::make_malloc_ptr<xcb_visibility_notify_event_t, 32_z>();
|
|
notify->response_type = XCB_VISIBILITY_NOTIFY;
|
|
notify->window = *this;
|
|
notify->state = state;
|
|
|
|
uint32_t mask{XCB_EVENT_MASK_NO_EVENT};
|
|
connection().send_event(false, *this, mask, reinterpret_cast<const char*>(notify.get()));
|
|
}
|
|
|
|
POLYBAR_NS_END
|