Waybar/include/modules/clock.hpp

45 lines
1.2 KiB
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <date/tz.h>
2022-04-06 06:37:19 +00:00
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 {
2018-08-08 21:54:58 +00:00
struct waybar_time;
namespace modules {
const std::string kCalendarPlaceholder = "calendar";
const std::string KTimezonedTimeListPlaceholder = "timezoned_time_list";
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_;
std::locale locale_;
std::vector<const date::time_zone*> time_zones_;
int current_time_zone_idx_;
2022-04-06 06:37:19 +00:00
date::year_month_day cached_calendar_ymd_ = date::January / 1 / 0;
std::string cached_calendar_text_;
bool is_calendar_in_tooltip_;
bool is_timezoned_list_in_tooltip_;
bool handleScroll(GdkEventScroll* e);
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;
const date::time_zone* current_timezone();
bool is_timezone_fixed();
2022-04-06 06:37:19 +00:00
auto timezones_text(std::chrono::system_clock::time_point* now) -> std::string;
2018-08-16 12:29:41 +00:00
};
2018-08-08 21:54:58 +00:00
} // namespace modules
} // namespace waybar