2018-05-13 19:24:32 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 17:20:03 +02:00
|
|
|
#include "common/SignalVector2.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "controllers/ignores/IgnorePhrase.hpp"
|
|
|
|
#include "singletons/SettingsManager.hpp"
|
2018-05-13 19:24:32 +02:00
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
class IgnoreModel;
|
|
|
|
|
|
|
|
class IgnoreController
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void initialize();
|
|
|
|
|
2018-06-26 17:06:17 +02:00
|
|
|
UnsortedSignalVector<IgnorePhrase> phrases;
|
2018-05-13 19:24:32 +02:00
|
|
|
|
|
|
|
IgnoreModel *createModel(QObject *parent);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool initialized = false;
|
|
|
|
|
2018-06-28 19:38:57 +02:00
|
|
|
ChatterinoSetting<std::vector<IgnorePhrase>> ignoresSetting = {"/ignore/phrases"};
|
2018-05-13 19:24:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace chatterino
|