2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
#include "modules/base.hpp"
|
|
|
|
|
|
|
|
namespace modules
|
|
|
|
{
|
|
|
|
DefineModule(DateModule, TimerModule)
|
|
|
|
{
|
2016-05-30 23:58:58 -04:00
|
|
|
static constexpr auto TAG_DATE = "<date>";
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-05-30 23:58:58 -04:00
|
|
|
static constexpr auto EVENT_TOGGLE = "datetoggle";
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
std::unique_ptr<Builder> builder;
|
|
|
|
|
|
|
|
std::string date;
|
|
|
|
std::string date_detailed;
|
|
|
|
|
2016-05-30 23:58:58 -04:00
|
|
|
char date_str[256] = {};
|
2016-05-19 10:41:06 -04:00
|
|
|
bool detailed = false;
|
|
|
|
|
|
|
|
public:
|
2016-05-30 23:58:58 -04:00
|
|
|
explicit DateModule(const std::string& name);
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
bool update();
|
|
|
|
bool build(Builder *builder, const std::string& tag);
|
|
|
|
|
|
|
|
std::string get_output();
|
|
|
|
bool handle_command(const std::string& cmd);
|
|
|
|
};
|
|
|
|
}
|