summaryrefslogtreecommitdiff
path: root/components/chatwindow.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-01-11 18:27:46 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2021-01-11 18:27:46 -0500
commite8cbb9d3d1ecca25f1e0a31a75fac70c7a3ea0cb (patch)
treeecb21c74221f320422ff2390c940b921d02331f2 /components/chatwindow.hpp
parentdef598941a74d6960985171ef5f446bdf8858182 (diff)
downloadabaddon-portaudio-e8cbb9d3d1ecca25f1e0a31a75fac70c7a3ea0cb.tar.gz
abaddon-portaudio-e8cbb9d3d1ecca25f1e0a31a75fac70c7a3ea0cb.zip
add typing indicator with optional res/typing_indicator.gif
Diffstat (limited to 'components/chatwindow.hpp')
-rw-r--r--components/chatwindow.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/chatwindow.hpp b/components/chatwindow.hpp
index bac27c0..c1740c4 100644
--- a/components/chatwindow.hpp
+++ b/components/chatwindow.hpp
@@ -6,6 +6,7 @@
#include "chatmessage.hpp"
#include "completer.hpp"
+class TypingIndicator;
class ChatWindow {
public:
ChatWindow();
@@ -47,6 +48,7 @@ protected:
Gtk::ScrolledWindow *m_input_scroll;
Completer m_completer;
+ TypingIndicator *m_typing_indicator;
public:
typedef sigc::signal<void, Snowflake, Snowflake> type_signal_action_message_delete;