#pragma once #include "config.hpp" #if not ENABLE_RANDR_EXT #error "X RandR extension is disabled..." #endif #include #include #include #include "common.hpp" POLYBAR_NS class connection; struct position; namespace evt { using randr_notify = xpp::randr::event::notify; using randr_screen_change_notify = xpp::randr::event::screen_change_notify; } struct backlight_values { uint32_t atom = 0; uint32_t min = 0; uint32_t max = 0; uint32_t val = 0; }; struct randr_output { string name; uint16_t w = 0; uint16_t h = 0; int16_t x = 0; int16_t y = 0; xcb_randr_output_t output; backlight_values backlight; bool match(const string& o, bool strict = false) const; bool match(const position& p) const; }; using monitor_t = shared_ptr; namespace randr_util { monitor_t make_monitor(xcb_randr_output_t randr, string name, uint16_t w, uint16_t h, int16_t x, int16_t y); vector get_monitors(connection& conn, xcb_window_t root, bool connected_only = false); void get_backlight_range(connection& conn, const monitor_t& mon, backlight_values& dst); void get_backlight_value(connection& conn, const monitor_t& mon, backlight_values& dst); } POLYBAR_NS_END