#pragma once #include #include #include "discord/snowflake.hpp" class MentionOverlay : public Gtk::DrawingArea { public: MentionOverlay(Snowflake guild_id); private: bool OnDraw(const Cairo::RefPtr &cr); Snowflake m_guild_id; Pango::FontDescription m_font; Glib::RefPtr m_layout; };