polybar-dwm/include/modules/date.hpp

42 lines
808 B
C++
Raw Normal View History

#pragma once
2016-05-19 16:41:06 +02:00
2016-11-20 23:04:31 +01:00
#include "modules/meta/timer_module.hpp"
2016-05-19 16:41:06 +02:00
2016-11-19 06:22:44 +01:00
POLYBAR_NS
2016-05-19 16:41:06 +02:00
2016-06-15 05:32:35 +02:00
namespace modules {
class date_module : public timer_module<date_module> {
public:
using timer_module::timer_module;
2016-11-02 20:22:45 +01:00
void setup();
bool update();
2016-11-25 13:55:15 +01:00
bool build(builder* builder, const string& tag) const;
2016-11-02 20:22:45 +01:00
bool handle_event(string cmd);
bool receive_events() const {
return true;
}
2016-06-15 05:32:35 +02:00
private:
static constexpr auto TAG_LABEL = "<label>";
2016-06-15 05:32:35 +02:00
static constexpr auto EVENT_TOGGLE = "datetoggle";
// @deprecated: Use <label>
static constexpr auto TAG_DATE = "<date>";
label_t m_label;
string m_dateformat;
string m_dateformat_alt;
string m_timeformat;
string m_timeformat_alt;
string m_date;
string m_time;
2016-06-15 05:32:35 +02:00
stateflag m_toggled{false};
2016-05-19 16:41:06 +02:00
};
}
2016-06-15 05:32:35 +02:00
2016-11-19 06:22:44 +01:00
POLYBAR_NS_END