Merge branch 'qregexp' into 'master'

Simplify regex search in the editor

See merge request OpenMW/openmw!2610
7220-lua-add-a-general-purpose-lexical-parser
psi29a 2 years ago
commit 203eb80afd

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

Loading…
Cancel
Save