#pragma once #include #include #include namespace dchat { class WindowNotification : public Gtk::Overlay { public: WindowNotification(); void show(const Glib::ustring &text); private: Gtk::Revealer revealer; Gtk::Label label; sigc::connection hideTimer; sigc::connection visibilityTimer; }; }