summaryrefslogtreecommitdiff
path: root/components/chatinputindicator.hpp
blob: ec70dfbdb2e0bf40bcfd867a5d41328831726934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once
#include <gtkmm.h>
#include <unordered_map>
#include "discord/message.hpp"
#include "discord/user.hpp"

class ChatInputIndicator : public Gtk::Box {
public:
    ChatInputIndicator();
    void SetActiveChannel(Snowflake id);
    void SetCustomMarkup(const Glib::ustring &str);
    void ClearCustom();

private:
    void AddUser(Snowflake channel_id, const UserData &user, int timeout);
    void OnUserTypingStart(Snowflake user_id, Snowflake channel_id);
    void OnMessageCreate(const Message &message);
    void SetTypingString(const Glib::ustring &str);
    void ComputeTypingString();

    Gtk::Image m_img;
    Gtk::Label m_label;

    Glib::ustring m_custom_markup;

    Snowflake m_active_channel;
    std::unordered_map<Snowflake, std::unordered_map<Snowflake, sigc::connection>> m_typers; // channel id -> [user id -> connection]
};