53 lines
1.0 KiB
C++
53 lines
1.0 KiB
C++
|
#include "Search.h"
|
||
|
|
||
|
SynSearch::SynSearch(QObject *parent):SynSearchBase(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
int SynSearch::length(int aIndex)
|
||
|
{
|
||
|
if (aIndex<0 || aIndex >= mResults.length())
|
||
|
return 0;
|
||
|
return pattern().length();
|
||
|
}
|
||
|
|
||
|
int SynSearch::result(int aIndex)
|
||
|
{
|
||
|
if (aIndex<0 || aIndex >= mResults.length())
|
||
|
return -1;
|
||
|
return mResults[aIndex];
|
||
|
}
|
||
|
|
||
|
int SynSearch::resultCount()
|
||
|
{
|
||
|
return mResults.count();
|
||
|
}
|
||
|
|
||
|
int SynSearch::findAll(const QString &newText)
|
||
|
{
|
||
|
mResults.clear();
|
||
|
if (pattern().isEmpty())
|
||
|
return 0;
|
||
|
int start=0;
|
||
|
int next=-1;
|
||
|
while (true) {
|
||
|
if (options.testFlag(ssoMatchCase)) {
|
||
|
next = newText.indexOf(pattern(),start,Qt::CaseSensitive);
|
||
|
} else {
|
||
|
next = newText.indexOf(pattern(),start,Qt::CaseInsensitive);
|
||
|
}
|
||
|
if (next<0) {
|
||
|
break;
|
||
|
}
|
||
|
mResults.append(next);
|
||
|
start = next;
|
||
|
}
|
||
|
return mResults.size();
|
||
|
}
|
||
|
|
||
|
QString SynSearch::replace(const QString &aOccurrence, const QString &aReplacement)
|
||
|
{
|
||
|
return aReplacement;
|
||
|
}
|