Files
bar/include/widgets/clock.hpp

14 lines
230 B
C++

#pragma once
#include <gtk4-layer-shell/gtk4-layer-shell.h>
#include <gtkmm.h>
#include <gtkmm/label.h>
#include "interface/updateable.ipp"
class Clock : public Gtk::Label, public IUpdatable
{
public:
bool onUpdate();
};