X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fappearance.h;h=538ea2e96709c7037d12dafc055f69da1bf121a2;hb=refs%2Fheads%2Fmaster;hp=6806ed238d1d88085b5e714fa1056b927882f7ee;hpb=9931bfa14fbaef1e6fe8858fcb56c4beb9a17c67;p=poefilter.git diff --git a/source/appearance.h b/source/appearance.h index 6806ed2..538ea2e 100644 --- a/source/appearance.h +++ b/source/appearance.h @@ -4,6 +4,8 @@ #include #include #include "color.h" +#include "effectcolor.h" +#include "iconshape.h" class FilterStatement; class Theme; @@ -26,6 +28,10 @@ public: void border_color_alpha(unsigned, unsigned, unsigned, unsigned); void border_color_named(const std::string &); void font_size(float); + void inherit(const std::string &); + void light_beam(EffectColor); + void minimap_icon(EffectColor, IconShape); + void minimap_icon_size(EffectColor, IconShape, unsigned); void text_color(unsigned, unsigned, unsigned); void text_color_alpha(unsigned, unsigned, unsigned, unsigned); void text_color_named(const std::string &); @@ -38,6 +44,12 @@ private: Color text_color; unsigned sound_type; unsigned sound_volume; + bool show_icon; + IconShape icon_shape; + EffectColor icon_color; + unsigned icon_size; + bool show_beam; + EffectColor beam_color; public: Appearance();