diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-08-27 18:50:47 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-08-27 18:50:47 -0400 |
commit | 34b572db40a096aa7f411f837d7ae6884209a3f6 (patch) | |
tree | 67c4f48b6d3ffc0af288725be78cd4b50a7fb8a1 /components/chatwindow.hpp | |
parent | f3e8d1aff329b65f171e9f6f41681eb179b58d4f (diff) | |
download | abaddon-portaudio-34b572db40a096aa7f411f837d7ae6884209a3f6.tar.gz abaddon-portaudio-34b572db40a096aa7f411f837d7ae6884209a3f6.zip |
multiple messages from same author are under the same message block
Diffstat (limited to 'components/chatwindow.hpp')
-rw-r--r-- | components/chatwindow.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/chatwindow.hpp b/components/chatwindow.hpp index d8de505..a758de9 100644 --- a/components/chatwindow.hpp +++ b/components/chatwindow.hpp @@ -22,8 +22,11 @@ protected: void ScrollToBottom(); void SetMessagesInternal(); void AddNewMessageInternal(); + ChatDisplayType GetMessageDisplayType(const MessageData *data); ChatMessageItem *CreateChatEntryComponentText(const MessageData *data); ChatMessageItem *CreateChatEntryComponent(const MessageData *data); + void ProcessMessage(const MessageData *data); + int m_num_rows = 0; // youd think thered be a Gtk::ListBox::get_row_count or something but nope bool on_key_press_event(GdkEventKey *e); |