2018-08-11 12:47:03 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Application.hpp"
|
|
|
|
#include "common/Singleton.hpp"
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
2018-08-12 18:54:32 +02:00
|
|
|
enum class Platform : uint8_t;
|
|
|
|
|
2019-04-27 13:47:13 +02:00
|
|
|
enum class ToastReactions {
|
2019-04-27 18:15:41 +02:00
|
|
|
OpenInBrowser = 0,
|
|
|
|
OpenInPlayer = 1,
|
|
|
|
OpenInStreamlink = 2,
|
|
|
|
DontOpen = 3
|
2019-04-27 13:47:13 +02:00
|
|
|
};
|
|
|
|
|
2018-08-11 12:47:03 +02:00
|
|
|
class Toasts final : public Singleton
|
|
|
|
{
|
|
|
|
public:
|
2018-08-12 18:54:32 +02:00
|
|
|
void sendChannelNotification(const QString &channelName, Platform p);
|
2019-04-27 13:47:13 +02:00
|
|
|
static QString findStringFromReaction(const ToastReactions &reaction);
|
2019-04-27 18:15:41 +02:00
|
|
|
static QString findStringFromReaction(
|
|
|
|
const pajlada::Settings::Setting<int> &reaction);
|
2019-04-27 13:47:13 +02:00
|
|
|
static std::map<ToastReactions, QString> reactionToString;
|
2018-08-12 20:21:21 +02:00
|
|
|
|
2018-08-12 18:54:32 +02:00
|
|
|
static bool isEnabled();
|
2018-08-11 16:11:51 +02:00
|
|
|
|
|
|
|
private:
|
2018-09-01 13:01:54 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2018-08-12 18:54:32 +02:00
|
|
|
void sendWindowsNotification(const QString &channelName, Platform p);
|
2018-09-01 13:01:54 +02:00
|
|
|
#endif
|
2019-04-27 13:47:13 +02:00
|
|
|
|
2018-08-19 15:09:00 +02:00
|
|
|
static void fetchChannelAvatar(
|
|
|
|
const QString channelName,
|
|
|
|
std::function<void(QString)> successCallback);
|
2018-08-11 12:47:03 +02:00
|
|
|
};
|
|
|
|
} // namespace chatterino
|