rudimentary chat

This commit is contained in:
ouwou
2020-08-20 03:19:16 -04:00
parent 4b903bbd3e
commit a201d5905a
14 changed files with 426 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "../components/channels.hpp"
#include "../components/chatwindow.hpp"
#include <gtkmm.h>
class Abaddon;
@@ -10,12 +11,16 @@ public:
void UpdateComponents();
void UpdateChannelListing();
void UpdateChatWindowContents();
void UpdateChatActiveChannel(Snowflake id);
protected:
Gtk::Box m_main_box;
Gtk::Box m_content_box;
Gtk::Paned m_chan_chat_paned;
ChannelList m_channel_list;
ChatWindow m_chat;
Gtk::MenuBar m_menu_bar;
Gtk::MenuItem m_menu_discord;