mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
116 lines
2.3 KiB
C++
116 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "x11/color.hpp"
|
|
#include "x11/randr.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
enum class edge : uint8_t { NONE = 0, TOP, BOTTOM, LEFT, RIGHT, ALL };
|
|
enum class alignment : uint8_t { NONE = 0, LEFT, CENTER, RIGHT };
|
|
enum class syntaxtag : uint8_t { NONE = 0, A, B, F, T, U, Uu, Uo, O, R, o, u };
|
|
enum class attribute : uint8_t { NONE = 0, o = 1 << 0, u = 1 << 1 };
|
|
enum class mousebtn : uint8_t { NONE = 0, LEFT, MIDDLE, RIGHT, SCROLL_UP, SCROLL_DOWN };
|
|
enum class gc : uint8_t { NONE = 0, BG, FG, OL, UL, BT, BB, BL, BR };
|
|
enum class strut : uint16_t {
|
|
LEFT = 0,
|
|
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,
|
|
};
|
|
|
|
struct position {
|
|
int16_t x{0};
|
|
int16_t y{0};
|
|
};
|
|
|
|
struct size {
|
|
uint16_t w{0};
|
|
uint16_t h{0};
|
|
};
|
|
|
|
struct side_values {
|
|
uint16_t left{0};
|
|
uint16_t right{0};
|
|
};
|
|
|
|
struct edge_values {
|
|
uint16_t left{0};
|
|
uint16_t right{0};
|
|
uint16_t top{0};
|
|
uint16_t bottom{0};
|
|
};
|
|
|
|
struct border_settings {
|
|
uint32_t color{0xFF000000};
|
|
uint16_t size{0};
|
|
};
|
|
|
|
struct line_settings {
|
|
uint32_t color{0xFF000000};
|
|
uint16_t size{0};
|
|
};
|
|
|
|
struct bar_settings {
|
|
monitor_t monitor;
|
|
|
|
edge origin{edge::TOP};
|
|
|
|
struct size size{0, 0};
|
|
position pos{0, 0};
|
|
position offset{0, 0};
|
|
position center{0, 0};
|
|
side_values padding{0, 0};
|
|
side_values margin{0, 0};
|
|
side_values module_margin{0, 2};
|
|
edge_values strut{0, 0, 0, 0};
|
|
|
|
uint32_t background{0xFFFFFFFF};
|
|
uint32_t foreground{0xFF000000};
|
|
|
|
line_settings underline;
|
|
line_settings overline;
|
|
|
|
map<edge, border_settings> borders;
|
|
|
|
int8_t spacing{1};
|
|
string separator;
|
|
|
|
string wmname;
|
|
string locale;
|
|
|
|
bool force_docking{false};
|
|
|
|
const xcb_rectangle_t inner_area() const {
|
|
xcb_rectangle_t rect{pos.x, pos.y, size.w, size.h};
|
|
rect.y += borders.at(edge::TOP).size;
|
|
rect.height -= borders.at(edge::TOP).size;
|
|
rect.height -= borders.at(edge::BOTTOM).size;
|
|
rect.x += borders.at(edge::LEFT).size;
|
|
rect.width -= borders.at(edge::LEFT).size;
|
|
rect.width -= borders.at(edge::RIGHT).size;
|
|
return rect;
|
|
}
|
|
};
|
|
|
|
struct action_block {
|
|
alignment align{alignment::NONE};
|
|
int16_t start_x{0};
|
|
int16_t end_x{0};
|
|
mousebtn button{mousebtn::NONE};
|
|
string command;
|
|
bool active{true};
|
|
#if DEBUG and DRAW_CLICKABLE_AREA_HINTS
|
|
xcb_window_t hint;
|
|
#endif
|
|
};
|
|
|
|
POLYBAR_NS_END
|