2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
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
|
|
|
|
2022-01-08 02:09:44 +00:00
|
|
|
namespace waybar {
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2022-01-08 02:09:44 +00:00
|
|
|
struct waybar_time;
|
|
|
|
|
|
|
|
namespace modules {
|
2020-02-05 19:02:42 +00:00
|
|
|
|
2021-10-03 16:48:21 +00:00
|
|
|
const std::string kCalendarPlaceholder = "calendar";
|
|
|
|
|
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_;
|
2021-10-03 16:48:21 +00:00
|
|
|
std::vector<const date::time_zone*> time_zones_;
|
|
|
|
int current_time_zone_idx_;
|
clock: initialize cached date
We are currently using this value once before it's initialized, since we
check it before we set it in Clock::calendar_text(). This was caught by
Valgrind, producing the following error:
==8962== Conditional jump or move depends on uninitialised value(s)
==8962== at 0x138285: date::operator==(date::year_month_day const&, date::year_month_day const&) (date.h:2793)
==8962== by 0x135F11: waybar::modules::Clock::calendar_text[abi:cxx11](waybar::modules::waybar_time const&) (clock.cpp:111)
==8962== by 0x13587C: waybar::modules::Clock::update() (clock.cpp:62)
==8962== by 0x156EFA: waybar::Bar::getModules(waybar::Factory const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda()#1}::operator()() const (bar.cpp:577)
==8962== by 0x157F39: sigc::adaptor_functor<waybar::Bar::getModules(waybar::Factory const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda()#1}>::operator()() const (adaptor_trait.h:256)
==8962== by 0x157D94: sigc::internal::slot_call0<waybar::Bar::getModules(waybar::Factory const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda()#1}, void>::call_it(sigc::internal::slot_rep*) (slot.h:136)
==8962== by 0x5177B21: Glib::DispatchNotifier::pipe_io_handler(Glib::IOCondition) (in /usr/lib/libglibmm-2.4.so.1.3.0)
==8962== by 0x517DB5B: Glib::IOSource::dispatch(sigc::slot_base*) (in /usr/lib/libglibmm-2.4.so.1.3.0)
==8962== by 0x5188B96: Glib::Source::dispatch_vfunc(_GSource*, int (*)(void*), void*) (in /usr/lib/libglibmm-2.4.so.1.3.0)
==8962== by 0x5CBC913: g_main_context_dispatch (in /usr/lib/libglib-2.0.so.0.6600.2)
==8962== by 0x5D107D0: ??? (in /usr/lib/libglib-2.0.so.0.6600.2)
==8962== by 0x5CBB120: g_main_context_iteration (in /usr/lib/libglib-2.0.so.0.6600.2)
Initialize the value to prevent the error.
2020-11-30 20:49:48 +00:00
|
|
|
date::year_month_day cached_calendar_ymd_ = date::January/1/0;
|
2020-02-05 19:02:42 +00:00
|
|
|
std::string cached_calendar_text_;
|
2021-10-03 16:48:21 +00:00
|
|
|
bool is_calendar_in_tooltip_;
|
2020-02-05 19:02:42 +00:00
|
|
|
|
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;
|
2021-10-03 16:48:21 +00:00
|
|
|
const date::time_zone* current_timezone();
|
|
|
|
bool is_timezone_fixed();
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2022-01-08 02:09:44 +00:00
|
|
|
} // namespace modules
|
|
|
|
} // namespace waybar
|