polybar/include/drawtypes/ramp.hpp

31 lines
665 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "common.hpp"
#include "components/config.hpp"
#include "drawtypes/label.hpp"
#include "utils/mixins.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
namespace drawtypes {
class ramp : public non_copyable_mixin<ramp> {
public:
explicit ramp() = default;
explicit ramp(vector<icon_t>&& icons) : m_icons(forward<decltype(icons)>(icons)) {}
2016-11-02 19:22:45 +00:00
void add(icon_t&& icon);
icon_t get(size_t index);
icon_t get_by_percentage(float percentage);
operator bool();
2016-06-15 03:32:35 +00:00
protected:
vector<icon_t> m_icons;
2016-05-19 14:41:06 +00:00
};
2016-10-25 05:10:03 +00:00
using ramp_t = shared_ptr<ramp>;
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
ramp_t load_ramp(const config& conf, string section, string name, bool required = true);
2016-05-19 14:41:06 +00:00
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END