summaryrefslogtreecommitdiff
path: root/Applications/IRCClient/IRCQuery.h
blob: 7e733645362928289a7c73dcab2ebd40927e484b (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
29
30
31
32
33
34
35
36
37
38
39
#pragma once

#include <AK/AKString.h>
#include <AK/CircularQueue.h>
#include <AK/Vector.h>
#include <AK/Retainable.h>
#include <AK/RetainPtr.h>
#include "IRCLogBuffer.h"

class IRCClient;
class IRCWindow;

class IRCQuery : public Retainable<IRCQuery> {
public:
    static Retained<IRCQuery> create(IRCClient&, const String& name);
    ~IRCQuery();

    String name() const { return m_name; }
    void add_message(char prefix, const String& name, const String& text);

    void dump() const;

    const IRCLogBuffer& log() const { return *m_log; }
    IRCLogBuffer& log() { return *m_log; }

    void say(const String&);

    IRCWindow& window() { return *m_window; }
    const IRCWindow& window() const { return *m_window; }

private:
    IRCQuery(IRCClient&, const String& name);

    IRCClient& m_client;
    String m_name;
    IRCWindow* m_window { nullptr };

    Retained<IRCLogBuffer> m_log;
};