#pragma once #include #include #include "config.hpp" #include "exception.hpp" #include "utils/xlib.hpp" DefineBaseException(ConfigurationError); struct CompiledWithoutModuleSupport : public ConfigurationError { explicit CompiledWithoutModuleSupport(std::string module_name) : ConfigurationError(std::string(APP_NAME) + " was not compiled with support for module \""+ module_name +"\"") {} }; struct Font { std::string id; int offset; Font(const std::string& id, int offset) : id(id), offset(offset){} }; enum Cmd { LEFT_CLICK = 1, MIDDLE_CLICK = 2, RIGHT_CLICK = 3, SCROLL_UP = 4, SCROLL_DOWN = 5, }; struct Options { std::unique_ptr monitor; std::string wm_name; std::string locale; std::string background = "#ffffff"; std::string foreground = "#000000"; std::string linecolor = "#000000"; int width; int height; int offset_x = 0; int offset_y = 0; bool bottom = false; bool dock = true; int clickareas = 25; std::string separator; int spacing = 1; int lineheight = 1; int padding_left = 0; int padding_right = 0; int module_margin_left = 0; int module_margin_right = 2; std::vector> fonts; std::string get_geom() { std::stringstream ss; ss << this->width << "x" << this->height << "+"; ss << this->offset_x << "+" << this->offset_y; return ss.str(); } }; class Bar { std::string config_path; std::vector mod_left; std::vector mod_center; std::vector mod_right; public: Bar(); std::unique_ptr opts; std::string get_output(); std::string get_exec_line(); void load(); }; std::shared_ptr &get_bar(); const Options& bar_opts();