diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-10-16 21:31:28 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-10-16 21:31:28 -0400 |
commit | 3e0cd83dd6026dc701c548dc40b41f5accbc29db (patch) | |
tree | 6a51464a60c7fe5947924f486d256f99475228fe /src/components/channellist/classic/guildlistfolderitem.hpp | |
parent | 1895a8f133e070f63680eacbaffaecf192bd608b (diff) | |
download | abaddon-portaudio-3e0cd83dd6026dc701c548dc40b41f5accbc29db.tar.gz abaddon-portaudio-3e0cd83dd6026dc701c548dc40b41f5accbc29db.zip |
start channel list refactor for server list
Diffstat (limited to 'src/components/channellist/classic/guildlistfolderitem.hpp')
-rw-r--r-- | src/components/channellist/classic/guildlistfolderitem.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/channellist/classic/guildlistfolderitem.hpp b/src/components/channellist/classic/guildlistfolderitem.hpp new file mode 100644 index 0000000..3506969 --- /dev/null +++ b/src/components/channellist/classic/guildlistfolderitem.hpp @@ -0,0 +1,18 @@ +#pragma once +#include <gtkmm/box.h> +#include <gtkmm/eventbox.h> +#include <gtkmm/image.h> +#include <gtkmm/revealer.h> + +#include "guildlistguilditem.hpp" + +class GuildListFolderItem : public Gtk::VBox { +public: + GuildListFolderItem(); + +private: + Gtk::EventBox m_ev; + Gtk::Image m_image; + Gtk::Revealer m_revealer; + Gtk::VBox m_box; +}; |