1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-30 07:21:12 +00:00

Merge branch 'qregexp' into 'master'

Simplify regex search in the editor

See merge request OpenMW/openmw!2610
This commit is contained in:
psi29a 2023-01-13 15:55:19 +00:00
commit 203eb80afd

View File

@ -46,22 +46,24 @@ void CSMTools::Search::searchTextCell(const CSMWorld::IdTableBase* model, const
void CSMTools::Search::searchRegExCell(const CSMWorld::IdTableBase* model, const QModelIndex& index,
const CSMWorld::UniversalId& id, bool writable, CSMDoc::Messages& messages) const
{
// TODO: verify regular expression before starting a search
if (!mRegExp.isValid())
return;
QString text = model->data(index).toString();
int pos = 0;
QRegularExpressionMatch match;
while ((match = mRegExp.match(text, pos)).hasMatch())
QRegularExpressionMatchIterator i = mRegExp.globalMatch(text);
while (i.hasNext())
{
pos = match.capturedStart();
QRegularExpressionMatch match = i.next();
int pos = match.capturedStart();
int length = match.capturedLength();
std::ostringstream hint;
hint << (writable ? 'R' : 'r') << ": " << model->getColumnId(index.column()) << " " << pos << " " << length;
messages.add(id, formatDescription(text, pos, length).toUtf8().data(), hint.str());
pos += length;
}
}