2016-11-02 19:22:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-11 02:07:28 +00:00
|
|
|
#include "settings.hpp"
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-11-30 11:46:26 +00:00
|
|
|
#if not WITH_XRANDR
|
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-26 14:42:48 +00:00
|
|
|
#include <xcb/randr.h>
|
2020-05-01 15:43:14 +00:00
|
|
|
|
2016-11-20 22:04:31 +00:00
|
|
|
#include <xpp/proto/randr.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;
|
2016-11-26 08:38:55 +00:00
|
|
|
struct position;
|
2016-11-20 22:04:31 +00:00
|
|
|
|
|
|
|
namespace evt {
|
|
|
|
using randr_notify = xpp::randr::event::notify<connection&>;
|
|
|
|
using randr_screen_change_notify = xpp::randr::event::screen_change_notify<connection&>;
|
2020-05-01 15:43:14 +00:00
|
|
|
} // namespace evt
|
2016-11-20 22:04:31 +00:00
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
struct backlight_values {
|
2017-01-19 10:11:28 +00:00
|
|
|
unsigned int atom{0};
|
2017-01-11 03:16:33 +00:00
|
|
|
double min{0.0};
|
|
|
|
double max{0.0};
|
|
|
|
double val{0.0};
|
2016-11-02 19:22:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct randr_output {
|
|
|
|
string name;
|
2017-01-19 10:11:28 +00:00
|
|
|
unsigned short int w{0U};
|
|
|
|
unsigned short int h{0U};
|
|
|
|
short int x{0};
|
|
|
|
short int y{0};
|
2016-11-12 19:31:39 +00:00
|
|
|
xcb_randr_output_t output;
|
2016-11-02 19:22:45 +00:00
|
|
|
backlight_values backlight;
|
2019-01-20 19:20:30 +00:00
|
|
|
bool primary{false};
|
2016-11-12 19:31:39 +00:00
|
|
|
|
2018-12-03 00:21:20 +00:00
|
|
|
bool match(const string& o, bool exact = true) const;
|
2016-11-26 08:38:55 +00:00
|
|
|
bool match(const position& p) const;
|
2019-06-24 22:23:44 +00:00
|
|
|
|
2020-05-01 15:43:14 +00:00
|
|
|
bool contains(const position& p) const;
|
2019-06-24 22:23:44 +00:00
|
|
|
bool contains(const randr_output& output) const;
|
2019-06-30 13:34:18 +00:00
|
|
|
|
|
|
|
bool equals(const randr_output& output) const;
|
2016-11-02 19:22:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
using monitor_t = shared_ptr<randr_output>;
|
|
|
|
|
|
|
|
namespace randr_util {
|
2016-12-21 13:55:19 +00:00
|
|
|
void query_extension(connection& conn);
|
|
|
|
|
2017-01-13 02:52:56 +00:00
|
|
|
bool check_monitor_support();
|
|
|
|
|
2020-05-01 15:43:14 +00:00
|
|
|
monitor_t make_monitor(xcb_randr_output_t randr, string name, unsigned short int w, unsigned short int h, short int x,
|
|
|
|
short int y, bool primary);
|
|
|
|
vector<monitor_t> get_monitors(
|
|
|
|
connection& conn, xcb_window_t root, bool connected_only = false, bool purge_clones = true);
|
2018-12-03 00:21:20 +00:00
|
|
|
monitor_t match_monitor(vector<monitor_t> monitors, const string& name, bool exact_match);
|
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);
|
2020-05-01 15:43:14 +00:00
|
|
|
} // namespace randr_util
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|