mirror of
https://github.com/polybar/polybar.git
synced 2024-11-18 13:55:11 -05:00
39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
31 lines
678 B
C++
31 lines
678 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include "drawtypes/icon.hpp"
|
|
|
|
namespace drawtypes
|
|
{
|
|
class Ramp
|
|
{
|
|
protected:
|
|
std::vector<std::unique_ptr<Icon>> icons;
|
|
|
|
public:
|
|
Ramp(){}
|
|
explicit Ramp(std::vector<std::unique_ptr<Icon>> icons);
|
|
|
|
void add(std::unique_ptr<Icon> &&icon);
|
|
std::unique_ptr<Icon> &get(int idx);
|
|
std::unique_ptr<Icon> &get_by_percentage(float percentage);
|
|
|
|
operator bool() {
|
|
return this->icons.size() > 0;
|
|
}
|
|
};
|
|
|
|
std::unique_ptr<Ramp> get_config_ramp(const std::string& module_name, const std::string& ramp_name = "ramp", bool required = true);
|
|
}
|