Inital commit of the Komplex Hub
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
#include <QtQml/qqmlprivate.h>
|
||||
#include <QtCore/qdir.h>
|
||||
#include <QtCore/qurl.h>
|
||||
#include <QtCore/qhash.h>
|
||||
#include <QtCore/qstring.h>
|
||||
|
||||
namespace QmlCacheGeneratedCode {
|
||||
namespace _qt_qml_KomplexHub_Constants_qml {
|
||||
extern const unsigned char qmlData[];
|
||||
extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
|
||||
const QQmlPrivate::CachedQmlUnit unit = {
|
||||
reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
|
||||
};
|
||||
}
|
||||
namespace _qt_qml_KomplexHub_EventListModel_qml {
|
||||
extern const unsigned char qmlData[];
|
||||
extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
|
||||
const QQmlPrivate::CachedQmlUnit unit = {
|
||||
reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
|
||||
};
|
||||
}
|
||||
namespace _qt_qml_KomplexHub_EventListSimulator_qml {
|
||||
extern const unsigned char qmlData[];
|
||||
extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
|
||||
const QQmlPrivate::CachedQmlUnit unit = {
|
||||
reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
|
||||
};
|
||||
}
|
||||
namespace _qt_qml_KomplexHub_WallpaperModelData_qml {
|
||||
extern const unsigned char qmlData[];
|
||||
extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
|
||||
const QQmlPrivate::CachedQmlUnit unit = {
|
||||
reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
namespace {
|
||||
struct Registry {
|
||||
Registry();
|
||||
~Registry();
|
||||
QHash<QString, const QQmlPrivate::CachedQmlUnit*> resourcePathToCachedUnit;
|
||||
static const QQmlPrivate::CachedQmlUnit *lookupCachedUnit(const QUrl &url);
|
||||
};
|
||||
|
||||
Q_GLOBAL_STATIC(Registry, unitRegistry)
|
||||
|
||||
|
||||
Registry::Registry() {
|
||||
resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/KomplexHub/Constants.qml"), &QmlCacheGeneratedCode::_qt_qml_KomplexHub_Constants_qml::unit);
|
||||
resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/KomplexHub/EventListModel.qml"), &QmlCacheGeneratedCode::_qt_qml_KomplexHub_EventListModel_qml::unit);
|
||||
resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/KomplexHub/EventListSimulator.qml"), &QmlCacheGeneratedCode::_qt_qml_KomplexHub_EventListSimulator_qml::unit);
|
||||
resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/KomplexHub/WallpaperModelData.qml"), &QmlCacheGeneratedCode::_qt_qml_KomplexHub_WallpaperModelData_qml::unit);
|
||||
QQmlPrivate::RegisterQmlUnitCacheHook registration;
|
||||
registration.structVersion = 0;
|
||||
registration.lookupCachedQmlUnit = &lookupCachedUnit;
|
||||
QQmlPrivate::qmlregister(QQmlPrivate::QmlUnitCacheHookRegistration, ®istration);
|
||||
}
|
||||
|
||||
Registry::~Registry() {
|
||||
QQmlPrivate::qmlunregister(QQmlPrivate::QmlUnitCacheHookRegistration, quintptr(&lookupCachedUnit));
|
||||
}
|
||||
|
||||
const QQmlPrivate::CachedQmlUnit *Registry::lookupCachedUnit(const QUrl &url) {
|
||||
if (url.scheme() != QLatin1String("qrc"))
|
||||
return nullptr;
|
||||
QString resourcePath = QDir::cleanPath(url.path());
|
||||
if (resourcePath.isEmpty())
|
||||
return nullptr;
|
||||
if (!resourcePath.startsWith(QLatin1Char('/')))
|
||||
resourcePath.prepend(QLatin1Char('/'));
|
||||
return unitRegistry()->resourcePathToCachedUnit.value(resourcePath, nullptr);
|
||||
}
|
||||
}
|
||||
int QT_MANGLE_NAMESPACE(qInitResources_qmlcache_KomplexHubModule)() {
|
||||
::unitRegistry();
|
||||
return 1;
|
||||
}
|
||||
Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_qmlcache_KomplexHubModule))
|
||||
int QT_MANGLE_NAMESPACE(qCleanupResources_qmlcache_KomplexHubModule)() {
|
||||
return 1;
|
||||
}
|
||||
Reference in New Issue
Block a user