diff options
Diffstat (limited to 'components/channels.hpp')
-rw-r--r-- | components/channels.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/components/channels.hpp b/components/channels.hpp new file mode 100644 index 0000000..0bc1855 --- /dev/null +++ b/components/channels.hpp @@ -0,0 +1,12 @@ +#pragma once +#include <gtkmm.h> + +class ChannelList { +public: + ChannelList(); + Gtk::Widget *GetRoot() const; + +protected: + Gtk::ListBox *m_list; + Gtk::ScrolledWindow *m_main; +}; |