2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2019-08-27 13:19:07 +00:00
|
|
|
#if FMT_VERSION < 60000
|
|
|
|
#include <fmt/time.h>
|
|
|
|
#else
|
|
|
|
#include <fmt/chrono.h>
|
|
|
|
#endif
|
2020-01-21 14:36:41 +00:00
|
|
|
#include <date/tz.h>
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2020-02-05 19:02:42 +00:00
|
|
|
struct waybar_time {
|
|
|
|
std::locale locale;
|
2020-02-05 08:51:56 +00:00
|
|
|
date::zoned_seconds ztime;
|
2020-02-05 19:02:42 +00:00
|
|
|
};
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Clock : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Clock(const std::string&, const Json::Value&);
|
|
|
|
~Clock() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
2019-05-29 15:53:22 +00:00
|
|
|
util::SleeperThread thread_;
|
2020-01-21 22:48:16 +00:00
|
|
|
std::locale locale_;
|
|
|
|
const date::time_zone* time_zone_;
|
|
|
|
bool fixed_time_zone_;
|
2020-08-13 02:46:51 +00:00
|
|
|
int time_zone_idx_;
|
2020-02-05 19:02:42 +00:00
|
|
|
date::year_month_day cached_calendar_ymd_;
|
|
|
|
std::string cached_calendar_text_;
|
|
|
|
|
2020-08-13 02:46:51 +00:00
|
|
|
bool handleScroll(GdkEventScroll* e);
|
|
|
|
|
2020-02-05 19:02:42 +00:00
|
|
|
auto calendar_text(const waybar_time& wtime) -> std::string;
|
|
|
|
auto weekdays_header(const date::weekday& first_dow, std::ostream& os) -> void;
|
|
|
|
auto first_day_of_week() -> date::weekday;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|