2018-08-08 23:54:58 +02:00
|
|
|
#include "modules/clock.hpp"
|
|
|
|
|
2018-12-18 17:30:54 +01:00
|
|
|
waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
|
2018-11-23 11:57:37 +01:00
|
|
|
: ALabel(config, "{:%H:%M}", 60)
|
2018-08-08 23:54:58 +02:00
|
|
|
{
|
2018-08-16 14:29:41 +02:00
|
|
|
label_.set_name("clock");
|
2018-12-18 17:30:54 +01:00
|
|
|
if (!id.empty()) {
|
|
|
|
label_.get_style_context()->add_class(id);
|
|
|
|
}
|
2018-11-23 11:57:37 +01:00
|
|
|
thread_ = [this] {
|
2018-12-26 11:13:36 +01:00
|
|
|
auto now = std::chrono::system_clock::now();
|
2018-08-20 14:50:45 +02:00
|
|
|
dp.emit();
|
2018-11-23 11:57:37 +01:00
|
|
|
auto timeout = std::chrono::floor<std::chrono::seconds>(now + interval_);
|
|
|
|
auto time_s = std::chrono::time_point_cast<std::chrono::seconds>(timeout);
|
|
|
|
auto sub_m =
|
2018-12-04 09:38:08 +01:00
|
|
|
std::chrono::duration_cast<std::chrono::seconds>(time_s.time_since_epoch()).count() % interval_.count();
|
2018-11-23 11:57:37 +01:00
|
|
|
thread_.sleep_until(timeout - std::chrono::seconds(sub_m - 1));
|
2018-08-08 23:54:58 +02:00
|
|
|
};
|
2018-08-18 11:43:48 +02:00
|
|
|
}
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2018-08-09 12:05:48 +02:00
|
|
|
auto waybar::modules::Clock::update() -> void
|
|
|
|
{
|
2018-08-15 20:53:27 +02:00
|
|
|
auto localtime = fmt::localtime(std::time(nullptr));
|
2019-02-24 09:25:34 +01:00
|
|
|
auto text = fmt::format(format_, localtime);
|
|
|
|
label_.set_markup(text);
|
|
|
|
|
|
|
|
if (tooltipEnabled()) {
|
|
|
|
if (config_["tooltip-format"].isString()) {
|
|
|
|
auto tooltip_format = config_["tooltip-format"].asString();
|
|
|
|
auto tooltip_text = fmt::format(tooltip_format, localtime);
|
|
|
|
label_.set_tooltip_text(tooltip_text);
|
|
|
|
} else {
|
|
|
|
label_.set_tooltip_text(text);
|
|
|
|
}
|
|
|
|
}
|
2018-08-09 12:05:48 +02:00
|
|
|
}
|