C

Qt Quick Ultralite Studio Components QML Types

Qt Quick Ultralite Studio Components is a collection of compatible QML types to Qt Quick Studio Components. Currently it provides a limited set of QML types. See Differences between Qt Quick Ultralite Studio Components and Qt Quick Studio Components for details.

Using the Module

To use the Qt Quick Ultralite Studio Components QML types, add Qul::StudioComponents to the list of module files in your .qmlproject.

ModuleFiles {
    MCU.qulModules: ["Qul::StudioComponents"]
}

After adding the module files, add the following import statement to your .qml file:

import QtQuickUltralite.Studio.Components

Linking an Application to the CMake Target

Note: This step applies to deprecated CMake APIs only.

When using CMake projects, link your application to the Qul::StudioComponents CMake target.

target_link_libraries(app PRIVATE Qul::StudioComponents)

Qt Quick Ultralite Studio Components provides the compatible QML types to run the same application with the basic set of Qt Quick, since Qt Quick Studio Components are only available with Qt Design Studio. See Reusing Qt Quick Ultralite QML objects with Qt QML for more details.

QML Types

ArcItem

Defines an arc shape with the given start and end values

Available under certain Qt licenses.
Find out more.