polybar/include/components/types.hpp

100 lines
1.9 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include "common.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/color.hpp"
#include "x11/randr.hpp"
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
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, 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,
};
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{0};
uint16_t h{0};
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct side_values {
uint16_t left{0};
uint16_t right{0};
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct edge_values {
uint16_t left{0};
uint16_t right{0};
uint16_t top{0};
uint16_t bottom{0};
};
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{0};
};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
struct bar_settings {
monitor_t monitor;
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
edge origin{edge::BOTTOM};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
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};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
uint32_t background{0xFFFFFFFF};
uint32_t foreground{0xFF0000FF};
uint32_t linecolor{0xFF000000};
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
map<edge, border_settings> borders;
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
int8_t lineheight{0};
int8_t spacing{1};
string separator;
2016-11-21 14:07:00 +00:00
string wmname;
string locale;
2016-06-15 03:32:35 +00:00
2016-11-21 14:07:00 +00:00
bool force_docking{false};
2016-06-15 03:32:35 +00:00
};
struct action_block {
2016-11-21 14:07:00 +00:00
alignment align{alignment::NONE};
2016-06-15 03:32:35 +00:00
int16_t start_x{0};
int16_t end_x{0};
2016-11-21 14:07:00 +00:00
mousebtn button{mousebtn::NONE};
string command;
2016-06-15 03:32:35 +00:00
bool active{true};
#if DEBUG and DRAW_CLICKABLE_AREA_HINTS
2016-11-21 14:07:00 +00:00
xcb_window_t hint;
#endif
2016-06-15 03:32:35 +00:00
};
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END