2018-08-08 23:54:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
2022-11-24 12:28:52 +01:00
|
|
|
#include "ALabel.hpp"
|
2023-01-17 02:30:06 +01:00
|
|
|
#include "util/date.hpp"
|
2018-12-26 11:13:36 +01:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2023-01-17 01:48:30 +01:00
|
|
|
namespace waybar::modules {
|
2020-02-05 20:02:42 +01:00
|
|
|
|
2021-10-03 18:48:21 +02:00
|
|
|
const std::string kCalendarPlaceholder = "calendar";
|
2021-10-05 11:46:52 +02:00
|
|
|
const std::string KTimezonedTimeListPlaceholder = "timezoned_time_list";
|
2021-10-03 18:48:21 +02:00
|
|
|
|
2022-11-24 12:28:52 +01:00
|
|
|
class Clock : public ALabel {
|
2019-04-18 17:52:00 +02:00
|
|
|
public:
|
|
|
|
Clock(const std::string&, const Json::Value&);
|
|
|
|
~Clock() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
2019-05-29 17:53:22 +02:00
|
|
|
util::SleeperThread thread_;
|
2020-01-21 23:48:16 +01:00
|
|
|
std::locale locale_;
|
2021-10-03 18:48:21 +02:00
|
|
|
std::vector<const date::time_zone*> time_zones_;
|
|
|
|
int current_time_zone_idx_;
|
2022-08-06 12:55:20 +02:00
|
|
|
date::year_month_day calendar_cached_ymd_{date::January / 1 / 0};
|
|
|
|
date::months calendar_shift_{0}, calendar_shift_init_{0};
|
|
|
|
std::string calendar_cached_text_;
|
2021-10-03 18:48:21 +02:00
|
|
|
bool is_calendar_in_tooltip_;
|
2021-10-05 11:46:52 +02:00
|
|
|
bool is_timezoned_list_in_tooltip_;
|
2020-02-05 20:02:42 +01:00
|
|
|
|
2020-08-13 04:46:51 +02:00
|
|
|
bool handleScroll(GdkEventScroll* e);
|
|
|
|
|
2022-12-14 14:43:23 +01:00
|
|
|
std::string fmt_str_weeks_;
|
|
|
|
std::string fmt_str_calendar_;
|
|
|
|
int fmt_weeks_left_pad_{0};
|
2023-01-17 01:48:30 +01:00
|
|
|
auto calendar_text(const date::zoned_seconds& ztime) -> std::string;
|
2020-02-05 20:02:42 +01:00
|
|
|
auto weekdays_header(const date::weekday& first_dow, std::ostream& os) -> void;
|
|
|
|
auto first_day_of_week() -> date::weekday;
|
2021-10-03 18:48:21 +02:00
|
|
|
const date::time_zone* current_timezone();
|
|
|
|
bool is_timezone_fixed();
|
2022-04-06 08:37:19 +02:00
|
|
|
auto timezones_text(std::chrono::system_clock::time_point* now) -> std::string;
|
2018-08-16 14:29:41 +02:00
|
|
|
};
|
2023-01-17 01:48:30 +01:00
|
|
|
} // namespace waybar::modules
|