mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
24 lines
468 B
C++
24 lines
468 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "drawtypes/label.hpp"
|
|
#include "utils/mixins.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace drawtypes {
|
|
class iconset : public non_copyable_mixin<iconset> {
|
|
public:
|
|
void add(string id, icon_t&& icon);
|
|
bool has(const string& id);
|
|
icon_t get(const string& id, const string& fallback_id = "");
|
|
operator bool();
|
|
|
|
protected:
|
|
map<string, icon_t> m_icons;
|
|
};
|
|
|
|
using iconset_t = shared_ptr<iconset>;
|
|
}
|
|
|
|
POLYBAR_NS_END
|