polybar/src/modules/date.cpp

95 lines
2.6 KiB
C++
Raw Normal View History

2016-11-02 19:22:45 +00:00
#include "modules/date.hpp"
#include "drawtypes/label.hpp"
2016-11-20 22:04:31 +00:00
#include "modules/meta/base.inl"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-02 19:22:45 +00:00
namespace modules {
2016-11-20 22:04:31 +00:00
template class module<date_module>;
date_module::date_module(const bar_settings& bar, string name_) : timer_module<date_module>(bar, move(name_)) {
2016-11-25 12:55:15 +00:00
if (!m_bar.locale.empty()) {
datetime_stream.imbue(std::locale(m_bar.locale.c_str()));
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
m_router->register_action(EVENT_TOGGLE, [this]() { action_toggle(); });
m_dateformat = m_conf.get(name(), "date", ""s);
m_dateformat_alt = m_conf.get(name(), "date-alt", ""s);
m_timeformat = m_conf.get(name(), "time", ""s);
m_timeformat_alt = m_conf.get(name(), "time-alt", ""s);
2016-11-02 19:22:45 +00:00
if (m_dateformat.empty() && m_timeformat.empty()) {
throw module_error("No date or time format specified");
}
2016-11-02 19:22:45 +00:00
set_interval(1s);
2016-11-02 19:22:45 +00:00
m_formatter->add(DEFAULT_FORMAT, TAG_LABEL, {TAG_LABEL, TAG_DATE});
if (m_formatter->has(TAG_DATE)) {
m_log.warn("%s: The format tag `<date>` is deprecated, use `<label>` instead.", name());
m_formatter->get(DEFAULT_FORMAT)->value =
string_util::replace_all(m_formatter->get(DEFAULT_FORMAT)->value, TAG_DATE, TAG_LABEL);
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
if (m_formatter->has(TAG_LABEL)) {
m_label = load_optional_label(m_conf, name(), "label", "%date%");
}
}
bool date_module::update() {
2016-11-02 19:22:45 +00:00
auto time = std::time(nullptr);
auto date_format = m_toggled ? m_dateformat_alt : m_dateformat;
// Clear stream contents
datetime_stream.str("");
datetime_stream << std::put_time(localtime(&time), date_format.c_str());
auto date_string = datetime_stream.str();
auto time_format = m_toggled ? m_timeformat_alt : m_timeformat;
// Clear stream contents
datetime_stream.str("");
datetime_stream << std::put_time(localtime(&time), time_format.c_str());
auto time_string = datetime_stream.str();
if (m_date == date_string && m_time == time_string) {
2016-11-02 19:22:45 +00:00
return false;
}
m_date = date_string;
m_time = time_string;
if (m_label) {
m_label->reset_tokens();
m_label->replace_token("%date%", m_date);
m_label->replace_token("%time%", m_time);
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
return true;
}
2016-11-25 12:55:15 +00:00
bool date_module::build(builder* builder, const string& tag) const {
if (tag == TAG_LABEL) {
if (!m_dateformat_alt.empty() || !m_timeformat_alt.empty()) {
builder->action(mousebtn::LEFT, *this, EVENT_TOGGLE, "", m_label);
} else {
builder->node(m_label);
}
} else {
2016-11-02 19:22:45 +00:00
return false;
}
return true;
}
void date_module::action_toggle() {
m_toggled = !m_toggled;
wakeup();
2016-11-02 19:22:45 +00:00
}
} // namespace modules
2016-11-02 19:22:45 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END