Files
Waybar/include/modules/clock.hpp
T

94 lines
3.7 KiB
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
2022-11-24 12:28:52 +01:00
#include "ALabel.hpp"
2023-01-23 18:42:32 +03: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-23 18:42:32 +03:00
namespace waybar::modules {
2023-11-10 17:57:26 +03:00
const std::string kCldPlaceholder{"calendar"};
const std::string kTZPlaceholder{"tz_list"};
const std::string kOrdPlaceholder{"ordinal_date"};
2023-01-23 18:42:32 +03:00
2023-04-03 09:41:24 +02:00
enum class CldMode { MONTH, YEAR };
2023-11-10 17:57:26 +03:00
enum class WS { LEFT, RIGHT, HIDDEN };
2023-01-23 18:42:32 +03:00
class Clock final : public ALabel {
2019-04-18 17:52:00 +02:00
public:
Clock(const std::string&, const Json::Value&);
2023-03-02 16:57:07 +03:00
virtual ~Clock() = default;
auto update() -> void override;
2023-11-10 17:57:26 +03:00
auto doAction(const std::string&) -> void override;
2019-04-18 17:52:00 +02:00
private:
const std::locale m_locale_;
2023-11-10 17:57:26 +03:00
// tooltip
const std::string m_tlpFmt_;
std::string m_tlpText_{""}; // tooltip text to print
const Glib::RefPtr<Gtk::Label> m_tooltip_; // tooltip as a separate Gtk::Label
bool query_tlp_cb(int, int, bool, const Glib::RefPtr<Gtk::Tooltip>& tooltip);
2023-11-10 17:57:26 +03:00
// Calendar
const bool cldInTooltip_; // calendar in tooltip
2023-07-24 01:21:30 +03:00
/*
0 - calendar.format.months
1 - calendar.format.weekdays
2 - calendar.format.days
3 - calendar.format.today
4 - calendar.format.weeks
5 - tooltip-format
*/
2023-01-23 18:42:32 +03:00
std::map<int, std::string const> fmtMap_;
uint cldMonCols_{3}; // calendar count month columns
int cldWnLen_{3}; // calendar week number length
const int cldMonColLen_{20}; // calendar month column length
WS cldWPos_{WS::HIDDEN}; // calendar week side to print
date::months cldCurrShift_{0}; // calendar months shift
int cldShift_{1}; // calendar months shift factor
date::year_month_day cldYearShift_; // calendar Year mode. Cached ymd
std::string cldYearCached_; // calendar Year mode. Cached calendar
date::year_month cldMonShift_; // calendar Month mode. Cached ym
std::string cldMonCached_; // calendar Month mode. Cached calendar
2025-07-07 22:10:09 -05:00
date::day cldBaseDay_{0}; // calendar Cached day. Is used when today is changing(midnight)
std::string cldText_{""}; // calendar text to print
bool iso8601Calendar_{false}; // whether the calendar is in ISO8601
2023-01-23 18:42:32 +03:00
CldMode cldMode_{CldMode::MONTH};
auto get_calendar(const date::year_month_day& today, const date::year_month_day& ymd,
const date::time_zone* tz) -> const std::string;
2023-11-10 17:57:26 +03:00
2024-04-09 20:33:53 +03:00
// get local time zone
auto local_zone() -> const date::time_zone*;
2024-04-09 20:33:53 +03:00
2023-11-10 17:57:26 +03:00
// time zoned time in tooltip
const bool tzInTooltip_; // if need to print time zones text
std::vector<const date::time_zone*> tzList_; // time zones list
int tzCurrIdx_; // current time zone index for tzList_
std::string tzText_{""}; // time zones text to print
std::string tzTooltipFormat_{""}; // optional timezone tooltip format
2023-11-10 17:57:26 +03:00
util::SleeperThread thread_;
// ordinal date in tooltip
const bool ordInTooltip_;
std::string ordText_{""};
auto get_ordinal_date(const date::year_month_day& today) -> std::string;
auto getTZtext(date::sys_seconds now) -> std::string;
auto first_day_of_week() -> date::weekday;
2023-11-10 17:57:26 +03:00
// Module actions
2023-01-23 18:42:32 +03:00
void cldModeSwitch();
void cldShift_up();
void cldShift_down();
2024-04-15 21:59:35 +02:00
void cldShift_reset();
void tz_up();
void tz_down();
2023-11-10 17:57:26 +03:00
// Module Action Map
2025-01-25 09:31:32 +01:00
static inline std::map<const std::string, void (waybar::modules::Clock::* const)()> actionMap_{
2023-04-03 09:41:24 +02:00
{"mode", &waybar::modules::Clock::cldModeSwitch},
{"shift_up", &waybar::modules::Clock::cldShift_up},
{"shift_down", &waybar::modules::Clock::cldShift_down},
2024-04-15 21:59:35 +02:00
{"shift_reset", &waybar::modules::Clock::cldShift_reset},
2023-04-03 09:41:24 +02:00
{"tz_up", &waybar::modules::Clock::tz_up},
{"tz_down", &waybar::modules::Clock::tz_down}};
2018-08-16 14:29:41 +02:00
};
2023-11-10 17:57:26 +03:00
2023-01-23 18:42:32 +03:00
} // namespace waybar::modules