basic Qt application, with dual screen capability, and sway config to auto-assign

This commit is contained in:
2026-08-07 00:24:58 -05:00
parent a50800dc8c
commit 07dfd7d3f4
74 changed files with 126091 additions and 0 deletions
@@ -0,0 +1,58 @@
#include <QtQml/qqmlprivate.h>
#include <QtCore/qdir.h>
#include <QtCore/qurl.h>
#include <QtCore/qhash.h>
#include <QtCore/qstring.h>
namespace QmlCacheGeneratedCode {
namespace _nomad_qml_Main_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("/nomad/qml/Main.qml"), &QmlCacheGeneratedCode::_nomad_qml_Main_qml::unit);
QQmlPrivate::RegisterQmlUnitCacheHook registration;
registration.structVersion = 0;
registration.lookupCachedQmlUnit = &lookupCachedUnit;
QQmlPrivate::qmlregister(QQmlPrivate::QmlUnitCacheHookRegistration, &registration);
}
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_nomad_shell)() {
::unitRegistry();
return 1;
}
Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_qmlcache_nomad_shell))
int QT_MANGLE_NAMESPACE(qCleanupResources_qmlcache_nomad_shell)() {
return 1;
}