summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebenginefindtextresult.h
blob: d506a50f5f99a4c3bd9521f827ae712c4b63ab4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QWEBENGINEFINDTEXTRESULT_H
#define QWEBENGINEFINDTEXTRESULT_H

#include <QtWebEngineCore/qtwebenginecoreglobal.h>
#include <QtCore/qobject.h>
#include <QtCore/qshareddata.h>

namespace QtWebEngineCore {
class FindTextHelper;
}

QT_BEGIN_NAMESPACE

class QWebEngineFindTextResultPrivate;

class Q_WEBENGINECORE_EXPORT QWebEngineFindTextResult
{
    Q_GADGET
    Q_PROPERTY(int numberOfMatches READ numberOfMatches CONSTANT FINAL)
    Q_PROPERTY(int activeMatch READ activeMatch CONSTANT FINAL)

public:
    int numberOfMatches() const;
    int activeMatch() const;

    QWebEngineFindTextResult();
    QWebEngineFindTextResult(const QWebEngineFindTextResult &other);
    QWebEngineFindTextResult &operator=(const QWebEngineFindTextResult &other);
    ~QWebEngineFindTextResult();

private:
    QWebEngineFindTextResult(int numberOfMatches, int activeMatch);

    QSharedDataPointer<QWebEngineFindTextResultPrivate> d;

    friend class QtWebEngineCore::FindTextHelper;
};

QT_END_NAMESPACE

Q_DECLARE_METATYPE(QWebEngineFindTextResult)

#endif // QWEBENGINEFINDTEXTRESULT_H