diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-11 18:27:46 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-11 18:27:46 -0500 |
commit | e8cbb9d3d1ecca25f1e0a31a75fac70c7a3ea0cb (patch) | |
tree | ecb21c74221f320422ff2390c940b921d02331f2 /components/chatwindow.hpp | |
parent | def598941a74d6960985171ef5f446bdf8858182 (diff) | |
download | abaddon-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.hpp | 2 |
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; |