polybar/include/components/types.hpp

208 lines
4.0 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
2016-12-27 03:58:41 +00:00
#include <xcb/xcb.h>
#include <string>
2016-12-26 08:40:15 +00:00
#include <unordered_map>
2016-06-15 03:32:35 +00:00
#include "common.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2017-01-19 04:38:42 +00:00
// fwd {{{
2016-12-27 03:58:41 +00:00
struct randr_output;
using monitor_t = shared_ptr<randr_output>;
2017-01-19 04:38:42 +00:00
// }}}
2016-12-27 03:58:41 +00:00
2016-12-20 01:29:18 +00: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);
}
};
enum class edge : uint8_t { NONE = 0U, TOP, BOTTOM, LEFT, RIGHT, ALL };
enum class alignment : uint8_t { NONE = 0U, LEFT, CENTER, RIGHT };
enum class attribute : uint8_t { NONE = 0U, UNDERLINE, OVERLINE };
enum class syntaxtag : uint8_t {
NONE = 0U,
A, // mouse action
B, // background color
F, // foreground color
T, // font index
O, // pixel offset
R, // flip colors
o, // overline color
u, // underline color
};
enum class mousebtn : uint8_t {
NONE = 0U,
LEFT,
MIDDLE,
RIGHT,
SCROLL_UP,
SCROLL_DOWN,
DOUBLE_LEFT,
DOUBLE_MIDDLE,
DOUBLE_RIGHT
};
2016-11-21 14:07:00 +00:00
enum class strut : uint16_t {
LEFT = 0U,
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 14:07:00 +00:00
struct position {
2016-06-15 03:32:35 +00:00
int16_t x{0};
int16_t y{0};
2016-11-21 14:07:00 +00:00
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct size {
uint16_t w{1U};
uint16_t h{1U};
2016-11-21 14:07:00 +00:00
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct side_values {
uint16_t left{0U};
uint16_t right{0U};
2016-11-21 14:07:00 +00:00
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct edge_values {
uint16_t left{0U};
uint16_t right{0U};
uint16_t top{0U};
uint16_t bottom{0U};
2016-11-21 14:07:00 +00:00
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct border_settings {
uint32_t color{0xFF000000};
uint16_t size{0U};
2016-11-21 14:07:00 +00:00
};
2016-06-15 03:32:35 +00:00
struct line_settings {
uint32_t color{0xFF000000};
uint16_t size{0U};
};
struct action {
mousebtn button{mousebtn::NONE};
2016-12-15 02:30:41 +00:00
string command{};
};
struct action_block : public action {
alignment align{alignment::NONE};
double start_x{0.0};
double end_x{0.0};
bool active{true};
uint16_t width() const {
return static_cast<uint16_t>(end_x - start_x + 0.5);
}
2016-12-20 06:46:30 +00:00
bool test(int16_t point) const {
return static_cast<int16_t>(start_x) < point && static_cast<int16_t>(end_x) >= point;
}
};
2016-11-21 14:07:00 +00:00
struct bar_settings {
explicit bar_settings() = default;
bar_settings(const bar_settings& other) = default;
2016-12-15 02:30:41 +00:00
xcb_window_t window{XCB_NONE};
monitor_t monitor{};
2016-11-22 00:22:47 +00:00
edge origin{edge::TOP};
struct size size {
1U, 1U
};
2016-11-21 14:07:00 +00:00
position pos{0, 0};
position offset{0, 0};
position center{0, 0};
side_values padding{0U, 0U};
side_values margin{0U, 0U};
side_values module_margin{0U, 0U};
edge_values strut{0U, 0U, 0U, 0U};
2016-06-15 03:32:35 +00:00
2017-01-19 04:38:42 +00:00
uint32_t background{0xFF000000};
uint32_t foreground{0xFFFFFFFF};
vector<uint32_t> background_steps;
2016-12-15 02:30:41 +00:00
line_settings underline{};
line_settings overline{};
2016-06-15 03:32:35 +00:00
2016-12-20 01:29:18 +00:00
std::unordered_map<edge, border_settings, enum_hash> borders{};
2016-06-15 03:32:35 +00:00
uint8_t spacing{0};
2016-12-15 02:30:41 +00:00
string separator{};
2016-12-15 02:30:41 +00:00
string wmname{};
string locale{};
2016-06-15 03:32:35 +00:00
bool override_redirect{false};
2016-11-22 00:22:47 +00:00
2016-12-15 02:30:41 +00:00
vector<action> actions{};
bool dimmed{false};
double dimvalue{1.0};
2016-12-21 03:50:43 +00:00
bool shaded{false};
struct size shade_size {
1U, 1U
};
position shade_pos{1U, 1U};
2016-11-25 03:10:26 +00:00
const xcb_rectangle_t inner_area(bool abspos = false) const {
xcb_rectangle_t rect{0, 0, size.w, size.h};
if (abspos) {
rect.x = pos.x;
rect.y = pos.y;
}
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-22 00:22:47 +00:00
return rect;
}
2016-06-15 03:32:35 +00:00
};
2016-11-26 05:13:20 +00:00
struct event_timer {
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 05:13:20 +00:00
};
};
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END