2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-26 22:58:41 -05:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2016-12-05 14:41:00 -05:00
|
|
|
#include <string>
|
2016-12-26 03:40:15 -05:00
|
|
|
#include <unordered_map>
|
2016-12-05 14:41:00 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "common.hpp"
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-18 23:38:42 -05:00
|
|
|
// fwd {{{
|
2016-12-26 22:58:41 -05:00
|
|
|
struct randr_output;
|
|
|
|
using monitor_t = shared_ptr<randr_output>;
|
2017-01-18 23:38:42 -05:00
|
|
|
// }}}
|
2016-12-26 22:58:41 -05:00
|
|
|
|
2016-12-19 20:29:18 -05:00
|
|
|
struct enum_hash {
|
|
|
|
template <typename T>
|
|
|
|
inline typename std::enable_if<std::is_enum<T>::value, size_t>::type operator()(T const value) const {
|
|
|
|
return static_cast<size_t>(value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class edge { NONE = 0, TOP, BOTTOM, LEFT, RIGHT, ALL };
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class alignment { NONE = 0, LEFT, CENTER, RIGHT };
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class attribute { NONE = 0, UNDERLINE, OVERLINE };
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class syntaxtag {
|
|
|
|
NONE = 0,
|
2016-11-24 13:24:47 -05:00
|
|
|
A, // mouse action
|
|
|
|
B, // background color
|
|
|
|
F, // foreground color
|
|
|
|
T, // font index
|
|
|
|
O, // pixel offset
|
|
|
|
R, // flip colors
|
|
|
|
o, // overline color
|
|
|
|
u, // underline color
|
|
|
|
};
|
|
|
|
|
2017-01-24 00:59:58 -05:00
|
|
|
enum class mousebtn { NONE = 0, LEFT, MIDDLE, RIGHT, SCROLL_UP, SCROLL_DOWN, DOUBLE_LEFT, DOUBLE_MIDDLE, DOUBLE_RIGHT };
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class strut {
|
|
|
|
LEFT = 0,
|
2016-11-13 05:30:27 -05:00
|
|
|
RIGHT,
|
|
|
|
TOP,
|
|
|
|
BOTTOM,
|
|
|
|
LEFT_START_Y,
|
|
|
|
LEFT_END_Y,
|
|
|
|
RIGHT_START_Y,
|
|
|
|
RIGHT_END_Y,
|
|
|
|
TOP_START_X,
|
|
|
|
TOP_END_X,
|
|
|
|
BOTTOM_START_X,
|
|
|
|
BOTTOM_END_X,
|
|
|
|
};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct position {
|
2017-01-19 05:11:28 -05:00
|
|
|
int x{0};
|
|
|
|
int y{0};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct size {
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int w{1U};
|
|
|
|
unsigned int h{1U};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct side_values {
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int left{0U};
|
|
|
|
unsigned int right{0U};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct edge_values {
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int left{0U};
|
|
|
|
unsigned int right{0U};
|
|
|
|
unsigned int top{0U};
|
|
|
|
unsigned int bottom{0U};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-03-21 09:49:33 -04:00
|
|
|
struct radius {
|
|
|
|
double top{0.0};
|
|
|
|
double bottom{0.0};
|
|
|
|
|
|
|
|
operator bool() const {
|
|
|
|
return top != 0.0 || bottom != 0.0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct border_settings {
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int color{0xFF000000};
|
|
|
|
unsigned int size{0U};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-21 10:14:40 -05:00
|
|
|
struct line_settings {
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int color{0xFF000000};
|
|
|
|
unsigned int size{0U};
|
2016-11-21 10:14:40 -05:00
|
|
|
};
|
|
|
|
|
2016-12-05 07:17:09 -05:00
|
|
|
struct action {
|
|
|
|
mousebtn button{mousebtn::NONE};
|
2016-12-14 21:30:41 -05:00
|
|
|
string command{};
|
2016-12-05 07:17:09 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct action_block : public action {
|
|
|
|
alignment align{alignment::NONE};
|
2016-12-20 01:46:51 -05:00
|
|
|
double start_x{0.0};
|
|
|
|
double end_x{0.0};
|
2016-12-05 07:17:09 -05:00
|
|
|
bool active{true};
|
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int width() const {
|
|
|
|
return static_cast<unsigned int>(end_x - start_x + 0.5);
|
2016-12-05 07:17:09 -05:00
|
|
|
}
|
2016-12-20 01:46:30 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
bool test(int point) const {
|
2017-08-29 14:58:23 -04:00
|
|
|
return static_cast<int>(start_x) <= point && static_cast<int>(end_x) > point;
|
2016-12-20 01:46:30 -05:00
|
|
|
}
|
2016-12-05 07:17:09 -05:00
|
|
|
};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct bar_settings {
|
2016-12-05 14:41:00 -05:00
|
|
|
explicit bar_settings() = default;
|
|
|
|
bar_settings(const bar_settings& other) = default;
|
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
xcb_window_t window{XCB_NONE};
|
|
|
|
monitor_t monitor{};
|
2016-11-21 19:22:47 -05:00
|
|
|
edge origin{edge::TOP};
|
2016-11-24 13:24:47 -05:00
|
|
|
struct size size {
|
|
|
|
1U, 1U
|
|
|
|
};
|
2016-11-21 09:07:00 -05:00
|
|
|
position pos{0, 0};
|
|
|
|
position offset{0, 0};
|
|
|
|
position center{0, 0};
|
2016-11-24 13:24:47 -05:00
|
|
|
side_values padding{0U, 0U};
|
|
|
|
side_values margin{0U, 0U};
|
2017-01-12 11:42:09 -05:00
|
|
|
side_values module_margin{0U, 0U};
|
2016-11-24 13:24:47 -05:00
|
|
|
edge_values strut{0U, 0U, 0U, 0U};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
unsigned int background{0xFF000000};
|
|
|
|
unsigned int foreground{0xFFFFFFFF};
|
|
|
|
vector<unsigned int> background_steps;
|
2016-11-21 10:14:40 -05:00
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
line_settings underline{};
|
|
|
|
line_settings overline{};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-19 20:29:18 -05:00
|
|
|
std::unordered_map<edge, border_settings, enum_hash> borders{};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-03-21 09:49:33 -04:00
|
|
|
struct radius radius {};
|
2017-01-19 05:11:28 -05:00
|
|
|
int spacing{0};
|
2016-12-14 21:30:41 -05:00
|
|
|
string separator{};
|
2016-11-13 10:10:20 -05:00
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
string wmname{};
|
|
|
|
string locale{};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-03 17:08:47 -05:00
|
|
|
bool override_redirect{false};
|
2016-11-21 19:22:47 -05:00
|
|
|
|
2017-09-03 00:45:45 -04:00
|
|
|
string cursor{};
|
|
|
|
string cursor_click{};
|
|
|
|
string cursor_scroll{};
|
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
vector<action> actions{};
|
2016-12-05 07:17:09 -05:00
|
|
|
|
2016-12-16 00:44:55 -05:00
|
|
|
bool dimmed{false};
|
|
|
|
double dimvalue{1.0};
|
|
|
|
|
2016-12-20 22:50:43 -05:00
|
|
|
bool shaded{false};
|
|
|
|
struct size shade_size {
|
|
|
|
1U, 1U
|
|
|
|
};
|
|
|
|
position shade_pos{1U, 1U};
|
|
|
|
|
2016-11-24 22:10:26 -05:00
|
|
|
const xcb_rectangle_t inner_area(bool abspos = false) const {
|
2017-01-19 05:11:28 -05:00
|
|
|
xcb_rectangle_t rect{0, 0, 0, 0};
|
|
|
|
rect.width += size.w;
|
|
|
|
rect.height += size.h;
|
2016-11-24 22:10:26 -05:00
|
|
|
|
|
|
|
if (abspos) {
|
|
|
|
rect.x = pos.x;
|
|
|
|
rect.y = pos.y;
|
2016-11-24 13:24:47 -05:00
|
|
|
}
|
2016-12-05 14:41:00 -05:00
|
|
|
if (borders.find(edge::TOP) != borders.end()) {
|
|
|
|
rect.y += borders.at(edge::TOP).size;
|
|
|
|
rect.height -= borders.at(edge::TOP).size;
|
|
|
|
}
|
|
|
|
if (borders.find(edge::BOTTOM) != borders.end()) {
|
|
|
|
rect.height -= borders.at(edge::BOTTOM).size;
|
|
|
|
}
|
|
|
|
if (borders.find(edge::LEFT) != borders.end()) {
|
|
|
|
rect.x += borders.at(edge::LEFT).size;
|
|
|
|
rect.width -= borders.at(edge::LEFT).size;
|
|
|
|
}
|
|
|
|
if (borders.find(edge::RIGHT) != borders.end()) {
|
|
|
|
rect.width -= borders.at(edge::RIGHT).size;
|
|
|
|
}
|
2016-11-21 19:22:47 -05:00
|
|
|
return rect;
|
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
};
|
|
|
|
|
2016-11-26 00:13:20 -05:00
|
|
|
struct event_timer {
|
2016-11-30 04:06:16 -05:00
|
|
|
xcb_timestamp_t event{0L};
|
|
|
|
xcb_timestamp_t offset{1L};
|
|
|
|
|
|
|
|
bool allow(xcb_timestamp_t time) {
|
|
|
|
bool pass = time >= event + offset;
|
|
|
|
event = time;
|
|
|
|
return pass;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool deny(xcb_timestamp_t time) {
|
|
|
|
return !allow(time);
|
2016-11-26 00:13:20 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|