Waybar/include/modules/clock.hpp

22 lines
365 B
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <gtkmm.h>
#include <fmt/format.h>
#include <thread>
#include "util/chrono.hpp"
2018-08-09 10:05:48 +00:00
#include "IModule.hpp"
2018-08-08 21:54:58 +00:00
namespace waybar::modules {
2018-08-09 10:05:48 +00:00
class Clock : public IModule {
2018-08-08 21:54:58 +00:00
public:
Clock();
2018-08-09 10:05:48 +00:00
auto update() -> void;
2018-08-08 21:54:58 +00:00
operator Gtk::Widget &();
private:
Gtk::Label _label;
waybar::util::SleeperThread _thread;
};
}