mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
43 lines
857 B
C++
43 lines
857 B
C++
#ifndef EMOJIS_H
|
|
#define EMOJIS_H
|
|
|
|
#include <QObject>
|
|
#include <QRegularExpression>
|
|
#include <QString>
|
|
#include <unordered_map>
|
|
|
|
#include "concurrentmap.h"
|
|
#include "lazyloadedimage.h"
|
|
|
|
class Emojis
|
|
{
|
|
public:
|
|
static void parseEmojis(
|
|
std::vector<std::tuple<LazyLoadedImage *, QString>> &vector,
|
|
const QString &text);
|
|
|
|
static void loadEmojis();
|
|
|
|
static QString replaceShortCodes(const QString &text);
|
|
|
|
struct EmojiData {
|
|
QString value;
|
|
QString code;
|
|
};
|
|
|
|
private:
|
|
static QRegularExpression *findShortCodesRegex;
|
|
|
|
static QMap<QString, EmojiData> *shortCodeToEmoji;
|
|
static QMap<QString, QString> *emojiToShortCode;
|
|
static QMap<QChar, QMap<QString, QString>> *firstEmojiChars;
|
|
|
|
static ConcurrentMap<QString, LazyLoadedImage *> *imageCache;
|
|
|
|
Emojis()
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif // EMOJIS_H
|