1 | // Copyright (C) 2024 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 QQMLASSETDOWNLOADER_P_H |
5 | #define QQMLASSETDOWNLOADER_P_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 <QtExamplesAssetDownloader/assetdownloader.h> |
19 | #include <QtQml/qqml.h> |
20 | |
21 | QT_BEGIN_NAMESPACE |
22 | |
23 | namespace Assets::Downloader { |
24 | |
25 | class AssetDownloaderHelper : public AssetDownloader |
26 | { |
27 | Q_OBJECT |
28 | |
29 | public: |
30 | AssetDownloaderHelper(QObject *parent = nullptr); |
31 | |
32 | protected: |
33 | virtual QUrl resolvedUrl(const QUrl &url) const override; |
34 | }; |
35 | |
36 | struct QQmlAssetDownloader |
37 | { |
38 | Q_GADGET |
39 | QML_FOREIGN(AssetDownloaderHelper) |
40 | QML_NAMED_ELEMENT(AssetDownloader) |
41 | QML_ADDED_IN_VERSION(6, 8) |
42 | |
43 | public: |
44 | static AssetDownloaderHelper *create(QQmlEngine *, QJSEngine *); |
45 | }; |
46 | |
47 | } // namespace Assets::Downloader |
48 | |
49 | QT_END_NAMESPACE |
50 | |
51 | #endif |
52 | |