mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
emotedata
This commit is contained in:
parent
f00d3da537
commit
e7f2f39737
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "Application.hpp"
|
||||||
#include "common/SerializeCustom.hpp"
|
#include "common/SerializeCustom.hpp"
|
||||||
|
#include "controllers/accounts/AccountController.hpp"
|
||||||
#include "singletons/Settings.hpp"
|
#include "singletons/Settings.hpp"
|
||||||
#include "util/RapidjsonHelpers.hpp"
|
#include "util/RapidjsonHelpers.hpp"
|
||||||
|
|
||||||
|
@ -38,6 +40,11 @@ public:
|
||||||
regex_.setPatternOptions(QRegularExpression::CaseInsensitiveOption |
|
regex_.setPatternOptions(QRegularExpression::CaseInsensitiveOption |
|
||||||
QRegularExpression::UseUnicodePropertiesOption);
|
QRegularExpression::UseUnicodePropertiesOption);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*const auto &accvec = getApp()->accounts->twitch.accounts.getVector();
|
||||||
|
for (const auto &acc : accvec) {
|
||||||
|
//
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString &getPattern() const
|
const QString &getPattern() const
|
||||||
|
@ -94,6 +101,7 @@ private:
|
||||||
bool isBlock_;
|
bool isBlock_;
|
||||||
QString replace_;
|
QString replace_;
|
||||||
bool isCaseSensitive_;
|
bool isCaseSensitive_;
|
||||||
|
std::map<QString, EmoteData> emotes;
|
||||||
};
|
};
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue