mirror-chatterino2/src/singletons/channelmanager.hpp

50 lines
1.2 KiB
C++
Raw Normal View History

#pragma once
2017-04-12 17:46:44 +02:00
2017-06-11 09:31:45 +02:00
#include "channel.hpp"
2017-06-15 23:13:01 +02:00
#include "channeldata.hpp"
#include "twitch/twitchchannel.hpp"
2017-06-15 23:13:01 +02:00
#include <map>
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
class WindowManager;
class IrcManager;
2017-04-12 17:46:44 +02:00
class ChannelManager
{
2017-12-31 00:50:07 +01:00
explicit ChannelManager();
2017-12-31 00:50:07 +01:00
public:
static ChannelManager &getInstance();
const std::vector<std::shared_ptr<Channel>> getItems();
2017-04-12 17:46:44 +02:00
2017-12-31 00:50:07 +01:00
std::shared_ptr<Channel> addTwitchChannel(const QString &channel);
std::shared_ptr<Channel> getTwitchChannel(const QString &channel);
void removeTwitchChannel(const QString &channel);
2017-04-12 17:46:44 +02:00
2017-06-15 23:13:01 +02:00
const std::string &getUserID(const std::string &username);
2017-12-31 00:50:07 +01:00
void doOnAll(std::function<void(std::shared_ptr<Channel>)> func);
2017-07-23 09:53:50 +02:00
// Special channels
2017-12-31 00:50:07 +01:00
const std::shared_ptr<Channel> whispersChannel;
const std::shared_ptr<Channel> mentionsChannel;
const std::shared_ptr<Channel> emptyChannel;
2017-04-12 17:46:44 +02:00
2017-07-23 09:53:50 +02:00
private:
2017-06-15 23:13:01 +02:00
std::map<std::string, std::string> usernameToID;
std::map<std::string, ChannelData> channelDatas;
2017-07-23 09:53:50 +02:00
QMutex channelsMutex;
QMap<QString, std::tuple<std::shared_ptr<twitch::TwitchChannel>, int>> twitchChannels;
2017-12-31 00:50:07 +01:00
pajlada::Signals::Signal<const QString &> ircJoin;
pajlada::Signals::Signal<const QString &> ircPart;
friend class IrcManager;
2017-04-12 17:46:44 +02:00
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino