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"
|
2019-10-27 17:41:18 -04:00
|
|
|
#include "utils/color.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
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>;
|
2019-10-27 08:32:45 -04:00
|
|
|
|
|
|
|
namespace drawtypes {
|
|
|
|
class label;
|
|
|
|
}
|
|
|
|
|
|
|
|
using label_t = shared_ptr<drawtypes::label>;
|
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
|
|
|
|
2020-12-17 14:37:28 -05:00
|
|
|
enum class mousebtn {
|
2019-01-12 08:51:54 -05:00
|
|
|
NONE = 0,
|
2020-12-17 14:37:28 -05:00
|
|
|
LEFT,
|
|
|
|
MIDDLE,
|
|
|
|
RIGHT,
|
|
|
|
SCROLL_UP,
|
|
|
|
SCROLL_DOWN,
|
|
|
|
DOUBLE_LEFT,
|
|
|
|
DOUBLE_MIDDLE,
|
|
|
|
DOUBLE_RIGHT,
|
|
|
|
// Terminator value, do not use
|
|
|
|
BTN_COUNT,
|
2016-11-24 13:24:47 -05:00
|
|
|
};
|
|
|
|
|
2021-09-27 11:35:45 -04:00
|
|
|
static inline mousebtn mousebtn_get_double(mousebtn btn) {
|
|
|
|
switch (btn) {
|
|
|
|
case mousebtn::LEFT:
|
|
|
|
return mousebtn::DOUBLE_LEFT;
|
|
|
|
case mousebtn::MIDDLE:
|
|
|
|
return mousebtn::DOUBLE_MIDDLE;
|
|
|
|
case mousebtn::RIGHT:
|
|
|
|
return mousebtn::DOUBLE_RIGHT;
|
|
|
|
default:
|
|
|
|
return mousebtn::NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 18:47:05 -04:00
|
|
|
/**
|
|
|
|
* Order of values for _NET_WM_STRUT_PARTIAL
|
|
|
|
*
|
|
|
|
* https://specifications.freedesktop.org/wm-spec/wm-spec-latest.html#idm45381391268672
|
|
|
|
*/
|
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};
|
2022-10-01 16:24:23 -04:00
|
|
|
|
|
|
|
bool operator==(const position& other) {
|
|
|
|
return this->x == other.x && this->y == other.y;
|
|
|
|
}
|
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 {
|
2022-09-14 15:53:02 -04:00
|
|
|
unsigned w{1U};
|
|
|
|
unsigned h{1U};
|
2016-11-21 09:07:00 -05:00
|
|
|
};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
enum class spacing_type { SPACE, POINT, PIXEL };
|
|
|
|
|
|
|
|
enum class extent_type { POINT, PIXEL };
|
|
|
|
|
|
|
|
struct spacing_val {
|
|
|
|
spacing_type type{spacing_type::SPACE};
|
|
|
|
/**
|
|
|
|
* Numerical spacing value. Is truncated to an integer for pixels and spaces.
|
|
|
|
* Must be non-negative.
|
|
|
|
*/
|
|
|
|
float value{0};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Any non-positive number is interpreted as no spacing.
|
|
|
|
*/
|
|
|
|
operator bool() const {
|
|
|
|
return value > 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr spacing_val ZERO_SPACE = {spacing_type::SPACE, 0};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Defines the signed length of something as either a number of pixels or points.
|
|
|
|
*
|
|
|
|
* Used for widths, heights, and offsets
|
|
|
|
*/
|
|
|
|
struct extent_val {
|
|
|
|
extent_type type{extent_type::PIXEL};
|
|
|
|
float value{0};
|
|
|
|
|
|
|
|
operator bool() const {
|
|
|
|
return value != 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr extent_val ZERO_PX_EXTENT = {extent_type::PIXEL, 0};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct side_values {
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
spacing_val left{ZERO_SPACE};
|
|
|
|
spacing_val right{ZERO_SPACE};
|
|
|
|
};
|
|
|
|
|
|
|
|
struct percentage_with_offset {
|
|
|
|
double percentage{0};
|
|
|
|
extent_val offset{ZERO_PX_EXTENT};
|
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 {
|
2020-10-21 03:02:52 -04:00
|
|
|
double top_left{0.0};
|
|
|
|
double top_right{0.0};
|
|
|
|
double bottom_left{0.0};
|
|
|
|
double bottom_right{0.0};
|
2017-03-21 09:49:33 -04:00
|
|
|
|
|
|
|
operator bool() const {
|
2020-10-21 03:02:52 -04:00
|
|
|
return top_left != 0.0 || top_right != 0.0 || bottom_left != 0.0 || bottom_right != 0.0;
|
2017-03-21 09:49:33 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
struct border_settings {
|
2019-10-27 17:41:18 -04:00
|
|
|
rgba color{0xFF000000};
|
2017-01-19 05:11:28 -05:00
|
|
|
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 {
|
2019-10-27 17:41:18 -04:00
|
|
|
rgba color{0xFF000000};
|
2017-01-19 05:11:28 -05:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2022-03-16 18:11:19 -04:00
|
|
|
/**
|
|
|
|
* Settings specific to the X window system.
|
|
|
|
*/
|
|
|
|
struct x_settings {
|
|
|
|
xcb_window_t window{XCB_NONE};
|
|
|
|
xcb_visualtype_t* visual{nullptr};
|
|
|
|
int depth{-1};
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
2022-03-16 18:11:19 -04:00
|
|
|
x_settings x_data;
|
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
monitor_t monitor{};
|
2018-12-02 19:34:40 -05:00
|
|
|
bool monitor_strict{false};
|
2018-12-02 19:21:20 -05:00
|
|
|
bool monitor_exact{true};
|
2022-03-14 18:47:05 -04:00
|
|
|
bool bottom{false};
|
2016-11-24 13:24:47 -05:00
|
|
|
struct size size {
|
|
|
|
1U, 1U
|
|
|
|
};
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
|
|
|
|
double dpi_x{0.};
|
|
|
|
double dpi_y{0.};
|
|
|
|
|
2016-11-21 09:07:00 -05:00
|
|
|
position pos{0, 0};
|
|
|
|
position offset{0, 0};
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
side_values padding{ZERO_SPACE, ZERO_SPACE};
|
|
|
|
side_values module_margin{ZERO_SPACE, ZERO_SPACE};
|
2022-10-17 05:55:55 -04:00
|
|
|
bool struts{true};
|
2022-03-14 18:47:05 -04:00
|
|
|
struct {
|
|
|
|
int top;
|
|
|
|
int bottom;
|
|
|
|
} strut{0, 0};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2019-10-27 17:41:18 -04:00
|
|
|
rgba background{0xFF000000};
|
|
|
|
rgba foreground{0xFFFFFFFF};
|
|
|
|
vector<rgba> 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 {};
|
Add units support (POINT, PIXEL, SPACE) (#2578)
* add units support (POINT, PIXEL, SPACE) for polybar
- add a size_with_unit struct
- add a geometry_format_values struct
- move dpi initialisation from renderer.cpp to bar.cpp
- add a string to size_with_unit converter
- add point support (with pt)
- add pixel support (with px)
* Fix unit test compilation
* clang-format
* Better names
The old names didn't really capture the purpose of the structs and
function.
space_type -> spacing_type
space_size -> spacing_val
size_type -> extent_type
geometry -> extent_val
geometry_format_values -> percentage_with_offset
* Remove parse_size_with_unit
No longer needed. The convert<spacing_val> function in config.cpp
already does all the work for us and always setting the type to pixel
was wrong.
In addition, line-size should not be of type spacing_val but extent_val.
* Cleanup
I tried to address most of my comments on the old PR
* Fix renderer width calculation
We can't just blindly add the x difference to the width because for
example the width should increase if x < width and the increase keeps
x < width.
Similarly, we can't just add the offset to the width.
* Rename geom_format_to_pixels to percentage_with_offset_to_pixel
* Cleanup
* Apply suggested changes from Patrick on GitHub
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/bar.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/config.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* Update src/components/builder.cpp
Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
* config: Use stod for parsing percentage
* Use stof instead of strtof
* units: Fix test edge cases
* Remove unnecessary clang-format toggle
* Use percentage_with_offset for margin-{top,bottom}
* Support negative extent values
* Rename unit to units and create a cpp file
* Move percentage_with_offset_to_pixel unit test to units
* Add unit tests for units_utils
* Clarify when and how negative spacing/extent is allowed
Negative spacing is never allowed and produces a config error.
Extents allow negative values in theory, but only a few use-cases accept
it.
Only the extent value used for the `%{O}` tag and the offset value in
percentage_with_offset can be negative. Everything else is capped below
at 0.
The final pixel value of percentage_with_offset also caps below at 0.
* Fix parsing errors not being caught in config
* Print a proper error message for uncaught exceptions
* Cleanup module::get_output
All changes preserve the existing semantics
* Stop using remove_trailing_space in module::get_output
Instead, we first check if the current tag is built, and only if it is,
the spacing is prepended.
* Remove unused imports
* Restore old behavior
If there are two tags and the second one isn't built (module::build
returns false), the space in between them is removed.
For example in the mpd module:
format-online = <toggle> <label-song> foo
If mpd is not running, the mpd module will return false when trying to
build the `<label-song>` tag. If we don't remove the space between
`<toggle>` and `<label-song>`, we end up with two spaces between
`<toggle>` and `foo`.
This change is to match the old behavior where at least one trailing
space character was removed from the builder.
* Add changelog entry
* Remove unused setting
* Use percentage with offset for tray-offset
Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
Co-authored-by: Joe Groocock <github@frebib.net>
2022-02-20 15:08:57 -05:00
|
|
|
/**
|
|
|
|
* TODO deprecated
|
|
|
|
*/
|
|
|
|
spacing_val spacing{ZERO_SPACE};
|
2019-10-27 08:32:45 -04:00
|
|
|
label_t 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
|
|
|
|
2021-09-27 11:35:45 -04:00
|
|
|
int double_click_interval{400};
|
|
|
|
|
2022-03-20 13:32:21 -04:00
|
|
|
/**
|
|
|
|
* Name of cursor to use for clickable areas
|
|
|
|
*/
|
2017-09-03 00:45:45 -04:00
|
|
|
string cursor_click{};
|
2022-03-20 13:32:21 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of cursor to use for scrollable areas
|
|
|
|
*/
|
2017-09-03 00:45:45 -04:00
|
|
|
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-11-24 22:10:26 -05:00
|
|
|
const xcb_rectangle_t inner_area(bool abspos = false) const {
|
2017-08-31 09:07:48 -04:00
|
|
|
xcb_rectangle_t rect = this->outer_area(abspos);
|
2016-11-24 22:10:26 -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;
|
|
|
|
}
|
2017-08-31 09:07:48 -04:00
|
|
|
|
|
|
|
const xcb_rectangle_t outer_area(bool abspos = false) const {
|
|
|
|
xcb_rectangle_t rect{0, 0, 0, 0};
|
|
|
|
rect.width += size.w;
|
|
|
|
rect.height += size.h;
|
|
|
|
|
|
|
|
if (abspos) {
|
|
|
|
rect.x = pos.x;
|
|
|
|
rect.y = pos.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|