diff options
Diffstat (limited to 'windows/profile/userinfopane.hpp')
-rw-r--r-- | windows/profile/userinfopane.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/windows/profile/userinfopane.hpp b/windows/profile/userinfopane.hpp index ae88c70..a93387b 100644 --- a/windows/profile/userinfopane.hpp +++ b/windows/profile/userinfopane.hpp @@ -2,6 +2,18 @@ #include <gtkmm.h> #include "../../discord/objects.hpp" +class ConnectionItem : public Gtk::EventBox { +public: + ConnectionItem(const ConnectionData &connection); + +private: + Gtk::Overlay m_overlay; + Gtk::Box m_box; + Gtk::Label m_name; + Gtk::Image *m_image = nullptr; + Gtk::Image *m_check = nullptr; +}; + class ConnectionsContainer : public Gtk::Grid { public: ConnectionsContainer(); |