Getting started with Qt Quick
Qt Quick
is:
QML
(a programming language)
QtDeclarative
(a native module and C++
API
)
Qt Creator
(an IDE)
Integrated
GUI
layout and forms designer
Project and build management tools
Integrated, context-sensitive help system
Visual debugger
Code navigation tools
hello-world.qml
import
QtQuick
1.0
Rectangle
{
width
:
200
height
:
200
Text
{
x
:
66
y
:
93
text
:
"Hello World"
}
}
Resources
images.zip
All source code is subject to this
copyright
.