#pragma once #include "ImageButton.hpp" #include #include #include namespace dchat { class Topbar : public Gtk::Grid { public: Topbar(); void setTitle(const Glib::ustring &title); ImageButton roomSettingsButton; ImageButton roomNotificationsButton; private: Gtk::SearchEntry topbarSearchBar; Gtk::Label currentRoomTitle; }; }