User Tools

Site Tools


qt-quick-for-designers-1:getting_started_with_qt_quick

This is an old revision of the document!


Getting started with QtQuick

  • Declarative UI
  • Syntax
  • Examples
  • Qt Creator IDE
  • Comparison between languages
  • Hello world
  • 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"
    }
}
qt-quick-for-designers-1/getting_started_with_qt_quick.1371795783.txt.gz · Last modified: 2013/06/21 06:23 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki