Tumbler and QT5.5
-
Hi Guys
I am introducing a Tumbler into a legacy project in which I am forced to use QT5.5 (with visual studio 2013 integration).Is it possible that QT QuickControls2 can be used with QT5.5 to bring in the Tumbler via QML.
The reason I ask is that QtQuickControl2 is greyed out in the QT Project Option section within Visual Studio.
Thanks for reading.
-
Hi Guys
I am introducing a Tumbler into a legacy project in which I am forced to use QT5.5 (with visual studio 2013 integration).Is it possible that QT QuickControls2 can be used with QT5.5 to bring in the Tumbler via QML.
The reason I ask is that QtQuickControl2 is greyed out in the QT Project Option section within Visual Studio.
Thanks for reading.
@celica said in Tumbler and QT5.5:
Is it possible that QT QuickControls2 can be used with QT5.5 to bring in the Tumbler via QML.
In Qt 5.5, the Tumbler can be found in the Qt Quick Extras module: https://doc.qt.io/archives/qt-5.5/qml-qtquick-extras-tumbler.html
-
@celica said in Tumbler and QT5.5:
Is it possible that QT QuickControls2 can be used with QT5.5 to bring in the Tumbler via QML.
In Qt 5.5, the Tumbler can be found in the Qt Quick Extras module: https://doc.qt.io/archives/qt-5.5/qml-qtquick-extras-tumbler.html
-
@JKSH Thanks for the response.
My available modules are these however - https://ibb.co/FDVyvyN
Quick Controls2 is greyed out for some reason.
Any way to install Quick Controls 2 or QuickExtra?@celica said in Tumbler and QT5.5:
My available modules are these however - https://ibb.co/FDVyvyN
Those are C++ modules, not QML modules.
For C++ modules, you must select a module to make it available in your project. QML modules are different -- you don't need to select them individually because all of them are always available.
Quick Controls2 is greyed out for some reason.
Because Qt Quick Controls 2 does not exist in Qt 5.5.
Any way to install Quick Controls 2 or QuickExtra?
Qt Quick Extras is already installed. You don't need to do anything special.
Just add
import QtQuick.Extras 1.4
to your QML file, as per the documentation. -
@celica said in Tumbler and QT5.5:
My available modules are these however - https://ibb.co/FDVyvyN
Those are C++ modules, not QML modules.
For C++ modules, you must select a module to make it available in your project. QML modules are different -- you don't need to select them individually because all of them are always available.
Quick Controls2 is greyed out for some reason.
Because Qt Quick Controls 2 does not exist in Qt 5.5.
Any way to install Quick Controls 2 or QuickExtra?
Qt Quick Extras is already installed. You don't need to do anything special.
Just add
import QtQuick.Extras 1.4
to your QML file, as per the documentation.