2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
#include "modules/meta/input_handler.hpp"
|
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 {
|
2016-12-21 02:38:44 -05:00
|
|
|
class date_module : public timer_module<date_module>, public input_handler {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
explicit date_module(const bar_settings&, string);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
bool update();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-21 02:38:44 -05:00
|
|
|
|
|
|
|
protected:
|
2016-12-23 14:43:52 -05:00
|
|
|
bool input(string&& cmd);
|
2016-10-10 12:05:58 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
2016-12-04 22:45:01 -05:00
|
|
|
static constexpr auto TAG_LABEL = "<label>";
|
2016-06-14 23:32:35 -04:00
|
|
|
static constexpr auto EVENT_TOGGLE = "datetoggle";
|
|
|
|
|
2016-12-04 22:45:01 -05:00
|
|
|
// @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-14 23:32:35 -04:00
|
|
|
|
2016-12-22 23:18:58 -05:00
|
|
|
std::atomic<bool> 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
|