#pragma once #include "DynamicImage.hpp" #include #include #include namespace dchat { class ChatMessage : public Gtk::Grid { public: ChatMessage(const Glib::ustring &username, const Glib::ustring &text, uint32_t timestampSeconds); DynamicImage avatar; Gtk::Label username; Gtk::Label text; uint32_t timestampSeconds; }; }