2021-08-02 17:24:11 +08:00
|
|
|
#ifndef SYNSEARCHBASE_H
|
|
|
|
#define SYNSEARCHBASE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
enum SynSearchOption {
|
2021-08-03 23:55:57 +08:00
|
|
|
ssoMatchCase = 0x0001,
|
|
|
|
ssoWholeWord = 0x0002,
|
|
|
|
ssoBackwards = 0x0004,
|
|
|
|
ssoEntireScope = 0x0008,
|
|
|
|
ssoSelectedOnly = 0x0010,
|
|
|
|
ssoRegExp = 0x0080
|
|
|
|
};
|
2021-08-02 17:24:11 +08:00
|
|
|
|
|
|
|
Q_DECLARE_FLAGS(SynSearchOptions, SynSearchOption)
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(SynSearchOptions)
|
|
|
|
|
|
|
|
class SynSearchBase : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SynSearchBase(QObject *parent = nullptr);
|
|
|
|
QString pattern();
|
|
|
|
virtual void setPattern(const QString& value);
|
|
|
|
virtual int length(int aIndex) = 0;
|
|
|
|
virtual int result(int aIndex) = 0;
|
|
|
|
virtual int resultCount() = 0;
|
|
|
|
virtual int findAll(const QString& newText) = 0;
|
|
|
|
virtual QString replace(const QString& aOccurrence, const QString& aReplacement) = 0;
|
|
|
|
SynSearchOptions options() const;
|
|
|
|
virtual void setOptions(const SynSearchOptions &options);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString mPattern;
|
|
|
|
SynSearchOptions mOptions;
|
|
|
|
};
|
|
|
|
|
|
|
|
using PSynSearchBase = std::shared_ptr<SynSearchBase>;
|
|
|
|
|
|
|
|
#endif // SYNSEARCHBASE_H
|