~ubuntu-branches/ubuntu/vivid/qtdeclarative-opensource-src-gles/vivid

« back to all changes in this revision

Viewing changes to src/quick/doc/src/tutorial.qdoc

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2014-10-29 07:54:05 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20141029075405-gq1uzomnw3but9g2
Tags: 5.3.2-0ubuntu1
Sync package with qtdeclarative-opensource-src - 5.3.2-3ubuntu1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
2
**
3
 
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
 
3
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4
4
** Contact: http://www.qt-project.org/legal
5
5
**
6
6
** This file is part of the documentation of the Qt Toolkit.
31
31
\brief An introduction to the basic concepts and features of QML.
32
32
\nextpage QML Tutorial 1 - Basic Types
33
33
 
34
 
This tutorial gives an introduction to QML, the declarative language for Qt Quick. It doesn't cover everything;
 
34
This tutorial gives an introduction to QML, the language for Qt Quick UIs. It doesn't cover everything;
35
35
the emphasis is on teaching the key principles, and features are introduced as needed.
36
36
 
37
37
Through the different steps of this tutorial we will learn about QML basic types, we will create our own QML component
223
223
The \l ParallelAnimation type makes sure that the two types of animations (number and color) start at the same time.
224
224
We could also run them one after the other by using \l SequentialAnimation instead.
225
225
 
226
 
For more details on states and transitions, see \l {Qt Quick States} and the \l{quick/animation/states}{states and transitions example}.
 
226
For more details on states and transitions, see \l {Qt Quick States} and the \l{animation/states}{states and transitions example}.
227
227
*/