connect and heartbeat

This commit is contained in:
ouwou
2020-08-17 02:40:03 -04:00
parent 212511e29d
commit 18af78e6af
14 changed files with 653 additions and 0 deletions

12
components/channels.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "channels.hpp"
ChannelList::ChannelList() {
m_main = Gtk::manage(new Gtk::ScrolledWindow);
m_list = Gtk::manage(new Gtk::ListBox);
m_main->add(*m_list);
}
Gtk::Widget* ChannelList::GetRoot() const {
return m_main;
}