forked from qt-creator/qt-creator
Revert "QmlDesigner: Add versioning for core modules"
This reverts commit 9e8791a73b
.
Reason for revert: unresolved conflicts
Change-Id: Ia57a1e9e638ec471af89b5c2f326084bdbf369ae
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -43,7 +43,6 @@ public:
|
|||||||
virtual QStringList modulePaths() const = 0;
|
virtual QStringList modulePaths() const = 0;
|
||||||
virtual QStringList projectModulePaths() const = 0;
|
virtual QStringList projectModulePaths() const = 0;
|
||||||
virtual bool isQt6Project() const = 0;
|
virtual bool isQt6Project() const = 0;
|
||||||
virtual QString qtQuickVersion() const = 0;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace QmlDesigner
|
} // namespace QmlDesigner
|
||||||
|
@@ -915,14 +915,11 @@ void TextToModelMerger::setupPossibleImports()
|
|||||||
ModuleScanner moduleScanner{[&](QStringView moduleName) {
|
ModuleScanner moduleScanner{[&](QStringView moduleName) {
|
||||||
return skipModule(moduleName, skipModuleNames);
|
return skipModule(moduleName, skipModuleNames);
|
||||||
},
|
},
|
||||||
VersionScanning::No,
|
VersionScanning::No};
|
||||||
m_rewriterView->externalDependencies()};
|
|
||||||
moduleScanner.scan(m_rewriterView->externalDependencies().modulePaths());
|
moduleScanner.scan(m_rewriterView->externalDependencies().modulePaths());
|
||||||
m_possibleModules = moduleScanner.modules();
|
m_possibleModules = moduleScanner.modules();
|
||||||
} else {
|
} else {
|
||||||
ModuleScanner moduleScanner{[&](QStringView) { return false; },
|
ModuleScanner moduleScanner{[&](QStringView) { return false; }, VersionScanning::Yes};
|
||||||
VersionScanning::Yes,
|
|
||||||
m_rewriterView->externalDependencies()};
|
|
||||||
m_possibleModules = createQt5Modules();
|
m_possibleModules = createQt5Modules();
|
||||||
moduleScanner.scan(externalDependencies.projectModulePaths());
|
moduleScanner.scan(externalDependencies.projectModulePaths());
|
||||||
m_possibleModules.append(moduleScanner.modules());
|
m_possibleModules.append(moduleScanner.modules());
|
||||||
|
@@ -38,26 +38,6 @@ QString createVersion(const QMultiHash<QString, QQmlDirParser::Component> &compo
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
constexpr auto coreModules = std::make_tuple(QStringView{u"QtQuick"},
|
|
||||||
QStringView{u"QtQuick.Controls"},
|
|
||||||
QStringView{u"QtQuick3D"},
|
|
||||||
QStringView{u"QtQuick3D.Helpers"},
|
|
||||||
QStringView{u"QtQuick3D.Particles3D"});
|
|
||||||
|
|
||||||
bool isCoreVersion(QStringView moduleName)
|
|
||||||
{
|
|
||||||
return std::apply([=](auto... coreModuleName) { return ((moduleName == coreModuleName) || ...); },
|
|
||||||
coreModules);
|
|
||||||
}
|
|
||||||
|
|
||||||
QString createCoreVersion(QStringView moduleName, ExternalDependenciesInterface &externalDependencies)
|
|
||||||
{
|
|
||||||
if (isCoreVersion(moduleName))
|
|
||||||
return externalDependencies.qtQuickVersion();
|
|
||||||
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
void ModuleScanner::scan(const QStringList &modulePaths)
|
void ModuleScanner::scan(const QStringList &modulePaths)
|
||||||
@@ -69,9 +49,7 @@ void ModuleScanner::scan(const QStringList &modulePaths)
|
|||||||
void ModuleScanner::scan([[maybe_unused]] std::string_view modulePath)
|
void ModuleScanner::scan([[maybe_unused]] std::string_view modulePath)
|
||||||
{
|
{
|
||||||
#ifdef QDS_HAS_QMLPRIVATE
|
#ifdef QDS_HAS_QMLPRIVATE
|
||||||
QDirIterator dirIterator{QString::fromUtf8(modulePath),
|
QDirIterator dirIterator{QString::fromUtf8(modulePath), QDir::Dirs, QDirIterator::Subdirectories};
|
||||||
QDir::Dirs | QDir::NoDotAndDotDot,
|
|
||||||
QDirIterator::Subdirectories};
|
|
||||||
|
|
||||||
while (dirIterator.hasNext()) {
|
while (dirIterator.hasNext()) {
|
||||||
auto directoryPath = dirIterator.next();
|
auto directoryPath = dirIterator.next();
|
||||||
@@ -92,21 +70,8 @@ void ModuleScanner::scan([[maybe_unused]] std::string_view modulePath)
|
|||||||
if (moduleName.isEmpty() || m_skip(moduleName))
|
if (moduleName.isEmpty() || m_skip(moduleName))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
<<<<<<< HEAD (0d4e8c QmlDesigner: Remove duplicates)
|
|
||||||
m_modules.push_back(
|
m_modules.push_back(
|
||||||
Import::createLibraryImport(moduleName, createVersion(parser.components())));
|
Import::createLibraryImport(moduleName, createVersion(parser.components())));
|
||||||
=======
|
|
||||||
QString version = m_versionScanning == VersionScanning::Yes
|
|
||||||
? createVersion(parser.components())
|
|
||||||
: QString{};
|
|
||||||
|
|
||||||
QString coreModuleVersion = createCoreVersion(moduleName, m_externalDependencies);
|
|
||||||
|
|
||||||
if (!coreModuleVersion.isEmpty())
|
|
||||||
version = coreModuleVersion;
|
|
||||||
|
|
||||||
m_modules.push_back(Import::createLibraryImport(moduleName, version));
|
|
||||||
>>>>>>> CHANGE (de2154 QmlDesigner: Add versioning for core modules)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
#include <qmldesignercorelib_global.h>
|
#include <qmldesignercorelib_global.h>
|
||||||
|
|
||||||
#include <externaldependenciesinterface.h>
|
|
||||||
#include <import.h>
|
#include <import.h>
|
||||||
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
@@ -19,13 +18,10 @@ class QMLDESIGNERCORE_EXPORT ModuleScanner
|
|||||||
public:
|
public:
|
||||||
using SkipFunction = std::function<bool(QStringView)>;
|
using SkipFunction = std::function<bool(QStringView)>;
|
||||||
|
|
||||||
ModuleScanner([[maybe_unused]] SkipFunction skip,
|
ModuleScanner([[maybe_unused]] SkipFunction skip, [[maybe_unused]] VersionScanning versionScanning)
|
||||||
[[maybe_unused]] VersionScanning versionScanning,
|
|
||||||
ExternalDependenciesInterface &externalDependencies)
|
|
||||||
#ifdef QDS_HAS_QMLPRIVATE
|
#ifdef QDS_HAS_QMLPRIVATE
|
||||||
: m_skip{std::move(skip)}
|
: m_skip{std::move(skip)}
|
||||||
, m_versionScanning{versionScanning}
|
, m_versionScanning{versionScanning}
|
||||||
, m_externalDependencies{externalDependencies}
|
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
m_modules.reserve(128);
|
m_modules.reserve(128);
|
||||||
@@ -43,7 +39,6 @@ private:
|
|||||||
#ifdef QDS_HAS_QMLPRIVATE
|
#ifdef QDS_HAS_QMLPRIVATE
|
||||||
SkipFunction m_skip;
|
SkipFunction m_skip;
|
||||||
VersionScanning m_versionScanning;
|
VersionScanning m_versionScanning;
|
||||||
ExternalDependenciesInterface &m_externalDependencies;
|
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -267,11 +267,4 @@ bool ExternalDependencies::isQt6Project() const
|
|||||||
return qmlBuildSystem && qmlBuildSystem->qt6Project();
|
return qmlBuildSystem && qmlBuildSystem->qt6Project();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ExternalDependencies::qtQuickVersion() const
|
|
||||||
{
|
|
||||||
auto [project, target, qmlBuildSystem] = activeProjectEntries();
|
|
||||||
|
|
||||||
return qmlBuildSystem ? qmlBuildSystem->versionQtQuick() : QString{};
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace QmlDesigner
|
} // namespace QmlDesigner
|
||||||
|
@@ -39,7 +39,6 @@ public:
|
|||||||
QStringList modulePaths() const override;
|
QStringList modulePaths() const override;
|
||||||
QStringList projectModulePaths() const override;
|
QStringList projectModulePaths() const override;
|
||||||
bool isQt6Project() const override;
|
bool isQt6Project() const override;
|
||||||
QString qtQuickVersion() const override;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const DesignerSettings &m_designerSettings;
|
const DesignerSettings &m_designerSettings;
|
||||||
|
@@ -163,7 +163,6 @@ public:
|
|||||||
QStringList modulePaths() const override { return {}; }
|
QStringList modulePaths() const override { return {}; }
|
||||||
QStringList projectModulePaths() const override { return {}; }
|
QStringList projectModulePaths() const override { return {}; }
|
||||||
bool isQt6Project() const override { return {}; }
|
bool isQt6Project() const override { return {}; }
|
||||||
QString qtQuickVersion() const override { return {}; }
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QSettings qsettings;
|
QSettings qsettings;
|
||||||
|
@@ -1,4 +0,0 @@
|
|||||||
module QmlTime
|
|
||||||
typeinfo qmltime.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QmlTime/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.animation
|
|
||||||
linktarget Qt6::labsanimationplugin
|
|
||||||
optional plugin labsanimationplugin
|
|
||||||
classname QtLabsAnimationPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/animation/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.folderlistmodel
|
|
||||||
linktarget Qt6::qmlfolderlistmodelplugin
|
|
||||||
optional plugin qmlfolderlistmodelplugin
|
|
||||||
classname QmlFolderListModelPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml.Models auto
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/folderlistmodel/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.lottieqt
|
|
||||||
linktarget Qt6::lottieqtplugin
|
|
||||||
optional plugin lottieqtplugin
|
|
||||||
classname BodymovinPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/lottieqt/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.platform
|
|
||||||
linktarget Qt6::qtlabsplatformplugin
|
|
||||||
optional plugin qtlabsplatformplugin
|
|
||||||
classname QtLabsPlatformPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/platform/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.qmlmodels
|
|
||||||
linktarget Qt6::labsmodelsplugin
|
|
||||||
optional plugin labsmodelsplugin
|
|
||||||
classname QtQmlLabsModelsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml.Models auto
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/qmlmodels/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module Qt.labs.settings
|
|
||||||
linktarget Qt6::qmlsettingsplugin
|
|
||||||
optional plugin qmlsettingsplugin
|
|
||||||
classname QmlSettingsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/settings/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.sharedimage
|
|
||||||
linktarget Qt6::sharedimageplugin
|
|
||||||
plugin sharedimageplugin
|
|
||||||
classname QtQuickSharedImagePlugin
|
|
||||||
static
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/sharedimage/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt.labs.wavefrontmesh
|
|
||||||
linktarget Qt6::qmlwavefrontmeshplugin
|
|
||||||
optional plugin qmlwavefrontmeshplugin
|
|
||||||
classname QmlWavefrontMeshPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/Qt/labs/wavefrontmesh/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module Qt.test.controls
|
|
||||||
linktarget Qt6::QuickControlsTestUtilsPrivateplugin
|
|
||||||
optional plugin quickcontrolstestutilsprivateplugin
|
|
||||||
classname Qt_test_controlsPlugin
|
|
||||||
typeinfo QuickControlsTestUtilsPrivate.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/Qt/test/controls/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module Qt3D.Animation
|
|
||||||
linktarget Qt6::quick3danimationplugin
|
|
||||||
plugin quick3danimationplugin
|
|
||||||
classname Qt3DQuick3DAnimationPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml auto
|
|
||||||
depends Qt3D.Render auto
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Animation/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt3D.Core
|
|
||||||
linktarget Qt6::quick3dcoreplugin
|
|
||||||
plugin quick3dcoreplugin
|
|
||||||
classname Qt3DQuick3DCorePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Core/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module Qt3D.Extras
|
|
||||||
linktarget Qt6::quick3dextrasplugin
|
|
||||||
plugin quick3dextrasplugin
|
|
||||||
classname Qt3DQuick3DExtrasPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
depends Qt3D.Logic auto
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Extras/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt3D.Input
|
|
||||||
linktarget Qt6::quick3dinputplugin
|
|
||||||
plugin quick3dinputplugin
|
|
||||||
classname Qt3DQuick3DInputPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml auto
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Input/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module Qt3D.Logic
|
|
||||||
linktarget Qt6::quick3dlogicplugin
|
|
||||||
plugin quick3dlogicplugin
|
|
||||||
classname Qt3DQuick3DLogicPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Logic/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module Qt3D.Render
|
|
||||||
linktarget Qt6::quick3drenderplugin
|
|
||||||
plugin quick3drenderplugin
|
|
||||||
classname Qt3DQuick3DRenderPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml auto
|
|
||||||
prefer :/qt-project.org/imports/Qt3D/Render/
|
|
||||||
|
|
@@ -1,21 +0,0 @@
|
|||||||
module Qt5Compat.GraphicalEffects.private
|
|
||||||
linktarget Qt6::qtgraphicaleffectsprivate
|
|
||||||
optional plugin qtgraphicaleffectsprivateplugin
|
|
||||||
classname QtGraphicalEffectsPrivatePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/Qt5Compat/GraphicalEffects/private/
|
|
||||||
DropShadowBase 6.0 DropShadowBase.qml
|
|
||||||
DropShadowBase 1.0 DropShadowBase.qml
|
|
||||||
FastGlow 6.0 FastGlow.qml
|
|
||||||
FastGlow 1.0 FastGlow.qml
|
|
||||||
FastInnerShadow 6.0 FastInnerShadow.qml
|
|
||||||
FastInnerShadow 1.0 FastInnerShadow.qml
|
|
||||||
GaussianDirectionalBlur 6.0 GaussianDirectionalBlur.qml
|
|
||||||
GaussianDirectionalBlur 1.0 GaussianDirectionalBlur.qml
|
|
||||||
GaussianGlow 6.0 GaussianGlow.qml
|
|
||||||
GaussianGlow 1.0 GaussianGlow.qml
|
|
||||||
GaussianInnerShadow 6.0 GaussianInnerShadow.qml
|
|
||||||
GaussianInnerShadow 1.0 GaussianInnerShadow.qml
|
|
||||||
GaussianMaskedBlur 6.0 GaussianMaskedBlur.qml
|
|
||||||
GaussianMaskedBlur 1.0 GaussianMaskedBlur.qml
|
|
||||||
|
|
@@ -1,60 +0,0 @@
|
|||||||
module Qt5Compat.GraphicalEffects
|
|
||||||
linktarget Qt6::qtgraphicaleffectsplugin
|
|
||||||
plugin qtgraphicaleffectsplugin
|
|
||||||
classname QtGraphicalEffectsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends Qt5Compat.GraphicalEffects.private
|
|
||||||
depends QtQuick.Window
|
|
||||||
prefer :/qt-project.org/imports/Qt5Compat/GraphicalEffects/
|
|
||||||
Blend 6.0 Blend.qml
|
|
||||||
Blend 1.0 Blend.qml
|
|
||||||
BrightnessContrast 6.0 BrightnessContrast.qml
|
|
||||||
BrightnessContrast 1.0 BrightnessContrast.qml
|
|
||||||
ColorOverlay 6.0 ColorOverlay.qml
|
|
||||||
ColorOverlay 1.0 ColorOverlay.qml
|
|
||||||
Colorize 6.0 Colorize.qml
|
|
||||||
Colorize 1.0 Colorize.qml
|
|
||||||
ConicalGradient 6.0 ConicalGradient.qml
|
|
||||||
ConicalGradient 1.0 ConicalGradient.qml
|
|
||||||
Desaturate 6.0 Desaturate.qml
|
|
||||||
Desaturate 1.0 Desaturate.qml
|
|
||||||
DirectionalBlur 6.0 DirectionalBlur.qml
|
|
||||||
DirectionalBlur 1.0 DirectionalBlur.qml
|
|
||||||
Displace 6.0 Displace.qml
|
|
||||||
Displace 1.0 Displace.qml
|
|
||||||
DropShadow 6.0 DropShadow.qml
|
|
||||||
DropShadow 1.0 DropShadow.qml
|
|
||||||
FastBlur 6.0 FastBlur.qml
|
|
||||||
FastBlur 1.0 FastBlur.qml
|
|
||||||
GammaAdjust 6.0 GammaAdjust.qml
|
|
||||||
GammaAdjust 1.0 GammaAdjust.qml
|
|
||||||
GaussianBlur 6.0 GaussianBlur.qml
|
|
||||||
GaussianBlur 1.0 GaussianBlur.qml
|
|
||||||
Glow 6.0 Glow.qml
|
|
||||||
Glow 1.0 Glow.qml
|
|
||||||
HueSaturation 6.0 HueSaturation.qml
|
|
||||||
HueSaturation 1.0 HueSaturation.qml
|
|
||||||
InnerShadow 6.0 InnerShadow.qml
|
|
||||||
InnerShadow 1.0 InnerShadow.qml
|
|
||||||
LevelAdjust 6.0 LevelAdjust.qml
|
|
||||||
LevelAdjust 1.0 LevelAdjust.qml
|
|
||||||
LinearGradient 6.0 LinearGradient.qml
|
|
||||||
LinearGradient 1.0 LinearGradient.qml
|
|
||||||
MaskedBlur 6.0 MaskedBlur.qml
|
|
||||||
MaskedBlur 1.0 MaskedBlur.qml
|
|
||||||
OpacityMask 6.0 OpacityMask.qml
|
|
||||||
OpacityMask 1.0 OpacityMask.qml
|
|
||||||
RadialBlur 6.0 RadialBlur.qml
|
|
||||||
RadialBlur 1.0 RadialBlur.qml
|
|
||||||
RadialGradient 6.0 RadialGradient.qml
|
|
||||||
RadialGradient 1.0 RadialGradient.qml
|
|
||||||
RectangularGlow 6.0 RectangularGlow.qml
|
|
||||||
RectangularGlow 1.0 RectangularGlow.qml
|
|
||||||
RecursiveBlur 6.0 RecursiveBlur.qml
|
|
||||||
RecursiveBlur 1.0 RecursiveBlur.qml
|
|
||||||
ThresholdMask 6.0 ThresholdMask.qml
|
|
||||||
ThresholdMask 1.0 ThresholdMask.qml
|
|
||||||
ZoomBlur 6.0 ZoomBlur.qml
|
|
||||||
ZoomBlur 1.0 ZoomBlur.qml
|
|
||||||
|
|
@@ -1 +0,0 @@
|
|||||||
typeinfo plugins.qmltypes
|
|
@@ -1 +0,0 @@
|
|||||||
typeinfo plugins.qmltypes
|
|
@@ -1 +0,0 @@
|
|||||||
typeinfo plugins.qmltypes
|
|
@@ -1,10 +0,0 @@
|
|||||||
module QtCharts
|
|
||||||
linktarget Qt6::qtchartsqml2
|
|
||||||
optional plugin qtchartsqml2plugin
|
|
||||||
classname QtChartsQml2Plugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
depends QtCharts
|
|
||||||
prefer :/qt-project.org/imports/QtCharts/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtCore
|
|
||||||
linktarget Qt6::qtqmlcoreplugin
|
|
||||||
optional plugin qtqmlcoreplugin
|
|
||||||
classname QtQmlCorePlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml auto
|
|
||||||
prefer :/qt-project.org/imports/QtCore/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtDataVisualization
|
|
||||||
linktarget Qt6::DataVisualizationQmlplugin
|
|
||||||
optional plugin datavisualizationqmlplugin
|
|
||||||
classname QtDataVisualizationPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/QtDataVisualization/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtInsightTracker
|
|
||||||
linktarget Qt6::InsightTrackerQmlplugin
|
|
||||||
optional plugin insighttrackerqmlplugin
|
|
||||||
classname QtInsightTrackerPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtInsightTracker/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtInterfaceFramework.Media
|
|
||||||
linktarget Qt6::IfMediaplugin
|
|
||||||
optional plugin ifmediaplugin
|
|
||||||
classname QIfMediaPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtInterfaceFramework auto
|
|
||||||
prefer :/qt-project.org/imports/QtInterfaceFramework/Media/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtInterfaceFramework.VehicleFunctions
|
|
||||||
linktarget Qt6::qtifvehiclefunctionsplugin
|
|
||||||
optional plugin qtifvehiclefunctionsplugin
|
|
||||||
classname QtIfVehicleFunctionsPlugin
|
|
||||||
typeinfo IfVehicleFunctions.qmltypes
|
|
||||||
import QtInterfaceFramework auto
|
|
||||||
prefer :/qt-project.org/imports/QtInterfaceFramework/VehicleFunctions/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtInterfaceFramework
|
|
||||||
linktarget Qt6::InterfaceFrameworkplugin
|
|
||||||
optional plugin interfaceframeworkplugin
|
|
||||||
classname QtInterfaceFrameworkPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtInterfaceFramework/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtLocation
|
|
||||||
linktarget Qt6::declarative_location
|
|
||||||
plugin declarative_locationplugin
|
|
||||||
classname QtLocationDeclarativeModule
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtLocation/
|
|
||||||
MapView 6.0 MapView.qml
|
|
||||||
|
|
@@ -1,10 +0,0 @@
|
|||||||
module QtMultimedia
|
|
||||||
linktarget Qt6::quickmultimedia
|
|
||||||
plugin quickmultimediaplugin
|
|
||||||
classname QMultimediaQuickModule
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/QtMultimedia/
|
|
||||||
Video 6.0 Video.qml
|
|
||||||
Video 5.0 Video.qml
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtOpcUa
|
|
||||||
linktarget Qt6::DeclarativeOpcuaplugin
|
|
||||||
optional plugin declarativeopcuaplugin
|
|
||||||
classname QtOpcUaPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/QtOpcUa/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtPositioning
|
|
||||||
linktarget Qt6::positioningquickplugin
|
|
||||||
plugin positioningquickplugin
|
|
||||||
classname QtPositioningDeclarativeModule
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtPositioning/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQml.Base
|
|
||||||
linktarget Qt6::qmlplugin
|
|
||||||
optional plugin qmlplugin
|
|
||||||
classname QtQmlPlugin
|
|
||||||
designersupported
|
|
||||||
system
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQml/Base/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQml.Models
|
|
||||||
linktarget Qt6::modelsplugin
|
|
||||||
optional plugin modelsplugin
|
|
||||||
classname QtQmlModelsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml.Base auto
|
|
||||||
prefer :/qt-project.org/imports/QtQml/Models/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQml.StateMachine
|
|
||||||
linktarget Qt6::qtqmlstatemachine
|
|
||||||
optional plugin qtqmlstatemachineplugin
|
|
||||||
classname QtQmlStateMachinePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml
|
|
||||||
prefer :/qt-project.org/imports/QtQml/StateMachine/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQml.WorkerScript
|
|
||||||
linktarget Qt6::workerscriptplugin
|
|
||||||
optional plugin workerscriptplugin
|
|
||||||
classname QtQmlWorkerScriptPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml.Base auto
|
|
||||||
prefer :/qt-project.org/imports/QtQml/WorkerScript/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQml.XmlListModel
|
|
||||||
linktarget Qt6::qmlxmllistmodelplugin
|
|
||||||
optional plugin qmlxmllistmodelplugin
|
|
||||||
classname QtQmlXmlListModelPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml auto
|
|
||||||
prefer :/qt-project.org/imports/QtQml/XmlListModel/
|
|
||||||
|
|
@@ -1,10 +0,0 @@
|
|||||||
module QtQml
|
|
||||||
linktarget Qt6::QmlMeta
|
|
||||||
optional plugin qmlmetaplugin
|
|
||||||
classname QtQmlMetaPlugin
|
|
||||||
designersupported
|
|
||||||
import QtQml.Base auto
|
|
||||||
import QtQml.Models auto
|
|
||||||
import QtQml.WorkerScript auto
|
|
||||||
prefer :/qt-project.org/imports/QtQml/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.Controls.Basic.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2basicstyleimplplugin
|
|
||||||
plugin qtquickcontrols2basicstyleimplplugin
|
|
||||||
classname QtQuickControls2BasicStyleImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Basic/impl/
|
|
||||||
|
|
@@ -1,131 +0,0 @@
|
|||||||
module QtQuick.Controls.Basic
|
|
||||||
linktarget Qt6::qtquickcontrols2basicstyleplugin
|
|
||||||
plugin qtquickcontrols2basicstyleplugin
|
|
||||||
classname QtQuickControls2BasicStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.Controls.impl auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Basic/
|
|
||||||
AbstractButton 6.0 AbstractButton.qml
|
|
||||||
AbstractButton 2.0 AbstractButton.qml
|
|
||||||
Action 2.3 Action.qml
|
|
||||||
Action 6.0 Action.qml
|
|
||||||
ActionGroup 2.3 ActionGroup.qml
|
|
||||||
ActionGroup 6.0 ActionGroup.qml
|
|
||||||
ApplicationWindow 6.0 ApplicationWindow.qml
|
|
||||||
ApplicationWindow 2.0 ApplicationWindow.qml
|
|
||||||
BusyIndicator 6.0 BusyIndicator.qml
|
|
||||||
BusyIndicator 2.0 BusyIndicator.qml
|
|
||||||
Button 6.0 Button.qml
|
|
||||||
Button 2.0 Button.qml
|
|
||||||
ButtonGroup 6.0 ButtonGroup.qml
|
|
||||||
ButtonGroup 2.0 ButtonGroup.qml
|
|
||||||
CheckBox 6.0 CheckBox.qml
|
|
||||||
CheckBox 2.0 CheckBox.qml
|
|
||||||
CheckDelegate 6.0 CheckDelegate.qml
|
|
||||||
CheckDelegate 2.0 CheckDelegate.qml
|
|
||||||
ComboBox 6.0 ComboBox.qml
|
|
||||||
ComboBox 2.0 ComboBox.qml
|
|
||||||
Container 6.0 Container.qml
|
|
||||||
Container 2.0 Container.qml
|
|
||||||
Control 6.0 Control.qml
|
|
||||||
Control 2.0 Control.qml
|
|
||||||
DelayButton 2.2 DelayButton.qml
|
|
||||||
DelayButton 6.0 DelayButton.qml
|
|
||||||
Dial 6.0 Dial.qml
|
|
||||||
Dial 2.0 Dial.qml
|
|
||||||
Dialog 2.1 Dialog.qml
|
|
||||||
Dialog 6.0 Dialog.qml
|
|
||||||
DialogButtonBox 2.1 DialogButtonBox.qml
|
|
||||||
DialogButtonBox 6.0 DialogButtonBox.qml
|
|
||||||
Drawer 6.0 Drawer.qml
|
|
||||||
Drawer 2.0 Drawer.qml
|
|
||||||
Frame 6.0 Frame.qml
|
|
||||||
Frame 2.0 Frame.qml
|
|
||||||
GroupBox 6.0 GroupBox.qml
|
|
||||||
GroupBox 2.0 GroupBox.qml
|
|
||||||
HorizontalHeaderView 2.15 HorizontalHeaderView.qml
|
|
||||||
HorizontalHeaderView 6.0 HorizontalHeaderView.qml
|
|
||||||
ItemDelegate 6.0 ItemDelegate.qml
|
|
||||||
ItemDelegate 2.0 ItemDelegate.qml
|
|
||||||
Label 6.0 Label.qml
|
|
||||||
Label 2.0 Label.qml
|
|
||||||
Menu 6.0 Menu.qml
|
|
||||||
Menu 2.0 Menu.qml
|
|
||||||
MenuBar 2.3 MenuBar.qml
|
|
||||||
MenuBar 6.0 MenuBar.qml
|
|
||||||
MenuBarItem 2.3 MenuBarItem.qml
|
|
||||||
MenuBarItem 6.0 MenuBarItem.qml
|
|
||||||
MenuItem 6.0 MenuItem.qml
|
|
||||||
MenuItem 2.0 MenuItem.qml
|
|
||||||
MenuSeparator 2.1 MenuSeparator.qml
|
|
||||||
MenuSeparator 6.0 MenuSeparator.qml
|
|
||||||
Page 6.0 Page.qml
|
|
||||||
Page 2.0 Page.qml
|
|
||||||
PageIndicator 6.0 PageIndicator.qml
|
|
||||||
PageIndicator 2.0 PageIndicator.qml
|
|
||||||
Pane 6.0 Pane.qml
|
|
||||||
Pane 2.0 Pane.qml
|
|
||||||
Popup 6.0 Popup.qml
|
|
||||||
Popup 2.0 Popup.qml
|
|
||||||
ProgressBar 6.0 ProgressBar.qml
|
|
||||||
ProgressBar 2.0 ProgressBar.qml
|
|
||||||
RadioButton 6.0 RadioButton.qml
|
|
||||||
RadioButton 2.0 RadioButton.qml
|
|
||||||
RadioDelegate 6.0 RadioDelegate.qml
|
|
||||||
RadioDelegate 2.0 RadioDelegate.qml
|
|
||||||
RangeSlider 6.0 RangeSlider.qml
|
|
||||||
RangeSlider 2.0 RangeSlider.qml
|
|
||||||
RoundButton 2.1 RoundButton.qml
|
|
||||||
RoundButton 6.0 RoundButton.qml
|
|
||||||
ScrollBar 6.0 ScrollBar.qml
|
|
||||||
ScrollBar 2.0 ScrollBar.qml
|
|
||||||
ScrollIndicator 6.0 ScrollIndicator.qml
|
|
||||||
ScrollIndicator 2.0 ScrollIndicator.qml
|
|
||||||
ScrollView 2.2 ScrollView.qml
|
|
||||||
ScrollView 6.0 ScrollView.qml
|
|
||||||
SelectionRectangle 6.2 SelectionRectangle.qml
|
|
||||||
Slider 6.0 Slider.qml
|
|
||||||
Slider 2.0 Slider.qml
|
|
||||||
SpinBox 6.0 SpinBox.qml
|
|
||||||
SpinBox 2.0 SpinBox.qml
|
|
||||||
SplitView 2.13 SplitView.qml
|
|
||||||
SplitView 6.0 SplitView.qml
|
|
||||||
StackView 6.0 StackView.qml
|
|
||||||
StackView 2.0 StackView.qml
|
|
||||||
SwipeDelegate 6.0 SwipeDelegate.qml
|
|
||||||
SwipeDelegate 2.0 SwipeDelegate.qml
|
|
||||||
Switch 6.0 Switch.qml
|
|
||||||
Switch 2.0 Switch.qml
|
|
||||||
SwitchDelegate 6.0 SwitchDelegate.qml
|
|
||||||
SwitchDelegate 2.0 SwitchDelegate.qml
|
|
||||||
SwipeView 6.0 SwipeView.qml
|
|
||||||
SwipeView 2.0 SwipeView.qml
|
|
||||||
TabBar 6.0 TabBar.qml
|
|
||||||
TabBar 2.0 TabBar.qml
|
|
||||||
TabButton 6.0 TabButton.qml
|
|
||||||
TabButton 2.0 TabButton.qml
|
|
||||||
TextArea 6.0 TextArea.qml
|
|
||||||
TextArea 2.0 TextArea.qml
|
|
||||||
TextField 6.0 TextField.qml
|
|
||||||
TextField 2.0 TextField.qml
|
|
||||||
ToolBar 6.0 ToolBar.qml
|
|
||||||
ToolBar 2.0 ToolBar.qml
|
|
||||||
ToolButton 6.0 ToolButton.qml
|
|
||||||
ToolButton 2.0 ToolButton.qml
|
|
||||||
ToolSeparator 2.1 ToolSeparator.qml
|
|
||||||
ToolSeparator 6.0 ToolSeparator.qml
|
|
||||||
ToolTip 6.0 ToolTip.qml
|
|
||||||
ToolTip 2.0 ToolTip.qml
|
|
||||||
Tumbler 6.0 Tumbler.qml
|
|
||||||
Tumbler 2.0 Tumbler.qml
|
|
||||||
VerticalHeaderView 2.15 VerticalHeaderView.qml
|
|
||||||
VerticalHeaderView 6.0 VerticalHeaderView.qml
|
|
||||||
singleton Calendar 6.3 Calendar.qml
|
|
||||||
CalendarModel 6.3 CalendarModel.qml
|
|
||||||
DayOfWeekRow 6.3 DayOfWeekRow.qml
|
|
||||||
MonthGrid 6.3 MonthGrid.qml
|
|
||||||
WeekNumberColumn 6.3 WeekNumberColumn.qml
|
|
||||||
TreeViewDelegate 6.0 TreeViewDelegate.qml
|
|
||||||
TreeViewDelegate 2.0 TreeViewDelegate.qml
|
|
||||||
|
|
@@ -1,20 +0,0 @@
|
|||||||
module QtQuick.Controls.Fusion.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2fusionstyleimplplugin
|
|
||||||
plugin qtquickcontrols2fusionstyleimplplugin
|
|
||||||
classname QtQuickControls2FusionStyleImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Fusion/impl/
|
|
||||||
ButtonPanel 6.0 ButtonPanel.qml
|
|
||||||
ButtonPanel 2.0 ButtonPanel.qml
|
|
||||||
CheckIndicator 6.0 CheckIndicator.qml
|
|
||||||
CheckIndicator 2.0 CheckIndicator.qml
|
|
||||||
RadioIndicator 6.0 RadioIndicator.qml
|
|
||||||
RadioIndicator 2.0 RadioIndicator.qml
|
|
||||||
SliderGroove 6.0 SliderGroove.qml
|
|
||||||
SliderGroove 2.0 SliderGroove.qml
|
|
||||||
SliderHandle 6.0 SliderHandle.qml
|
|
||||||
SliderHandle 2.0 SliderHandle.qml
|
|
||||||
SwitchIndicator 6.0 SwitchIndicator.qml
|
|
||||||
SwitchIndicator 2.0 SwitchIndicator.qml
|
|
||||||
|
|
@@ -1,111 +0,0 @@
|
|||||||
module QtQuick.Controls.Fusion
|
|
||||||
linktarget Qt6::qtquickcontrols2fusionstyleplugin
|
|
||||||
plugin qtquickcontrols2fusionstyleplugin
|
|
||||||
classname QtQuickControls2FusionStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.Controls.Basic auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Fusion/
|
|
||||||
ApplicationWindow 6.0 ApplicationWindow.qml
|
|
||||||
ApplicationWindow 2.0 ApplicationWindow.qml
|
|
||||||
BusyIndicator 6.0 BusyIndicator.qml
|
|
||||||
BusyIndicator 2.0 BusyIndicator.qml
|
|
||||||
Button 6.0 Button.qml
|
|
||||||
Button 2.0 Button.qml
|
|
||||||
CheckBox 6.0 CheckBox.qml
|
|
||||||
CheckBox 2.0 CheckBox.qml
|
|
||||||
CheckDelegate 6.0 CheckDelegate.qml
|
|
||||||
CheckDelegate 2.0 CheckDelegate.qml
|
|
||||||
ComboBox 6.0 ComboBox.qml
|
|
||||||
ComboBox 2.0 ComboBox.qml
|
|
||||||
DelayButton 2.2 DelayButton.qml
|
|
||||||
DelayButton 6.0 DelayButton.qml
|
|
||||||
Dial 6.0 Dial.qml
|
|
||||||
Dial 2.0 Dial.qml
|
|
||||||
Dialog 2.1 Dialog.qml
|
|
||||||
Dialog 6.0 Dialog.qml
|
|
||||||
DialogButtonBox 2.1 DialogButtonBox.qml
|
|
||||||
DialogButtonBox 6.0 DialogButtonBox.qml
|
|
||||||
Drawer 6.0 Drawer.qml
|
|
||||||
Drawer 2.0 Drawer.qml
|
|
||||||
Frame 6.0 Frame.qml
|
|
||||||
Frame 2.0 Frame.qml
|
|
||||||
GroupBox 6.0 GroupBox.qml
|
|
||||||
GroupBox 2.0 GroupBox.qml
|
|
||||||
HorizontalHeaderView 2.15 HorizontalHeaderView.qml
|
|
||||||
HorizontalHeaderView 6.0 HorizontalHeaderView.qml
|
|
||||||
ItemDelegate 6.0 ItemDelegate.qml
|
|
||||||
ItemDelegate 2.0 ItemDelegate.qml
|
|
||||||
Label 6.0 Label.qml
|
|
||||||
Label 2.0 Label.qml
|
|
||||||
Menu 6.0 Menu.qml
|
|
||||||
Menu 2.0 Menu.qml
|
|
||||||
MenuBar 2.3 MenuBar.qml
|
|
||||||
MenuBar 6.0 MenuBar.qml
|
|
||||||
MenuBarItem 2.3 MenuBarItem.qml
|
|
||||||
MenuBarItem 6.0 MenuBarItem.qml
|
|
||||||
MenuItem 6.0 MenuItem.qml
|
|
||||||
MenuItem 2.0 MenuItem.qml
|
|
||||||
MenuSeparator 2.1 MenuSeparator.qml
|
|
||||||
MenuSeparator 6.0 MenuSeparator.qml
|
|
||||||
Page 6.0 Page.qml
|
|
||||||
Page 2.0 Page.qml
|
|
||||||
PageIndicator 6.0 PageIndicator.qml
|
|
||||||
PageIndicator 2.0 PageIndicator.qml
|
|
||||||
Pane 6.0 Pane.qml
|
|
||||||
Pane 2.0 Pane.qml
|
|
||||||
Popup 6.0 Popup.qml
|
|
||||||
Popup 2.0 Popup.qml
|
|
||||||
ProgressBar 6.0 ProgressBar.qml
|
|
||||||
ProgressBar 2.0 ProgressBar.qml
|
|
||||||
RadioButton 6.0 RadioButton.qml
|
|
||||||
RadioButton 2.0 RadioButton.qml
|
|
||||||
RadioDelegate 6.0 RadioDelegate.qml
|
|
||||||
RadioDelegate 2.0 RadioDelegate.qml
|
|
||||||
RangeSlider 6.0 RangeSlider.qml
|
|
||||||
RangeSlider 2.0 RangeSlider.qml
|
|
||||||
RoundButton 2.1 RoundButton.qml
|
|
||||||
RoundButton 6.0 RoundButton.qml
|
|
||||||
ScrollBar 6.0 ScrollBar.qml
|
|
||||||
ScrollBar 2.0 ScrollBar.qml
|
|
||||||
ScrollView 6.0 ScrollView.qml
|
|
||||||
ScrollView 2.0 ScrollView.qml
|
|
||||||
ScrollIndicator 6.0 ScrollIndicator.qml
|
|
||||||
ScrollIndicator 2.0 ScrollIndicator.qml
|
|
||||||
SelectionRectangle 6.0 SelectionRectangle.qml
|
|
||||||
SelectionRectangle 2.0 SelectionRectangle.qml
|
|
||||||
Slider 6.0 Slider.qml
|
|
||||||
Slider 2.0 Slider.qml
|
|
||||||
SpinBox 6.0 SpinBox.qml
|
|
||||||
SpinBox 2.0 SpinBox.qml
|
|
||||||
SplitView 2.13 SplitView.qml
|
|
||||||
SplitView 6.0 SplitView.qml
|
|
||||||
SwipeDelegate 6.0 SwipeDelegate.qml
|
|
||||||
SwipeDelegate 2.0 SwipeDelegate.qml
|
|
||||||
SwitchDelegate 6.0 SwitchDelegate.qml
|
|
||||||
SwitchDelegate 2.0 SwitchDelegate.qml
|
|
||||||
Switch 6.0 Switch.qml
|
|
||||||
Switch 2.0 Switch.qml
|
|
||||||
TabBar 6.0 TabBar.qml
|
|
||||||
TabBar 2.0 TabBar.qml
|
|
||||||
TabButton 6.0 TabButton.qml
|
|
||||||
TabButton 2.0 TabButton.qml
|
|
||||||
TextArea 6.0 TextArea.qml
|
|
||||||
TextArea 2.0 TextArea.qml
|
|
||||||
TextField 6.0 TextField.qml
|
|
||||||
TextField 2.0 TextField.qml
|
|
||||||
ToolBar 6.0 ToolBar.qml
|
|
||||||
ToolBar 2.0 ToolBar.qml
|
|
||||||
ToolButton 6.0 ToolButton.qml
|
|
||||||
ToolButton 2.0 ToolButton.qml
|
|
||||||
ToolSeparator 2.1 ToolSeparator.qml
|
|
||||||
ToolSeparator 6.0 ToolSeparator.qml
|
|
||||||
ToolTip 6.0 ToolTip.qml
|
|
||||||
ToolTip 2.0 ToolTip.qml
|
|
||||||
TreeViewDelegate 6.0 TreeViewDelegate.qml
|
|
||||||
TreeViewDelegate 2.0 TreeViewDelegate.qml
|
|
||||||
Tumbler 6.0 Tumbler.qml
|
|
||||||
Tumbler 2.0 Tumbler.qml
|
|
||||||
VerticalHeaderView 2.15 VerticalHeaderView.qml
|
|
||||||
VerticalHeaderView 6.0 VerticalHeaderView.qml
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick.Controls.Imagine.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2imaginestyleimplplugin
|
|
||||||
plugin qtquickcontrols2imaginestyleimplplugin
|
|
||||||
classname QtQuickControls2ImagineStyleImplPlugin
|
|
||||||
typeinfo qtquickcontrols2imaginestyleimplplugin.qmltypes
|
|
||||||
import QtQuick.Controls.impl auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Imagine/impl/
|
|
||||||
OpacityMask 6.0 OpacityMask.qml
|
|
||||||
|
|
@@ -1,108 +0,0 @@
|
|||||||
module QtQuick.Controls.Imagine
|
|
||||||
linktarget Qt6::qtquickcontrols2imaginestyleplugin
|
|
||||||
plugin qtquickcontrols2imaginestyleplugin
|
|
||||||
classname QtQuickControls2ImagineStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.Controls.Basic auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Imagine/
|
|
||||||
ApplicationWindow 6.0 ApplicationWindow.qml
|
|
||||||
ApplicationWindow 2.0 ApplicationWindow.qml
|
|
||||||
BusyIndicator 6.0 BusyIndicator.qml
|
|
||||||
BusyIndicator 2.0 BusyIndicator.qml
|
|
||||||
Button 6.0 Button.qml
|
|
||||||
Button 2.0 Button.qml
|
|
||||||
CheckBox 6.0 CheckBox.qml
|
|
||||||
CheckBox 2.0 CheckBox.qml
|
|
||||||
CheckDelegate 6.0 CheckDelegate.qml
|
|
||||||
CheckDelegate 2.0 CheckDelegate.qml
|
|
||||||
ComboBox 6.0 ComboBox.qml
|
|
||||||
ComboBox 2.0 ComboBox.qml
|
|
||||||
DelayButton 2.2 DelayButton.qml
|
|
||||||
DelayButton 6.0 DelayButton.qml
|
|
||||||
Dial 6.0 Dial.qml
|
|
||||||
Dial 2.0 Dial.qml
|
|
||||||
Dialog 2.1 Dialog.qml
|
|
||||||
Dialog 6.0 Dialog.qml
|
|
||||||
DialogButtonBox 2.1 DialogButtonBox.qml
|
|
||||||
DialogButtonBox 6.0 DialogButtonBox.qml
|
|
||||||
Drawer 6.0 Drawer.qml
|
|
||||||
Drawer 2.0 Drawer.qml
|
|
||||||
Frame 6.0 Frame.qml
|
|
||||||
Frame 2.0 Frame.qml
|
|
||||||
GroupBox 6.0 GroupBox.qml
|
|
||||||
GroupBox 2.0 GroupBox.qml
|
|
||||||
HorizontalHeaderView 2.15 HorizontalHeaderView.qml
|
|
||||||
HorizontalHeaderView 6.0 HorizontalHeaderView.qml
|
|
||||||
ItemDelegate 6.0 ItemDelegate.qml
|
|
||||||
ItemDelegate 2.0 ItemDelegate.qml
|
|
||||||
Label 6.0 Label.qml
|
|
||||||
Label 2.0 Label.qml
|
|
||||||
Menu 6.0 Menu.qml
|
|
||||||
Menu 2.0 Menu.qml
|
|
||||||
MenuItem 6.0 MenuItem.qml
|
|
||||||
MenuItem 2.0 MenuItem.qml
|
|
||||||
MenuSeparator 2.1 MenuSeparator.qml
|
|
||||||
MenuSeparator 6.0 MenuSeparator.qml
|
|
||||||
PageIndicator 6.0 PageIndicator.qml
|
|
||||||
PageIndicator 2.0 PageIndicator.qml
|
|
||||||
Page 6.0 Page.qml
|
|
||||||
Page 2.0 Page.qml
|
|
||||||
Pane 6.0 Pane.qml
|
|
||||||
Pane 2.0 Pane.qml
|
|
||||||
Popup 6.0 Popup.qml
|
|
||||||
Popup 2.0 Popup.qml
|
|
||||||
ProgressBar 6.0 ProgressBar.qml
|
|
||||||
ProgressBar 2.0 ProgressBar.qml
|
|
||||||
RadioButton 6.0 RadioButton.qml
|
|
||||||
RadioButton 2.0 RadioButton.qml
|
|
||||||
RadioDelegate 6.0 RadioDelegate.qml
|
|
||||||
RadioDelegate 2.0 RadioDelegate.qml
|
|
||||||
RangeSlider 6.0 RangeSlider.qml
|
|
||||||
RangeSlider 2.0 RangeSlider.qml
|
|
||||||
RoundButton 2.1 RoundButton.qml
|
|
||||||
RoundButton 6.0 RoundButton.qml
|
|
||||||
ScrollView 6.0 ScrollView.qml
|
|
||||||
ScrollView 2.0 ScrollView.qml
|
|
||||||
ScrollBar 6.0 ScrollBar.qml
|
|
||||||
ScrollBar 2.0 ScrollBar.qml
|
|
||||||
ScrollIndicator 6.0 ScrollIndicator.qml
|
|
||||||
ScrollIndicator 2.0 ScrollIndicator.qml
|
|
||||||
SelectionRectangle 6.0 SelectionRectangle.qml
|
|
||||||
SelectionRectangle 2.0 SelectionRectangle.qml
|
|
||||||
Slider 6.0 Slider.qml
|
|
||||||
Slider 2.0 Slider.qml
|
|
||||||
SpinBox 6.0 SpinBox.qml
|
|
||||||
SpinBox 2.0 SpinBox.qml
|
|
||||||
SplitView 2.13 SplitView.qml
|
|
||||||
SplitView 6.0 SplitView.qml
|
|
||||||
StackView 6.0 StackView.qml
|
|
||||||
StackView 2.0 StackView.qml
|
|
||||||
SwipeDelegate 6.0 SwipeDelegate.qml
|
|
||||||
SwipeDelegate 2.0 SwipeDelegate.qml
|
|
||||||
SwipeView 6.0 SwipeView.qml
|
|
||||||
SwipeView 2.0 SwipeView.qml
|
|
||||||
Switch 6.0 Switch.qml
|
|
||||||
Switch 2.0 Switch.qml
|
|
||||||
SwitchDelegate 6.0 SwitchDelegate.qml
|
|
||||||
SwitchDelegate 2.0 SwitchDelegate.qml
|
|
||||||
TextField 6.0 TextField.qml
|
|
||||||
TextField 2.0 TextField.qml
|
|
||||||
TextArea 6.0 TextArea.qml
|
|
||||||
TextArea 2.0 TextArea.qml
|
|
||||||
TabBar 6.0 TabBar.qml
|
|
||||||
TabBar 2.0 TabBar.qml
|
|
||||||
TabButton 6.0 TabButton.qml
|
|
||||||
TabButton 2.0 TabButton.qml
|
|
||||||
ToolBar 6.0 ToolBar.qml
|
|
||||||
ToolBar 2.0 ToolBar.qml
|
|
||||||
ToolButton 6.0 ToolButton.qml
|
|
||||||
ToolButton 2.0 ToolButton.qml
|
|
||||||
ToolSeparator 2.1 ToolSeparator.qml
|
|
||||||
ToolSeparator 6.0 ToolSeparator.qml
|
|
||||||
ToolTip 6.0 ToolTip.qml
|
|
||||||
ToolTip 2.0 ToolTip.qml
|
|
||||||
Tumbler 6.0 Tumbler.qml
|
|
||||||
Tumbler 2.0 Tumbler.qml
|
|
||||||
VerticalHeaderView 2.15 VerticalHeaderView.qml
|
|
||||||
VerticalHeaderView 6.0 VerticalHeaderView.qml
|
|
||||||
|
|
@@ -1,26 +0,0 @@
|
|||||||
module QtQuick.Controls.Material.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2materialstyleimplplugin
|
|
||||||
plugin qtquickcontrols2materialstyleimplplugin
|
|
||||||
classname QtQuickControls2MaterialStyleImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Material/impl/
|
|
||||||
BoxShadow 6.0 BoxShadow.qml
|
|
||||||
BoxShadow 2.0 BoxShadow.qml
|
|
||||||
CheckIndicator 6.0 CheckIndicator.qml
|
|
||||||
CheckIndicator 2.0 CheckIndicator.qml
|
|
||||||
CursorDelegate 6.0 CursorDelegate.qml
|
|
||||||
CursorDelegate 2.0 CursorDelegate.qml
|
|
||||||
ElevationEffect 6.0 ElevationEffect.qml
|
|
||||||
ElevationEffect 2.0 ElevationEffect.qml
|
|
||||||
RadioIndicator 6.0 RadioIndicator.qml
|
|
||||||
RadioIndicator 2.0 RadioIndicator.qml
|
|
||||||
RectangularGlow 6.0 RectangularGlow.qml
|
|
||||||
RectangularGlow 2.0 RectangularGlow.qml
|
|
||||||
RoundedElevationEffect 6.0 RoundedElevationEffect.qml
|
|
||||||
RoundedElevationEffect 2.0 RoundedElevationEffect.qml
|
|
||||||
SliderHandle 6.0 SliderHandle.qml
|
|
||||||
SliderHandle 2.0 SliderHandle.qml
|
|
||||||
SwitchIndicator 6.0 SwitchIndicator.qml
|
|
||||||
SwitchIndicator 2.0 SwitchIndicator.qml
|
|
||||||
|
|
@@ -1,115 +0,0 @@
|
|||||||
module QtQuick.Controls.Material
|
|
||||||
linktarget Qt6::qtquickcontrols2materialstyleplugin
|
|
||||||
plugin qtquickcontrols2materialstyleplugin
|
|
||||||
classname QtQuickControls2MaterialStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.Controls.Basic auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Material/
|
|
||||||
ApplicationWindow 6.0 ApplicationWindow.qml
|
|
||||||
ApplicationWindow 2.0 ApplicationWindow.qml
|
|
||||||
BusyIndicator 6.0 BusyIndicator.qml
|
|
||||||
BusyIndicator 2.0 BusyIndicator.qml
|
|
||||||
Button 6.0 Button.qml
|
|
||||||
Button 2.0 Button.qml
|
|
||||||
CheckBox 6.0 CheckBox.qml
|
|
||||||
CheckBox 2.0 CheckBox.qml
|
|
||||||
CheckDelegate 6.0 CheckDelegate.qml
|
|
||||||
CheckDelegate 2.0 CheckDelegate.qml
|
|
||||||
ComboBox 6.0 ComboBox.qml
|
|
||||||
ComboBox 2.0 ComboBox.qml
|
|
||||||
DelayButton 2.2 DelayButton.qml
|
|
||||||
DelayButton 6.0 DelayButton.qml
|
|
||||||
Dial 6.0 Dial.qml
|
|
||||||
Dial 2.0 Dial.qml
|
|
||||||
Dialog 2.1 Dialog.qml
|
|
||||||
Dialog 6.0 Dialog.qml
|
|
||||||
DialogButtonBox 2.1 DialogButtonBox.qml
|
|
||||||
DialogButtonBox 6.0 DialogButtonBox.qml
|
|
||||||
Drawer 6.0 Drawer.qml
|
|
||||||
Drawer 2.0 Drawer.qml
|
|
||||||
Frame 6.0 Frame.qml
|
|
||||||
Frame 2.0 Frame.qml
|
|
||||||
GroupBox 6.0 GroupBox.qml
|
|
||||||
GroupBox 2.0 GroupBox.qml
|
|
||||||
HorizontalHeaderView 2.15 HorizontalHeaderView.qml
|
|
||||||
HorizontalHeaderView 6.0 HorizontalHeaderView.qml
|
|
||||||
ItemDelegate 6.0 ItemDelegate.qml
|
|
||||||
ItemDelegate 2.0 ItemDelegate.qml
|
|
||||||
Label 6.0 Label.qml
|
|
||||||
Label 2.0 Label.qml
|
|
||||||
Menu 6.0 Menu.qml
|
|
||||||
Menu 2.0 Menu.qml
|
|
||||||
MenuBar 2.3 MenuBar.qml
|
|
||||||
MenuBar 6.0 MenuBar.qml
|
|
||||||
MenuBarItem 2.3 MenuBarItem.qml
|
|
||||||
MenuBarItem 6.0 MenuBarItem.qml
|
|
||||||
MenuItem 6.0 MenuItem.qml
|
|
||||||
MenuItem 2.0 MenuItem.qml
|
|
||||||
MenuSeparator 2.1 MenuSeparator.qml
|
|
||||||
MenuSeparator 6.0 MenuSeparator.qml
|
|
||||||
Page 6.0 Page.qml
|
|
||||||
Page 2.0 Page.qml
|
|
||||||
PageIndicator 6.0 PageIndicator.qml
|
|
||||||
PageIndicator 2.0 PageIndicator.qml
|
|
||||||
Pane 6.0 Pane.qml
|
|
||||||
Pane 2.0 Pane.qml
|
|
||||||
Popup 6.0 Popup.qml
|
|
||||||
Popup 2.0 Popup.qml
|
|
||||||
ProgressBar 6.0 ProgressBar.qml
|
|
||||||
ProgressBar 2.0 ProgressBar.qml
|
|
||||||
RadioButton 6.0 RadioButton.qml
|
|
||||||
RadioButton 2.0 RadioButton.qml
|
|
||||||
RadioDelegate 6.0 RadioDelegate.qml
|
|
||||||
RadioDelegate 2.0 RadioDelegate.qml
|
|
||||||
RangeSlider 6.0 RangeSlider.qml
|
|
||||||
RangeSlider 2.0 RangeSlider.qml
|
|
||||||
RoundButton 2.1 RoundButton.qml
|
|
||||||
RoundButton 6.0 RoundButton.qml
|
|
||||||
ScrollView 6.0 ScrollView.qml
|
|
||||||
ScrollView 2.0 ScrollView.qml
|
|
||||||
ScrollBar 6.0 ScrollBar.qml
|
|
||||||
ScrollBar 2.0 ScrollBar.qml
|
|
||||||
ScrollIndicator 6.0 ScrollIndicator.qml
|
|
||||||
ScrollIndicator 2.0 ScrollIndicator.qml
|
|
||||||
SelectionRectangle 6.0 SelectionRectangle.qml
|
|
||||||
SelectionRectangle 2.0 SelectionRectangle.qml
|
|
||||||
Slider 6.0 Slider.qml
|
|
||||||
Slider 2.0 Slider.qml
|
|
||||||
SpinBox 6.0 SpinBox.qml
|
|
||||||
SpinBox 2.0 SpinBox.qml
|
|
||||||
SplitView 2.13 SplitView.qml
|
|
||||||
SplitView 6.0 SplitView.qml
|
|
||||||
StackView 6.0 StackView.qml
|
|
||||||
StackView 2.0 StackView.qml
|
|
||||||
SwipeDelegate 6.0 SwipeDelegate.qml
|
|
||||||
SwipeDelegate 2.0 SwipeDelegate.qml
|
|
||||||
SwipeView 6.0 SwipeView.qml
|
|
||||||
SwipeView 2.0 SwipeView.qml
|
|
||||||
Switch 6.0 Switch.qml
|
|
||||||
Switch 2.0 Switch.qml
|
|
||||||
SwitchDelegate 6.0 SwitchDelegate.qml
|
|
||||||
SwitchDelegate 2.0 SwitchDelegate.qml
|
|
||||||
TabBar 6.0 TabBar.qml
|
|
||||||
TabBar 2.0 TabBar.qml
|
|
||||||
TabButton 6.0 TabButton.qml
|
|
||||||
TabButton 2.0 TabButton.qml
|
|
||||||
TextArea 6.0 TextArea.qml
|
|
||||||
TextArea 2.0 TextArea.qml
|
|
||||||
TextField 6.0 TextField.qml
|
|
||||||
TextField 2.0 TextField.qml
|
|
||||||
ToolBar 6.0 ToolBar.qml
|
|
||||||
ToolBar 2.0 ToolBar.qml
|
|
||||||
ToolButton 6.0 ToolButton.qml
|
|
||||||
ToolButton 2.0 ToolButton.qml
|
|
||||||
ToolSeparator 2.1 ToolSeparator.qml
|
|
||||||
ToolSeparator 6.0 ToolSeparator.qml
|
|
||||||
ToolTip 6.0 ToolTip.qml
|
|
||||||
ToolTip 2.0 ToolTip.qml
|
|
||||||
TreeViewDelegate 6.0 TreeViewDelegate.qml
|
|
||||||
TreeViewDelegate 2.0 TreeViewDelegate.qml
|
|
||||||
Tumbler 6.0 Tumbler.qml
|
|
||||||
Tumbler 2.0 Tumbler.qml
|
|
||||||
VerticalHeaderView 2.15 VerticalHeaderView.qml
|
|
||||||
VerticalHeaderView 6.0 VerticalHeaderView.qml
|
|
||||||
|
|
@@ -1,14 +0,0 @@
|
|||||||
module QtQuick.Controls.Universal.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2universalstyleimplplugin
|
|
||||||
plugin qtquickcontrols2universalstyleimplplugin
|
|
||||||
classname QtQuickControls2UniversalStyleImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Universal/impl/
|
|
||||||
CheckIndicator 6.0 CheckIndicator.qml
|
|
||||||
CheckIndicator 2.0 CheckIndicator.qml
|
|
||||||
RadioIndicator 6.0 RadioIndicator.qml
|
|
||||||
RadioIndicator 2.0 RadioIndicator.qml
|
|
||||||
SwitchIndicator 6.0 SwitchIndicator.qml
|
|
||||||
SwitchIndicator 2.0 SwitchIndicator.qml
|
|
||||||
|
|
@@ -1,111 +0,0 @@
|
|||||||
module QtQuick.Controls.Universal
|
|
||||||
linktarget Qt6::qtquickcontrols2universalstyleplugin
|
|
||||||
plugin qtquickcontrols2universalstyleplugin
|
|
||||||
classname QtQuickControls2UniversalStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.Controls.Basic auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/Universal/
|
|
||||||
ApplicationWindow 6.0 ApplicationWindow.qml
|
|
||||||
ApplicationWindow 2.0 ApplicationWindow.qml
|
|
||||||
BusyIndicator 6.0 BusyIndicator.qml
|
|
||||||
BusyIndicator 2.0 BusyIndicator.qml
|
|
||||||
Button 6.0 Button.qml
|
|
||||||
Button 2.0 Button.qml
|
|
||||||
CheckBox 6.0 CheckBox.qml
|
|
||||||
CheckBox 2.0 CheckBox.qml
|
|
||||||
CheckDelegate 6.0 CheckDelegate.qml
|
|
||||||
CheckDelegate 2.0 CheckDelegate.qml
|
|
||||||
ComboBox 6.0 ComboBox.qml
|
|
||||||
ComboBox 2.0 ComboBox.qml
|
|
||||||
DelayButton 2.2 DelayButton.qml
|
|
||||||
DelayButton 6.0 DelayButton.qml
|
|
||||||
Dial 6.0 Dial.qml
|
|
||||||
Dial 2.0 Dial.qml
|
|
||||||
Dialog 2.1 Dialog.qml
|
|
||||||
Dialog 6.0 Dialog.qml
|
|
||||||
DialogButtonBox 2.1 DialogButtonBox.qml
|
|
||||||
DialogButtonBox 6.0 DialogButtonBox.qml
|
|
||||||
Drawer 6.0 Drawer.qml
|
|
||||||
Drawer 2.0 Drawer.qml
|
|
||||||
Frame 6.0 Frame.qml
|
|
||||||
Frame 2.0 Frame.qml
|
|
||||||
GroupBox 6.0 GroupBox.qml
|
|
||||||
GroupBox 2.0 GroupBox.qml
|
|
||||||
HorizontalHeaderView 2.15 HorizontalHeaderView.qml
|
|
||||||
HorizontalHeaderView 6.0 HorizontalHeaderView.qml
|
|
||||||
ItemDelegate 6.0 ItemDelegate.qml
|
|
||||||
ItemDelegate 2.0 ItemDelegate.qml
|
|
||||||
Label 6.0 Label.qml
|
|
||||||
Label 2.0 Label.qml
|
|
||||||
Menu 6.0 Menu.qml
|
|
||||||
Menu 2.0 Menu.qml
|
|
||||||
MenuBar 2.3 MenuBar.qml
|
|
||||||
MenuBar 6.0 MenuBar.qml
|
|
||||||
MenuBarItem 2.3 MenuBarItem.qml
|
|
||||||
MenuBarItem 6.0 MenuBarItem.qml
|
|
||||||
MenuItem 6.0 MenuItem.qml
|
|
||||||
MenuItem 2.0 MenuItem.qml
|
|
||||||
MenuSeparator 2.1 MenuSeparator.qml
|
|
||||||
MenuSeparator 6.0 MenuSeparator.qml
|
|
||||||
Page 6.0 Page.qml
|
|
||||||
Page 2.0 Page.qml
|
|
||||||
PageIndicator 6.0 PageIndicator.qml
|
|
||||||
PageIndicator 2.0 PageIndicator.qml
|
|
||||||
Pane 6.0 Pane.qml
|
|
||||||
Pane 2.0 Pane.qml
|
|
||||||
Popup 6.0 Popup.qml
|
|
||||||
Popup 2.0 Popup.qml
|
|
||||||
ProgressBar 6.0 ProgressBar.qml
|
|
||||||
ProgressBar 2.0 ProgressBar.qml
|
|
||||||
RadioButton 6.0 RadioButton.qml
|
|
||||||
RadioButton 2.0 RadioButton.qml
|
|
||||||
RadioDelegate 6.0 RadioDelegate.qml
|
|
||||||
RadioDelegate 2.0 RadioDelegate.qml
|
|
||||||
RangeSlider 6.0 RangeSlider.qml
|
|
||||||
RangeSlider 2.0 RangeSlider.qml
|
|
||||||
RoundButton 2.1 RoundButton.qml
|
|
||||||
RoundButton 6.0 RoundButton.qml
|
|
||||||
ScrollView 6.0 ScrollView.qml
|
|
||||||
ScrollView 2.0 ScrollView.qml
|
|
||||||
ScrollBar 6.0 ScrollBar.qml
|
|
||||||
ScrollBar 2.0 ScrollBar.qml
|
|
||||||
ScrollIndicator 6.0 ScrollIndicator.qml
|
|
||||||
ScrollIndicator 2.0 ScrollIndicator.qml
|
|
||||||
SelectionRectangle 6.0 SelectionRectangle.qml
|
|
||||||
SelectionRectangle 2.0 SelectionRectangle.qml
|
|
||||||
Slider 6.0 Slider.qml
|
|
||||||
Slider 2.0 Slider.qml
|
|
||||||
SpinBox 6.0 SpinBox.qml
|
|
||||||
SpinBox 2.0 SpinBox.qml
|
|
||||||
SplitView 2.13 SplitView.qml
|
|
||||||
SplitView 6.0 SplitView.qml
|
|
||||||
StackView 6.0 StackView.qml
|
|
||||||
StackView 2.0 StackView.qml
|
|
||||||
SwipeDelegate 6.0 SwipeDelegate.qml
|
|
||||||
SwipeDelegate 2.0 SwipeDelegate.qml
|
|
||||||
SwitchDelegate 6.0 SwitchDelegate.qml
|
|
||||||
SwitchDelegate 2.0 SwitchDelegate.qml
|
|
||||||
Switch 6.0 Switch.qml
|
|
||||||
Switch 2.0 Switch.qml
|
|
||||||
TabBar 6.0 TabBar.qml
|
|
||||||
TabBar 2.0 TabBar.qml
|
|
||||||
TabButton 6.0 TabButton.qml
|
|
||||||
TabButton 2.0 TabButton.qml
|
|
||||||
TextArea 6.0 TextArea.qml
|
|
||||||
TextArea 2.0 TextArea.qml
|
|
||||||
TextField 6.0 TextField.qml
|
|
||||||
TextField 2.0 TextField.qml
|
|
||||||
ToolBar 6.0 ToolBar.qml
|
|
||||||
ToolBar 2.0 ToolBar.qml
|
|
||||||
ToolButton 6.0 ToolButton.qml
|
|
||||||
ToolButton 2.0 ToolButton.qml
|
|
||||||
ToolSeparator 2.1 ToolSeparator.qml
|
|
||||||
ToolSeparator 6.0 ToolSeparator.qml
|
|
||||||
ToolTip 6.0 ToolTip.qml
|
|
||||||
ToolTip 2.0 ToolTip.qml
|
|
||||||
Tumbler 6.0 Tumbler.qml
|
|
||||||
Tumbler 2.0 Tumbler.qml
|
|
||||||
VerticalHeaderView 2.15 VerticalHeaderView.qml
|
|
||||||
VerticalHeaderView 6.0 VerticalHeaderView.qml
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick.Controls.impl
|
|
||||||
linktarget Qt6::qtquickcontrols2implplugin
|
|
||||||
optional plugin qtquickcontrols2implplugin
|
|
||||||
classname QtQuickControls2ImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
depends QtQuick.Templates auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/impl/
|
|
||||||
|
|
@@ -1,16 +0,0 @@
|
|||||||
module QtQuick.Controls
|
|
||||||
linktarget Qt6::qtquickcontrols2plugin
|
|
||||||
plugin qtquickcontrols2plugin
|
|
||||||
classname QtQuickControls2Plugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
optional import QtQuick.Controls.Fusion auto
|
|
||||||
optional import QtQuick.Controls.Material auto
|
|
||||||
optional import QtQuick.Controls.Imagine auto
|
|
||||||
optional import QtQuick.Controls.Universal auto
|
|
||||||
optional import QtQuick.Controls.Windows auto
|
|
||||||
optional import QtQuick.Controls.macOS auto
|
|
||||||
optional import QtQuick.Controls.iOS auto
|
|
||||||
default import QtQuick.Controls.Basic auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Controls/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Dialogs
|
|
||||||
linktarget Qt6::qtquickdialogsplugin
|
|
||||||
optional plugin qtquickdialogsplugin
|
|
||||||
classname QtQuickDialogsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Dialogs/
|
|
||||||
|
|
@@ -1,57 +0,0 @@
|
|||||||
module QtQuick.Dialogs.quickimpl
|
|
||||||
linktarget Qt6::qtquickdialogs2quickimplplugin
|
|
||||||
optional plugin qtquickdialogs2quickimplplugin
|
|
||||||
classname QtQuickDialogs2QuickImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
depends QtQuick.Templates auto
|
|
||||||
depends QtQuick.Layouts auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Dialogs/quickimpl/
|
|
||||||
ColorDialog 6.0 qml/ColorDialog.qml
|
|
||||||
ColorInputs 6.0 qml/ColorInputs.qml
|
|
||||||
FileDialog 6.0 qml/FileDialog.qml
|
|
||||||
FileDialogDelegate 6.0 qml/FileDialogDelegate.qml
|
|
||||||
FileDialogDelegateLabel 6.0 qml/FileDialogDelegateLabel.qml
|
|
||||||
FolderBreadcrumbBar 6.0 qml/FolderBreadcrumbBar.qml
|
|
||||||
FolderDialog 6.0 qml/FolderDialog.qml
|
|
||||||
FolderDialogDelegate 6.0 qml/FolderDialogDelegate.qml
|
|
||||||
FolderDialogDelegateLabel 6.0 qml/FolderDialogDelegateLabel.qml
|
|
||||||
FontDialog 6.0 qml/FontDialog.qml
|
|
||||||
FontDialogContent 6.0 qml/FontDialogContent.qml
|
|
||||||
HueGradient 6.0 qml/HueGradient.qml
|
|
||||||
MessageDialog 6.0 qml/MessageDialog.qml
|
|
||||||
PickerHandle 6.0 qml/PickerHandle.qml
|
|
||||||
SaturationLightnessPicker 6.0 qml/SaturationLightnessPicker.qml
|
|
||||||
ColorDialog 6.0 qml/+Fusion/ColorDialog.qml
|
|
||||||
FileDialog 6.0 qml/+Fusion/FileDialog.qml
|
|
||||||
FileDialogDelegate 6.0 qml/+Fusion/FileDialogDelegate.qml
|
|
||||||
FolderBreadcrumbBar 6.0 qml/+Fusion/FolderBreadcrumbBar.qml
|
|
||||||
FolderDialog 6.0 qml/+Fusion/FolderDialog.qml
|
|
||||||
FolderDialogDelegate 6.0 qml/+Fusion/FolderDialogDelegate.qml
|
|
||||||
FontDialog 6.0 qml/+Fusion/FontDialog.qml
|
|
||||||
MessageDialog 6.0 qml/+Fusion/MessageDialog.qml
|
|
||||||
ColorDialog 6.0 qml/+Imagine/ColorDialog.qml
|
|
||||||
FileDialog 6.0 qml/+Imagine/FileDialog.qml
|
|
||||||
FileDialogDelegate 6.0 qml/+Imagine/FileDialogDelegate.qml
|
|
||||||
FolderBreadcrumbBar 6.0 qml/+Imagine/FolderBreadcrumbBar.qml
|
|
||||||
FolderDialog 6.0 qml/+Imagine/FolderDialog.qml
|
|
||||||
FolderDialogDelegate 6.0 qml/+Imagine/FolderDialogDelegate.qml
|
|
||||||
FontDialog 6.0 qml/+Imagine/FontDialog.qml
|
|
||||||
MessageDialog 6.0 qml/+Imagine/MessageDialog.qml
|
|
||||||
ColorDialog 6.0 qml/+Material/ColorDialog.qml
|
|
||||||
FileDialog 6.0 qml/+Material/FileDialog.qml
|
|
||||||
FileDialogDelegate 6.0 qml/+Material/FileDialogDelegate.qml
|
|
||||||
FolderBreadcrumbBar 6.0 qml/+Material/FolderBreadcrumbBar.qml
|
|
||||||
FolderDialog 6.0 qml/+Material/FolderDialog.qml
|
|
||||||
FolderDialogDelegate 6.0 qml/+Material/FolderDialogDelegate.qml
|
|
||||||
FontDialog 6.0 qml/+Material/FontDialog.qml
|
|
||||||
MessageDialog 6.0 qml/+Material/MessageDialog.qml
|
|
||||||
ColorDialog 6.0 qml/+Universal/ColorDialog.qml
|
|
||||||
FileDialog 6.0 qml/+Universal/FileDialog.qml
|
|
||||||
FileDialogDelegate 6.0 qml/+Universal/FileDialogDelegate.qml
|
|
||||||
FolderBreadcrumbBar 6.0 qml/+Universal/FolderBreadcrumbBar.qml
|
|
||||||
FolderDialog 6.0 qml/+Universal/FolderDialog.qml
|
|
||||||
FolderDialogDelegate 6.0 qml/+Universal/FolderDialogDelegate.qml
|
|
||||||
FontDialog 6.0 qml/+Universal/FontDialog.qml
|
|
||||||
MessageDialog 6.0 qml/+Universal/MessageDialog.qml
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Effects
|
|
||||||
linktarget Qt6::effectsplugin
|
|
||||||
optional plugin effectsplugin
|
|
||||||
classname QtQuickEffectsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Effects/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick.Layouts
|
|
||||||
linktarget Qt6::qquicklayoutsplugin
|
|
||||||
optional plugin qquicklayoutsplugin
|
|
||||||
classname QtQuickLayoutsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Layouts/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.LocalStorage
|
|
||||||
linktarget Qt6::qmllocalstorageplugin
|
|
||||||
optional plugin qmllocalstorageplugin
|
|
||||||
classname QQmlLocalStoragePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/LocalStorage/
|
|
||||||
|
|
@@ -1,38 +0,0 @@
|
|||||||
module QtQuick.NativeStyle
|
|
||||||
linktarget Qt6::qtquickcontrols2nativestyleplugin
|
|
||||||
plugin qtquickcontrols2nativestyleplugin
|
|
||||||
classname QtQuickControls2NativeStylePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.Controls auto
|
|
||||||
depends QtQuick.Layouts auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/NativeStyle/
|
|
||||||
DefaultButton 6.0 controls/DefaultButton.qml
|
|
||||||
DefaultButton 2.0 controls/DefaultButton.qml
|
|
||||||
DefaultSlider 6.0 controls/DefaultSlider.qml
|
|
||||||
DefaultSlider 2.0 controls/DefaultSlider.qml
|
|
||||||
DefaultGroupBox 6.0 controls/DefaultGroupBox.qml
|
|
||||||
DefaultGroupBox 2.0 controls/DefaultGroupBox.qml
|
|
||||||
DefaultCheckBox 6.0 controls/DefaultCheckBox.qml
|
|
||||||
DefaultCheckBox 2.0 controls/DefaultCheckBox.qml
|
|
||||||
DefaultRadioButton 6.0 controls/DefaultRadioButton.qml
|
|
||||||
DefaultRadioButton 2.0 controls/DefaultRadioButton.qml
|
|
||||||
DefaultSpinBox 6.0 controls/DefaultSpinBox.qml
|
|
||||||
DefaultSpinBox 2.0 controls/DefaultSpinBox.qml
|
|
||||||
DefaultTextField 6.0 controls/DefaultTextField.qml
|
|
||||||
DefaultTextField 2.0 controls/DefaultTextField.qml
|
|
||||||
DefaultFrame 6.0 controls/DefaultFrame.qml
|
|
||||||
DefaultFrame 2.0 controls/DefaultFrame.qml
|
|
||||||
DefaultTextArea 6.0 controls/DefaultTextArea.qml
|
|
||||||
DefaultTextArea 2.0 controls/DefaultTextArea.qml
|
|
||||||
DefaultComboBox 6.0 controls/DefaultComboBox.qml
|
|
||||||
DefaultComboBox 2.0 controls/DefaultComboBox.qml
|
|
||||||
DefaultScrollBar 6.0 controls/DefaultScrollBar.qml
|
|
||||||
DefaultScrollBar 2.0 controls/DefaultScrollBar.qml
|
|
||||||
DefaultProgressBar 6.0 controls/DefaultProgressBar.qml
|
|
||||||
DefaultProgressBar 2.0 controls/DefaultProgressBar.qml
|
|
||||||
DefaultDial 6.0 controls/DefaultDial.qml
|
|
||||||
DefaultDial 2.0 controls/DefaultDial.qml
|
|
||||||
DefaultTreeViewDelegate 6.0 controls/DefaultTreeViewDelegate.qml
|
|
||||||
DefaultTreeViewDelegate 2.0 controls/DefaultTreeViewDelegate.qml
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Particles
|
|
||||||
linktarget Qt6::particlesplugin
|
|
||||||
optional plugin particlesplugin
|
|
||||||
classname QtQuick2ParticlesPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Particles/
|
|
||||||
|
|
@@ -1,22 +0,0 @@
|
|||||||
module QtQuick.Pdf
|
|
||||||
linktarget Qt6::PdfQuickplugin
|
|
||||||
optional plugin pdfquickplugin
|
|
||||||
classname QtQuick_PdfPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Pdf/
|
|
||||||
PdfStyle 6.0 +Material/PdfStyle.qml
|
|
||||||
PdfStyle 5.0 +Material/PdfStyle.qml
|
|
||||||
PdfStyle 6.0 +Universal/PdfStyle.qml
|
|
||||||
PdfStyle 5.0 +Universal/PdfStyle.qml
|
|
||||||
PdfLinkDelegate 6.0 PdfLinkDelegate.qml
|
|
||||||
PdfLinkDelegate 5.0 PdfLinkDelegate.qml
|
|
||||||
PdfMultiPageView 6.0 PdfMultiPageView.qml
|
|
||||||
PdfMultiPageView 5.0 PdfMultiPageView.qml
|
|
||||||
PdfPageView 6.0 PdfPageView.qml
|
|
||||||
PdfPageView 5.0 PdfPageView.qml
|
|
||||||
PdfScrollablePageView 6.0 PdfScrollablePageView.qml
|
|
||||||
PdfScrollablePageView 5.0 PdfScrollablePageView.qml
|
|
||||||
PdfStyle 6.0 PdfStyle.qml
|
|
||||||
PdfStyle 5.0 PdfStyle.qml
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.Scene2D
|
|
||||||
linktarget Qt6::qtquickscene2dplugin
|
|
||||||
plugin qtquickscene2dplugin
|
|
||||||
classname QtQuickScene2DPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Scene2D/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.Scene3D
|
|
||||||
linktarget Qt6::qtquickscene3dplugin
|
|
||||||
plugin qtquickscene3dplugin
|
|
||||||
classname QtQuickScene3DPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Scene3D/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Shapes
|
|
||||||
linktarget Qt6::qmlshapesplugin
|
|
||||||
plugin qmlshapesplugin
|
|
||||||
classname QmlShapesPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Shapes/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Templates
|
|
||||||
linktarget Qt6::qtquicktemplates2plugin
|
|
||||||
plugin qtquicktemplates2plugin
|
|
||||||
classname QtQuickTemplates2Plugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Templates/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick.Timeline
|
|
||||||
linktarget Qt6::qtquicktimelineplugin
|
|
||||||
optional plugin qtquicktimelineplugin
|
|
||||||
classname QtQuickTimelinePlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Timeline/
|
|
||||||
|
|
@@ -1,103 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Components
|
|
||||||
linktarget Qt6::qtvkbcomponentsplugin
|
|
||||||
optional plugin qtvkbcomponentsplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_ComponentsPlugin
|
|
||||||
typeinfo qtvkbcomponentsplugin.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
depends QtQuick.Layouts auto
|
|
||||||
depends QtQuick.VirtualKeyboard.Settings auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Components/
|
|
||||||
AlternativeKeys 6.0 AlternativeKeys.qml
|
|
||||||
AlternativeKeys 2.0 AlternativeKeys.qml
|
|
||||||
AlternativeKeys 1.0 AlternativeKeys.qml
|
|
||||||
BackspaceKey 6.0 BackspaceKey.qml
|
|
||||||
BackspaceKey 2.0 BackspaceKey.qml
|
|
||||||
BackspaceKey 1.0 BackspaceKey.qml
|
|
||||||
BaseKey 6.0 BaseKey.qml
|
|
||||||
BaseKey 2.0 BaseKey.qml
|
|
||||||
BaseKey 1.0 BaseKey.qml
|
|
||||||
ChangeLanguageKey 6.0 ChangeLanguageKey.qml
|
|
||||||
ChangeLanguageKey 2.0 ChangeLanguageKey.qml
|
|
||||||
ChangeLanguageKey 1.0 ChangeLanguageKey.qml
|
|
||||||
CharacterPreviewBubble 6.0 CharacterPreviewBubble.qml
|
|
||||||
CharacterPreviewBubble 2.0 CharacterPreviewBubble.qml
|
|
||||||
CharacterPreviewBubble 1.0 CharacterPreviewBubble.qml
|
|
||||||
EnterKey 6.0 EnterKey.qml
|
|
||||||
EnterKey 2.0 EnterKey.qml
|
|
||||||
EnterKey 1.0 EnterKey.qml
|
|
||||||
FillerKey 6.0 FillerKey.qml
|
|
||||||
FillerKey 2.0 FillerKey.qml
|
|
||||||
FillerKey 1.0 FillerKey.qml
|
|
||||||
FlickKey 6.0 FlickKey.qml
|
|
||||||
FlickKey 2.0 FlickKey.qml
|
|
||||||
FlickKey 1.0 FlickKey.qml
|
|
||||||
FunctionPopupList 6.0 FunctionPopupList.qml
|
|
||||||
FunctionPopupList 2.0 FunctionPopupList.qml
|
|
||||||
FunctionPopupList 1.0 FunctionPopupList.qml
|
|
||||||
HandwritingModeKey 6.0 HandwritingModeKey.qml
|
|
||||||
HandwritingModeKey 2.0 HandwritingModeKey.qml
|
|
||||||
HandwritingModeKey 1.0 HandwritingModeKey.qml
|
|
||||||
HideKeyboardKey 6.0 HideKeyboardKey.qml
|
|
||||||
HideKeyboardKey 2.0 HideKeyboardKey.qml
|
|
||||||
HideKeyboardKey 1.0 HideKeyboardKey.qml
|
|
||||||
InputModeKey 6.0 InputModeKey.qml
|
|
||||||
InputModeKey 2.0 InputModeKey.qml
|
|
||||||
InputModeKey 1.0 InputModeKey.qml
|
|
||||||
Key 6.0 Key.qml
|
|
||||||
Key 2.0 Key.qml
|
|
||||||
Key 1.0 Key.qml
|
|
||||||
Keyboard 6.0 Keyboard.qml
|
|
||||||
Keyboard 2.0 Keyboard.qml
|
|
||||||
Keyboard 1.0 Keyboard.qml
|
|
||||||
KeyboardColumn 6.0 KeyboardColumn.qml
|
|
||||||
KeyboardColumn 2.0 KeyboardColumn.qml
|
|
||||||
KeyboardColumn 1.0 KeyboardColumn.qml
|
|
||||||
KeyboardLayout 6.0 KeyboardLayout.qml
|
|
||||||
KeyboardLayout 2.0 KeyboardLayout.qml
|
|
||||||
KeyboardLayout 1.0 KeyboardLayout.qml
|
|
||||||
KeyboardLayoutLoader 6.0 KeyboardLayoutLoader.qml
|
|
||||||
KeyboardLayoutLoader 2.0 KeyboardLayoutLoader.qml
|
|
||||||
KeyboardLayoutLoader 1.0 KeyboardLayoutLoader.qml
|
|
||||||
KeyboardRow 6.0 KeyboardRow.qml
|
|
||||||
KeyboardRow 2.0 KeyboardRow.qml
|
|
||||||
KeyboardRow 1.0 KeyboardRow.qml
|
|
||||||
ModeKey 6.0 ModeKey.qml
|
|
||||||
ModeKey 2.0 ModeKey.qml
|
|
||||||
ModeKey 1.0 ModeKey.qml
|
|
||||||
MultiSoundEffect 6.0 MultiSoundEffect.qml
|
|
||||||
MultiSoundEffect 2.0 MultiSoundEffect.qml
|
|
||||||
MultiSoundEffect 1.0 MultiSoundEffect.qml
|
|
||||||
MultitapInputMethod 6.0 MultitapInputMethod.qml
|
|
||||||
MultitapInputMethod 2.0 MultitapInputMethod.qml
|
|
||||||
MultitapInputMethod 1.0 MultitapInputMethod.qml
|
|
||||||
NumberKey 6.0 NumberKey.qml
|
|
||||||
NumberKey 2.0 NumberKey.qml
|
|
||||||
NumberKey 1.0 NumberKey.qml
|
|
||||||
PopupList 6.0 PopupList.qml
|
|
||||||
PopupList 2.0 PopupList.qml
|
|
||||||
PopupList 1.0 PopupList.qml
|
|
||||||
SelectionControl 6.0 SelectionControl.qml
|
|
||||||
SelectionControl 2.0 SelectionControl.qml
|
|
||||||
SelectionControl 1.0 SelectionControl.qml
|
|
||||||
ShadowInputControl 6.0 ShadowInputControl.qml
|
|
||||||
ShadowInputControl 2.0 ShadowInputControl.qml
|
|
||||||
ShadowInputControl 1.0 ShadowInputControl.qml
|
|
||||||
ShiftKey 6.0 ShiftKey.qml
|
|
||||||
ShiftKey 2.0 ShiftKey.qml
|
|
||||||
ShiftKey 1.0 ShiftKey.qml
|
|
||||||
SpaceKey 6.0 SpaceKey.qml
|
|
||||||
SpaceKey 2.0 SpaceKey.qml
|
|
||||||
SpaceKey 1.0 SpaceKey.qml
|
|
||||||
SymbolModeKey 6.0 SymbolModeKey.qml
|
|
||||||
SymbolModeKey 2.0 SymbolModeKey.qml
|
|
||||||
SymbolModeKey 1.0 SymbolModeKey.qml
|
|
||||||
TraceInputArea 6.0 TraceInputArea.qml
|
|
||||||
TraceInputArea 2.0 TraceInputArea.qml
|
|
||||||
TraceInputArea 1.0 TraceInputArea.qml
|
|
||||||
TraceInputKey 6.0 TraceInputKey.qml
|
|
||||||
TraceInputKey 2.0 TraceInputKey.qml
|
|
||||||
TraceInputKey 1.0 TraceInputKey.qml
|
|
||||||
WordCandidatePopupList 6.0 WordCandidatePopupList.qml
|
|
||||||
WordCandidatePopupList 2.0 WordCandidatePopupList.qml
|
|
||||||
WordCandidatePopupList 1.0 WordCandidatePopupList.qml
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Layouts
|
|
||||||
linktarget Qt6::qtvkblayoutsplugin
|
|
||||||
plugin qtvkblayoutsplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_LayoutsPlugin
|
|
||||||
typeinfo qtvkblayoutsplugin.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Layouts/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins.Hangul
|
|
||||||
linktarget Qt6::qtvkbhangulplugin
|
|
||||||
plugin qtvkbhangulplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_Plugins_HangulPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.VirtualKeyboard auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/Hangul/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins.OpenWNN
|
|
||||||
linktarget Qt6::qtvkbopenwnnplugin
|
|
||||||
plugin qtvkbopenwnnplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_Plugins_OpenWNNPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.VirtualKeyboard auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/OpenWNN/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins.Pinyin
|
|
||||||
linktarget Qt6::qtvkbpinyinplugin
|
|
||||||
plugin qtvkbpinyinplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_Plugins_PinyinPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.VirtualKeyboard auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/Pinyin/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins.TCIme
|
|
||||||
linktarget Qt6::qtvkbtcimeplugin
|
|
||||||
plugin qtvkbtcimeplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_Plugins_TCImePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.VirtualKeyboard auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/TCIme/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins.Thai
|
|
||||||
linktarget Qt6::qtvkbthaiplugin
|
|
||||||
plugin qtvkbthaiplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_Plugins_ThaiPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick.VirtualKeyboard auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/Thai/
|
|
||||||
|
|
@@ -1,12 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Plugins
|
|
||||||
linktarget Qt6::qtvkbpluginsplugin
|
|
||||||
optional plugin qtvkbpluginsplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_PluginsPlugin
|
|
||||||
typeinfo qtvkbpluginsplugin.qmltypes
|
|
||||||
import QtQuick.VirtualKeyboard.Plugins.Hangul auto
|
|
||||||
import QtQuick.VirtualKeyboard.Plugins.OpenWNN auto
|
|
||||||
import QtQuick.VirtualKeyboard.Plugins.Pinyin auto
|
|
||||||
import QtQuick.VirtualKeyboard.Plugins.TCIme auto
|
|
||||||
import QtQuick.VirtualKeyboard.Plugins.Thai auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Plugins/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Settings
|
|
||||||
linktarget Qt6::qtvkbsettingsplugin
|
|
||||||
plugin qtvkbsettingsplugin
|
|
||||||
classname QtQuick_VirtualKeyboard_SettingsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Settings/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Styles.Builtin
|
|
||||||
linktarget Qt6::qtvkbbuiltinstylesplugin
|
|
||||||
plugin qtvkbbuiltinstylesplugin
|
|
||||||
classname QtQuickVirtualKeyboardStylesBuiltinPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Styles/Builtin/
|
|
||||||
|
|
@@ -1,30 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard.Styles
|
|
||||||
linktarget Qt6::qtvkbstylesplugin
|
|
||||||
plugin qtvkbstylesplugin
|
|
||||||
classname QtQuickVirtualKeyboardStylesPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.VirtualKeyboard.Styles.Builtin auto
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/Styles/
|
|
||||||
KeyboardStyle 6.0 KeyboardStyle.qml
|
|
||||||
KeyboardStyle 2.0 KeyboardStyle.qml
|
|
||||||
KeyboardStyle 1.0 KeyboardStyle.qml
|
|
||||||
KeyIcon 6.0 KeyIcon.qml
|
|
||||||
KeyIcon 2.0 KeyIcon.qml
|
|
||||||
KeyIcon 1.0 KeyIcon.qml
|
|
||||||
KeyPanel 6.0 KeyPanel.qml
|
|
||||||
KeyPanel 2.0 KeyPanel.qml
|
|
||||||
KeyPanel 1.0 KeyPanel.qml
|
|
||||||
SelectionListItem 6.0 SelectionListItem.qml
|
|
||||||
SelectionListItem 2.0 SelectionListItem.qml
|
|
||||||
SelectionListItem 1.0 SelectionListItem.qml
|
|
||||||
TraceInputKeyPanel 6.0 TraceInputKeyPanel.qml
|
|
||||||
TraceInputKeyPanel 2.0 TraceInputKeyPanel.qml
|
|
||||||
TraceInputKeyPanel 1.0 TraceInputKeyPanel.qml
|
|
||||||
TraceCanvas 6.0 TraceCanvas.qml
|
|
||||||
TraceCanvas 2.0 TraceCanvas.qml
|
|
||||||
TraceCanvas 1.0 TraceCanvas.qml
|
|
||||||
TraceUtils 6.0 TraceUtils.js
|
|
||||||
TraceUtils 2.0 TraceUtils.js
|
|
||||||
TraceUtils 1.0 TraceUtils.js
|
|
||||||
|
|
@@ -1,25 +0,0 @@
|
|||||||
module QtQuick.VirtualKeyboard
|
|
||||||
linktarget Qt6::qtvkbplugin
|
|
||||||
optional plugin qtvkbplugin
|
|
||||||
classname QtQuick_VirtualKeyboardPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQuick.VirtualKeyboard.Layouts auto
|
|
||||||
import QtQuick.VirtualKeyboard.Components auto
|
|
||||||
depends QtQuick auto
|
|
||||||
depends QtQuick.Window auto
|
|
||||||
depends QtQuick.Layouts auto
|
|
||||||
depends Qt.labs.folderlistmodel auto
|
|
||||||
depends QtQuick.VirtualKeyboard.Settings auto
|
|
||||||
depends QtQuick.VirtualKeyboard.Styles auto
|
|
||||||
depends QtQuick.VirtualKeyboard.Plugins auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/VirtualKeyboard/
|
|
||||||
HandwritingInputPanel 6.0 HandwritingInputPanel.qml
|
|
||||||
HandwritingInputPanel 2.0 HandwritingInputPanel.qml
|
|
||||||
HandwritingInputPanel 1.0 HandwritingInputPanel.qml
|
|
||||||
InputPanel 6.0 InputPanel.qml
|
|
||||||
InputPanel 2.0 InputPanel.qml
|
|
||||||
InputPanel 1.0 InputPanel.qml
|
|
||||||
EnterKey 6.0 EnterKey.qml
|
|
||||||
EnterKey 2.0 EnterKey.qml
|
|
||||||
EnterKey 1.0 EnterKey.qml
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick.Window
|
|
||||||
linktarget Qt6::quickwindow
|
|
||||||
plugin quickwindowplugin
|
|
||||||
classname QtQuick_WindowPlugin
|
|
||||||
typeinfo quickwindow.qmltypes
|
|
||||||
import QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/Window/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick
|
|
||||||
linktarget Qt6::qtquick2plugin
|
|
||||||
optional plugin qtquick2plugin
|
|
||||||
classname QtQuick2Plugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
import QtQml auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/
|
|
||||||
|
|
@@ -1,23 +0,0 @@
|
|||||||
module QtQuick.tooling
|
|
||||||
linktarget Qt6::quicktooling
|
|
||||||
plugin quicktoolingplugin
|
|
||||||
classname QtQuick_toolingPlugin
|
|
||||||
typeinfo quicktooling.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick/tooling/
|
|
||||||
Component 1.2 Component.qml
|
|
||||||
Component 6.0 Component.qml
|
|
||||||
Enum 1.2 Enum.qml
|
|
||||||
Enum 6.0 Enum.qml
|
|
||||||
Member 1.2 Member.qml
|
|
||||||
Member 6.0 Member.qml
|
|
||||||
Method 1.2 Method.qml
|
|
||||||
Method 6.0 Method.qml
|
|
||||||
Module 1.2 Module.qml
|
|
||||||
Module 6.0 Module.qml
|
|
||||||
Parameter 1.2 Parameter.qml
|
|
||||||
Parameter 6.0 Parameter.qml
|
|
||||||
Property 1.2 Property.qml
|
|
||||||
Property 6.0 Property.qml
|
|
||||||
Signal 1.2 Signal.qml
|
|
||||||
Signal 6.0 Signal.qml
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick3D.AssetUtils
|
|
||||||
linktarget Qt6::qtquick3dassetutilsplugin
|
|
||||||
optional plugin qtquick3dassetutilsplugin
|
|
||||||
classname QtQuick3DAssetUtilsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/AssetUtils/
|
|
||||||
|
|
@@ -1,31 +0,0 @@
|
|||||||
module QtQuick3D.Effects
|
|
||||||
linktarget Qt6::qtquick3deffectplugin
|
|
||||||
optional plugin qtquick3deffectplugin
|
|
||||||
classname QtQuick3DEffectPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo Quick3DEffects.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
depends QtQuick.Window auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Effects/
|
|
||||||
Vignette 6.0 Vignette.qml
|
|
||||||
TiltShift 6.0 TiltShift.qml
|
|
||||||
SCurveTonemap 6.0 SCurveTonemap.qml
|
|
||||||
Scatter 6.0 Scatter.qml
|
|
||||||
MotionBlur 6.0 MotionBlur.qml
|
|
||||||
HDRBloomTonemap 6.0 HDRBloomTonemap.qml
|
|
||||||
GaussianBlur 6.0 GaussianBlur.qml
|
|
||||||
Fxaa 6.0 Fxaa.qml
|
|
||||||
Flip 6.0 Flip.qml
|
|
||||||
Emboss 6.0 Emboss.qml
|
|
||||||
EdgeDetect 6.0 EdgeDetect.qml
|
|
||||||
DistortionSpiral 6.0 DistortionSpiral.qml
|
|
||||||
DistortionSphere 6.0 DistortionSphere.qml
|
|
||||||
DistortionRipple 6.0 DistortionRipple.qml
|
|
||||||
Desaturate 6.0 Desaturate.qml
|
|
||||||
DepthOfFieldHQBlur 6.0 DepthOfFieldHQBlur.qml
|
|
||||||
ColorMaster 6.0 ColorMaster.qml
|
|
||||||
ChromaticAberration 6.0 ChromaticAberration.qml
|
|
||||||
BrushStrokes 6.0 BrushStrokes.qml
|
|
||||||
Blur 6.0 Blur.qml
|
|
||||||
AdditiveColorGradient 6.0 AdditiveColorGradient.qml
|
|
||||||
|
|
@@ -1,12 +0,0 @@
|
|||||||
module QtQuick3D.Helpers.impl
|
|
||||||
linktarget Qt6::qtquick3dhelpersimplplugin
|
|
||||||
plugin qtquick3dhelpersimplplugin
|
|
||||||
classname QtQuick3DHelpersImplPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
depends Quick3DHelpers auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Helpers/impl/
|
|
||||||
DepthOfFieldBlur 6.0 DepthOfFieldBlur.qml
|
|
||||||
SceneEffect 6.0 SceneEffect.qml
|
|
||||||
LightmapperOutputWindow 6.0 LightmapperOutputWindow.qml
|
|
||||||
|
|
@@ -1,21 +0,0 @@
|
|||||||
module QtQuick3D.Helpers
|
|
||||||
linktarget Qt6::qtquick3dhelpersplugin
|
|
||||||
optional plugin qtquick3dhelpersplugin
|
|
||||||
classname QtQuick3DHelpersPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Helpers/
|
|
||||||
AxisHelper 6.0 AxisHelper.qml
|
|
||||||
AxisHelper 1.0 AxisHelper.qml
|
|
||||||
DebugView 6.0 DebugView.qml
|
|
||||||
DebugView 1.0 DebugView.qml
|
|
||||||
WasdController 6.0 WasdController.qml
|
|
||||||
WasdController 1.0 WasdController.qml
|
|
||||||
OrbitCameraController 6.0 OrbitCameraController.qml
|
|
||||||
OrbitCameraController 1.0 OrbitCameraController.qml
|
|
||||||
LodManager 6.0 LodManager.qml
|
|
||||||
LodManager 1.0 LodManager.qml
|
|
||||||
ExtendedSceneEnvironment 6.0 ExtendedSceneEnvironment.qml
|
|
||||||
ExtendedSceneEnvironment 1.0 ExtendedSceneEnvironment.qml
|
|
||||||
|
|
@@ -1,13 +0,0 @@
|
|||||||
module QtQuick3D.MaterialEditor
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/MaterialEditor/
|
|
||||||
ShaderEditor 1.0 ShaderEditor.qml
|
|
||||||
EditorView 1.0 EditorView.qml
|
|
||||||
Preview 1.0 Preview.qml
|
|
||||||
PreviewControls 1.0 PreviewControls.qml
|
|
||||||
FrostedGlass 1.0 FrostedGlass.qml
|
|
||||||
AboutDialog 1.0 AboutDialog.qml
|
|
||||||
MaterialPropertiesPane 1.0 MaterialPropertiesPane.qml
|
|
||||||
SaveChangesDialog 1.0 SaveChangesDialog.qml
|
|
||||||
UniformManagerPane 1.0 UniformManagerPane.qml
|
|
||||||
|
|
@@ -1,10 +0,0 @@
|
|||||||
module QtQuick3D.ParticleEffects
|
|
||||||
linktarget Qt6::qtquick3dparticleeffectsplugin
|
|
||||||
optional plugin qtquick3dparticleeffectsplugin
|
|
||||||
classname QtQuick3DParticleEffectsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo Quick3DParticleEffects.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
depends QtQuick3DParticles3D auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/ParticleEffects/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick3D.Particles3D
|
|
||||||
linktarget Qt6::qtquick3dparticles3dplugin
|
|
||||||
optional plugin qtquick3dparticles3dplugin
|
|
||||||
classname QtQuick3DParticles3DPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick3D auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Particles3D/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick3D.Physics.Helpers
|
|
||||||
linktarget Qt6::qtquick3dphysicshelpersplugin
|
|
||||||
optional plugin qtquick3dphysicshelpersplugin
|
|
||||||
classname QtQuick3DPhysicsHelpersPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick3DPhysics auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Physics/Helpers/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtQuick3D.Physics
|
|
||||||
linktarget Qt6::qquick3dphysicsplugin
|
|
||||||
plugin qquick3dphysicsplugin
|
|
||||||
classname QtQuick3DPhysicsPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/Physics/
|
|
||||||
|
|
@@ -1,10 +0,0 @@
|
|||||||
module QtQuick3D.SpatialAudio
|
|
||||||
linktarget Qt6::quick3dspatialaudio
|
|
||||||
plugin quick3dspatialaudioplugin
|
|
||||||
classname QQuick3DAudioModule
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick
|
|
||||||
depends QtQuick3DPrivate
|
|
||||||
depends QtMultimedia
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/SpatialAudio/
|
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
module QtQuick3D
|
|
||||||
linktarget Qt6::qquick3dplugin
|
|
||||||
plugin qquick3dplugin
|
|
||||||
classname QQuick3DPlugin
|
|
||||||
designersupported
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQuick auto
|
|
||||||
prefer :/qt-project.org/imports/QtQuick3D/
|
|
||||||
|
|
@@ -1,7 +0,0 @@
|
|||||||
module QtRemoteObjects
|
|
||||||
linktarget Qt6::declarative_remoteobjects
|
|
||||||
optional plugin declarative_remoteobjectsplugin
|
|
||||||
classname QtRemoteObjectsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
prefer :/qt-project.org/imports/QtRemoteObjects/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtScxml
|
|
||||||
linktarget Qt6::declarative_scxml
|
|
||||||
optional plugin declarative_scxmlplugin
|
|
||||||
classname QScxmlStateMachinePlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml
|
|
||||||
prefer :/qt-project.org/imports/QtScxml/
|
|
||||||
|
|
@@ -1,8 +0,0 @@
|
|||||||
module QtSensors
|
|
||||||
linktarget Qt6::SensorsQuickplugin
|
|
||||||
optional plugin sensorsquickplugin
|
|
||||||
classname QtSensorsPlugin
|
|
||||||
typeinfo plugins.qmltypes
|
|
||||||
depends QtQml
|
|
||||||
prefer :/qt-project.org/imports/QtSensors/
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user