Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qqmlpreviewfileloader.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 QQMLPREVIEWFILELOADER_H
5#define QQMLPREVIEWFILELOADER_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
19
20#include <QtCore/qobject.h>
21#include <QtCore/qthread.h>
22#include <QtCore/qmutex.h>
23#include <QtCore/qwaitcondition.h>
24#include <QtCore/qvector.h>
25#include <QtCore/qurl.h>
26#include <QtCore/qpointer.h>
27#include <QtCore/qset.h>
28
30
33{
35public:
42
45
46 QMutex *loadMutex() { return &m_loadMutex; }
47 Result load(const QString &file);
48
51
52 void whitelist(const QUrl &url);
53 bool isBlacklisted(const QString &file);
54
56 void request(const QString &file);
57
58private:
59 QMutex m_loadMutex;
60 QMutex m_contentMutex;
61 QWaitCondition m_waitCondition;
62
63 QThread m_thread;
64 QPointer<QQmlPreviewServiceImpl> m_service;
65
66 QString m_path;
67 QByteArray m_contents;
68 QStringList m_entries;
69 Result m_result;
70
71 QQmlPreviewBlacklist m_blacklist;
72 QHash<QString, QByteArray> m_fileCache;
73 QHash<QString, QStringList> m_directoryCache;
74
75 void file(const QString &file, const QByteArray &contents);
76 void directory(const QString &file, const QStringList &entries);
77 void error(const QString &file);
78 void clearCache();
79};
80
82
83#endif // QQMLPREVIEWFILELOADER_H
\inmodule QtCore
Definition qbytearray.h:57
\inmodule QtCore
Definition qmutex.h:281
\inmodule QtCore
Definition qobject.h:103
QQmlPreviewFileLoader(QQmlPreviewServiceImpl *service)
Result load(const QString &file)
bool isBlacklisted(const QString &file)
void whitelist(const QUrl &url)
void request(const QString &file)
\inmodule QtCore
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:129
\inmodule QtCore
Definition qurl.h:94
Combined button and popup list for selecting options.
DBusConnection const char DBusError * error
#define Q_OBJECT
#define Q_SIGNALS
QFile file
[0]
QUrl url("example.com")
[constructor-url-reference]