bar: Add comment to geom_format_to_pixels

This commit is contained in:
patrick96 2018-05-09 23:05:55 +02:00 committed by Patrick Ziegler
parent 4e5628dd5f
commit 22542afc73

View File

@ -27,6 +27,14 @@ class taskqueue;
class tray_manager; class tray_manager;
// }}} // }}}
/**
* Allows a new format for width, height, offset-x and offset-y in the bar section
*
* The new format is X%:Z, where X is in [0, 100], and Z is any real value
* describing a pixel offset. The actual value is calculated by X% * max + Z
* The max is the monitor width for width and offset-x and monitor height for
* the other two
*/
inline double geom_format_to_pixels(std::string str, double max) { inline double geom_format_to_pixels(std::string str, double max) {
size_t i; size_t i;
if ((i = str.find(':')) != std::string::npos) { if ((i = str.find(':')) != std::string::npos) {