Qt Quick – Very simple rapid app development
Qt Quick is a part of the SDK from Qt. It consists primarily of the following:
- QML – markup language to create GUI interfaces
- Javascript – scripting language to manage user interactions
- C++ – fast and powerful programming language
By creating a Qt Quick application we are connecting all of these three parts into one. The most common use case for this type of application is to create a GUI with QML and Javascript to handle the user interface and user interactions and C++ as the back end to handle complicated calculations and time-consuming processes.