2016-05-31 03:58:58 +00:00
|
|
|
#pragma once
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
#include "modules/meta.hpp"
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
LEMONBUDDY_NS
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
namespace modules {
|
|
|
|
class date_module : public timer_module<date_module> {
|
|
|
|
public:
|
|
|
|
using timer_module::timer_module;
|
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
void setup();
|
|
|
|
bool update();
|
|
|
|
bool build(builder* builder, string tag) const;
|
|
|
|
bool handle_event(string cmd);
|
|
|
|
bool receive_events() const;
|
2016-10-10 16:05:58 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
private:
|
|
|
|
static constexpr auto TAG_DATE = "<date>";
|
|
|
|
static constexpr auto EVENT_TOGGLE = "datetoggle";
|
|
|
|
|
|
|
|
string m_format;
|
2016-10-12 03:19:29 +00:00
|
|
|
string m_formatalt;
|
2016-06-15 03:32:35 +00:00
|
|
|
|
|
|
|
char m_buffer[256] = {'\0'};
|
2016-10-12 03:19:29 +00:00
|
|
|
stateflag m_toggled{false};
|
2016-05-19 14:41:06 +00:00
|
|
|
};
|
|
|
|
}
|
2016-06-15 03:32:35 +00:00
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|