polybar/include/x11/randr.hpp

53 lines
1.2 KiB
C++
Raw Normal View History

2016-11-02 19:22:45 +00:00
#pragma once
#include "config.hpp"
#ifndef ENABLE_RANDR_EXT
2016-11-20 22:04:31 +00:00
#error "X RandR extension is disabled..."
2016-11-02 19:22:45 +00:00
#endif
2016-11-20 22:04:31 +00:00
#include <xpp/proto/randr.hpp>
#include <xpp/xpp.hpp>
2016-11-02 19:22:45 +00:00
#include "common.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-02 19:22:45 +00:00
2016-11-20 22:04:31 +00:00
class connection;
namespace evt {
using randr_notify = xpp::randr::event::notify<connection&>;
using randr_screen_change_notify = xpp::randr::event::screen_change_notify<connection&>;
}
2016-11-02 19:22:45 +00:00
struct backlight_values {
uint32_t atom = 0;
2016-11-02 19:22:45 +00:00
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;
2016-11-02 19:22:45 +00:00
backlight_values backlight;
2016-11-20 22:04:31 +00:00
bool match(const string& o, bool strict = false) const;
2016-11-02 19:22:45 +00:00
};
using monitor_t = shared_ptr<randr_output>;
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<monitor_t> get_monitors(connection& conn, xcb_window_t root, bool connected_only = false);
2016-11-02 19:22:45 +00:00
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);
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END