Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmlpreviewblacklist.h
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QQMLPREVIEWBLACKLIST_H
5#define QQMLPREVIEWBLACKLIST_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtCore/qhash.h>
19#include <QtCore/qchar.h>
20#include <QtCore/qstring.h>
21#include <algorithm>
22
23QT_BEGIN_NAMESPACE
24
25class QQmlPreviewBlacklist
26{
27public:
28 void blacklist(const QString &path);
29 void whitelist(const QString &path);
30 bool isBlacklisted(const QString &path) const;
31 void clear();
32
33private:
34 class Node {
35 public:
36 enum PrefixResult {
37 MatchedLeaf,
38 MatchedBranch,
39 Unmatched,
40 };
41
42 Node();
43 Node(const Node &other);
44 Node(Node &&other) noexcept;
45
46 ~Node();
47
48 Node &operator=(const Node &other);
49 Node &operator=(Node &&other) noexcept;
50
51 void split(QString::iterator it, QString::iterator end);
52 void insert(const QString &path, int offset);
53 void remove(const QString &path, int offset);
54 PrefixResult findPrefix(const QString &path, int offset) const;
55
56 private:
57 Node(const QString &mine, const QHash<QChar, Node *> &next = QHash<QChar, Node *>(),
58 bool isLeaf = true);
59
60 QString m_mine;
61 QHash<QChar, Node *> m_next;
62 bool m_isLeaf = false;
63 };
64
65 Node m_root;
66};
67
69
70#endif // QQMLPREVIEWBLACKLIST_H
void messageReceived(const QByteArray &message) override
void foundTranslationBinding(const TranslationBindingInformation &translationBindingInformation) override
void engineAboutToBeAdded(QJSEngine *engine) override
void state(const QString &stateName)
void engineAboutToBeRemoved(QJSEngine *engine) override
QMultiMap< QObject *, TranslationBindingInformation > objectTranslationBindingMultiMap
QList< QPointer< QQuickItem > > translatableTextOccurrences
std::unique_ptr< QAbstractFileEngine > create(const QString &fileName) const override
If this file handler can handle fileName, this method creates a file engine and returns it wrapped in...
QQmlPreviewFileLoader(QQmlPreviewServiceImpl *service)
Result load(const QString &file)
bool isBlacklisted(const QString &file)
void whitelist(const QUrl &url)
void dropCU(const QUrl &url)
void zoom(qreal newFactor)
QQuickItem * currentRootItem()
bool eventFilter(QObject *obj, QEvent *event) override
Filters events if this object has been installed as an event filter for the watched object.
void fps(const FpsInfo &info)
void removeEngine(QQmlEngine *engine)
void addEngine(QQmlEngine *engine)
void loadUrl(const QUrl &url)
bool operator==(const QQmlPreviewPosition::ScreenData &other) const
void loadWindowPositionSettings(const QUrl &url)
void takePosition(QWindow *window, InitializeState state=PositionInitialized)
void initLastSavedWindowPosition(QWindow *window)
void forwardRequest(const QString &file)
void drop(const QUrl &url)
void engineAboutToBeRemoved(QJSEngine *engine) override
QQmlPreviewServiceImpl(QObject *parent=nullptr)
void file(const QString &file, const QByteArray &contents)
void directory(const QString &file, const QStringList &entries)
void engineAboutToBeAdded(QJSEngine *engine) override
void forwardFps(const QQmlPreviewHandler::FpsInfo &frames)
void zoom(qreal factor)
static const QString s_key
void load(const QUrl &url)
void stateChanged(State state) override
void forwardError(const QString &error)
void messageReceived(const QByteArray &message) override
QDebug operator<<(QDebug dbg, const QFileInfo &fi)
static QString translationIdString(const QQmlTranslation::QsTrData &data)