mirror-chatterino2/src/controllers/highlights/HighlightController.cpp

45 lines
1 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "HighlightController.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
#include "controllers/highlights/HighlightModel.hpp"
2018-06-26 15:11:45 +02:00
#include "widgets/dialogs/NotificationPopup.hpp"
namespace chatterino {
HighlightController::HighlightController()
{
}
void HighlightController::initialize()
{
assert(!this->initialized);
this->initialized = true;
for (const HighlightPhrase &phrase : this->highlightsSetting.getValue()) {
this->phrases.appendItem(phrase);
}
this->phrases.delayedItemsChanged.connect([this] { //
this->highlightsSetting.setValue(this->phrases.getVector());
});
}
HighlightModel *HighlightController::createModel(QObject *parent)
{
HighlightModel *model = new HighlightModel(parent);
model->init(&this->phrases);
return model;
}
2018-06-26 17:06:17 +02:00
void HighlightController::addHighlight(const chatterino::MessagePtr &msg)
2018-05-23 22:27:29 +02:00
{
2018-06-26 17:06:17 +02:00
// static NotificationPopup popup;
2018-05-23 22:27:29 +02:00
// popup.updatePosition();
// popup.addMessage(msg);
// popup.show();
}
} // namespace chatterino