2019-02-26 21:00:57 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "TwitchChannel.hpp"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
class ChatroomChannel : public TwitchChannel
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
explicit ChatroomChannel(const QString &channelName,
|
|
|
|
TwitchBadges &globalTwitchBadges,
|
|
|
|
BttvEmotes &globalBttv, FfzEmotes &globalFfz);
|
2019-08-27 20:45:55 +02:00
|
|
|
virtual void refreshBTTVChannelEmotes() override;
|
|
|
|
virtual void refreshFFZChannelEmotes() override;
|
2019-03-01 21:18:32 +01:00
|
|
|
virtual const QString &getDisplayName() const override;
|
2019-02-26 21:00:57 +01:00
|
|
|
|
|
|
|
QString chatroomOwnerId;
|
2019-03-01 21:18:32 +01:00
|
|
|
QString chatroomOwnerName;
|
2019-02-26 21:00:57 +01:00
|
|
|
|
2019-09-15 13:02:02 +02:00
|
|
|
friend class TwitchIrcServer;
|
2019-02-26 21:00:57 +01:00
|
|
|
friend class TwitchMessageBuilder;
|
|
|
|
friend class IrcMessageHandler;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chatterino
|