blob: 27209fbfc13afa5bc2c8342dc86d50c216b88df8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef NEWSBOAT_COLORMANAGER_H_
#define NEWSBOAT_COLORMANAGER_H_
#include <functional>
#include <map>
#include <vector>
#include "configactionhandler.h"
namespace podboat {
class PbView;
}
class View;
namespace newsboat {
class ConfigParser;
struct TextStyle {
std::string fg_color;
std::string bg_color;
std::vector<std::string> attributes;
};
class ColorManager : public ConfigActionHandler {
public:
ColorManager();
~ColorManager() override;
void register_commands(ConfigParser& cfgparser);
void handle_action(const std::string& action,
const std::vector<std::string>& params) override;
void dump_config(std::vector<std::string>& config_output) const override;
void apply_colors(std::function<void(const std::string&, const std::string&)>
stfl_value_setter) const;
private:
void emit_fallback_from_to(const std::string& from_element, const std::string& to_element,
const std::function<void(const std::string&, const std::string&)>& stfl_value_setter)
const;
std::map<std::string, TextStyle> element_styles;
};
} // namespace newsboat
#endif /* NEWSBOAT_COLORMANAGER_H_ */
|