User Tools

Site Tools


qt-quick-for-designers-1:getting_started_with_qt_quick

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

qt-quick-for-designers-1/getting_started_with_qt_quick.txt · Last modified: 2013/07/06 22:51 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki