mirror-chatterino2/src/channel.hpp

82 lines
2 KiB
C++
Raw Normal View History

#pragma once
2017-06-11 09:31:45 +02:00
#include "concurrentmap.hpp"
#include "emotemanager.hpp"
2017-06-11 09:31:45 +02:00
#include "logging/loggingchannel.hpp"
#include "messages/lazyloadedimage.hpp"
#include "messages/limitedqueue.hpp"
2017-01-07 20:43:55 +01:00
#include <QMap>
#include <QMutex>
2017-01-11 18:52:09 +01:00
#include <QString>
2017-01-07 20:43:55 +01:00
#include <QVector>
2017-02-02 20:35:12 +01:00
#include <boost/signals2.hpp>
2017-01-11 01:08:20 +01:00
#include <memory>
2017-01-05 16:07:20 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace messages {
2017-01-05 16:07:20 +01:00
class Message;
2017-01-18 21:30:23 +01:00
}
class WindowManager;
class IrcManager;
2017-04-12 17:46:44 +02:00
class Channel
{
public:
explicit Channel(WindowManager &_windowManager, EmoteManager &_emoteManager,
IrcManager &_ircManager, const QString &channel, bool isSpecial = false);
2017-01-07 20:43:55 +01:00
2017-04-12 17:46:44 +02:00
boost::signals2::signal<void(messages::SharedMessage &)> messageRemovedFromStart;
boost::signals2::signal<void(messages::SharedMessage &)> messageAppended;
2017-02-02 20:35:12 +01:00
2017-01-07 20:43:55 +01:00
// properties
EmoteManager::EmoteMap &getBTTVChannelEmotes();
EmoteManager::EmoteMap &getFFZChannelEmotes();
2017-04-12 17:46:44 +02:00
bool isEmpty() const;
const QString &getName() const;
const QString &getSubLink() const;
const QString &getChannelLink() const;
const QString &getPopoutPlayerLink() const;
bool getIsLive() const;
int getStreamViewerCount() const;
const QString &getStreamStatus() const;
const QString &getStreamGame() const;
messages::LimitedQueueSnapshot<messages::SharedMessage> getMessageSnapshot();
2017-01-05 20:49:33 +01:00
2017-01-07 20:43:55 +01:00
// methods
2017-04-12 17:46:44 +02:00
void addMessage(messages::SharedMessage message);
void reloadChannelEmotes();
2017-01-26 17:26:20 +01:00
void sendMessage(const QString &message);
std::string roomID;
private:
WindowManager &windowManager;
EmoteManager &emoteManager;
IrcManager &ircManager;
2017-04-12 17:46:44 +02:00
// variabeles
messages::LimitedQueue<messages::SharedMessage> _messages;
2017-04-12 17:46:44 +02:00
QString _name;
EmoteManager::EmoteMap &bttvChannelEmotes;
EmoteManager::EmoteMap &ffzChannelEmotes;
2017-01-13 18:59:11 +01:00
2017-04-12 17:46:44 +02:00
QString _subLink;
QString _channelLink;
QString _popoutPlayerLink;
2017-04-12 17:46:44 +02:00
bool _isLive;
int _streamViewerCount;
QString _streamStatus;
QString _streamGame;
// std::shared_ptr<logging::Channel> _loggingChannel;
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino