blob: 06397295e1a9e95833d5a3a8abd1098933c2d952 (
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
|
// Copyright (C) 2016 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
#include "qurlhelper_p.h"
QT_BEGIN_NAMESPACE
namespace Qt3DCore {
QString QUrlHelper::urlToLocalFileOrQrc(const QUrl &url)
{
const QString scheme(url.scheme().toLower());
if (scheme == QLatin1String("qrc")) {
if (url.authority().isEmpty())
return QLatin1Char(':') + url.path();
return QString();
}
#if defined(Q_OS_ANDROID)
if (scheme == QLatin1String("assets")) {
if (url.authority().isEmpty())
return url.toString();
return QString();
}
#endif
return url.toLocalFile();
}
} // Qt3DCore
QT_END_NAMESPACE
|