mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "components/builder.hpp"
|
|
#include "components/config.hpp"
|
|
#include "components/types.hpp"
|
|
#include "utils/mixins.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace drawtypes {
|
|
// fwd
|
|
class label;
|
|
using label_t = shared_ptr<label>;
|
|
using icon = label;
|
|
using icon_t = label_t;
|
|
|
|
class progressbar : public non_copyable_mixin<progressbar> {
|
|
public:
|
|
explicit progressbar(const bar_settings& bar, int width, string format);
|
|
|
|
void set_fill(icon_t&& fill);
|
|
void set_empty(icon_t&& empty);
|
|
void set_indicator(icon_t&& indicator);
|
|
void set_gradient(bool mode);
|
|
void set_colors(vector<string>&& colors);
|
|
|
|
string output(float percentage);
|
|
|
|
protected:
|
|
void fill(unsigned int perc, unsigned int fill_width);
|
|
|
|
private:
|
|
unique_ptr<builder> m_builder;
|
|
vector<string> m_colors;
|
|
string m_format;
|
|
unsigned int m_width;
|
|
unsigned int m_colorstep = 1;
|
|
bool m_gradient = false;
|
|
|
|
icon_t m_fill;
|
|
icon_t m_empty;
|
|
icon_t m_indicator;
|
|
};
|
|
|
|
using progressbar_t = shared_ptr<progressbar>;
|
|
|
|
progressbar_t load_progressbar(const bar_settings& bar, const config& conf, const string& section, string name);
|
|
}
|
|
|
|
POLYBAR_NS_END
|