2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
#include "modules/base.hpp"
|
|
|
|
#include "drawtypes/bar.hpp"
|
|
|
|
#include "drawtypes/icon.hpp"
|
|
|
|
#include "drawtypes/label.hpp"
|
|
|
|
|
|
|
|
namespace modules
|
|
|
|
{
|
|
|
|
DefineModule(MemoryModule, TimerModule)
|
|
|
|
{
|
2016-05-30 23:58:58 -04:00
|
|
|
static constexpr auto TAG_LABEL = "<label>";
|
2016-05-25 20:14:56 -04:00
|
|
|
static constexpr auto TAG_BAR_USED = "<bar-used>";
|
|
|
|
static constexpr auto TAG_BAR_FREE = "<bar-free>";
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
std::unique_ptr<drawtypes::Bar> bar_used;
|
|
|
|
std::unique_ptr<drawtypes::Bar> bar_free;
|
|
|
|
std::unique_ptr<drawtypes::Label> label;
|
|
|
|
std::unique_ptr<drawtypes::Label> label_tokenized;
|
|
|
|
|
|
|
|
std::atomic<int> percentage_used;
|
|
|
|
std::atomic<int> percentage_free;
|
|
|
|
|
|
|
|
public:
|
2016-06-20 21:59:43 -04:00
|
|
|
explicit MemoryModule(std::string name);
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
bool update();
|
2016-06-20 21:59:43 -04:00
|
|
|
bool build(Builder *builder, std::string tag);
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
|
|
|
}
|