1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-18 13:55:11 -05:00
polybar/include/modules/date.hpp

31 lines
602 B
C++
Raw Normal View History

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