summaryrefslogtreecommitdiff
path: root/components/channels.hpp
blob: 0bc18554a5e489e0453a82f3912a923ed9d04f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <gtkmm.h>

class ChannelList {
public:
    ChannelList();
    Gtk::Widget *GetRoot() const;

protected:
    Gtk::ListBox *m_list;
    Gtk::ScrolledWindow *m_main;
};