mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
33 lines
870 B
C++
33 lines
870 B
C++
#include "IgnoreModel.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "singletons/Settings.hpp"
|
|
#include "util/StandardItemHelper.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
// commandmodel
|
|
IgnoreModel::IgnoreModel(QObject *parent)
|
|
: SignalVectorModel<IgnorePhrase>(2, parent)
|
|
{
|
|
}
|
|
|
|
// turn a vector item into a model row
|
|
IgnorePhrase IgnoreModel::getItemFromRow(std::vector<QStandardItem *> &row,
|
|
const IgnorePhrase &original)
|
|
{
|
|
// key, regex
|
|
|
|
return IgnorePhrase{row[0]->data(Qt::DisplayRole).toString(),
|
|
row[1]->data(Qt::CheckStateRole).toBool()};
|
|
}
|
|
|
|
// turns a row in the model into a vector item
|
|
void IgnoreModel::getRowFromItem(const IgnorePhrase &item, std::vector<QStandardItem *> &row)
|
|
{
|
|
setStringItem(row[0], item.getPattern());
|
|
setBoolItem(row[1], item.isRegex());
|
|
}
|
|
|
|
} // namespace chatterino
|