Qt Quick Tutorial Basics

From Qt Wiki
Revision as of 14:39, 23 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search



[toc align_right="yes" depth="3"]

English ["French":http://qt-devnet.developpez.com/tutoriels/qt-quick/tutoriel/module-1/bases/]

Qt Quick Tutorial: Module 1 - Basics

Components and Properties

No, we won't start with a QML program printing "Hello world!". We'll start with something much more exciting: a QML program that draws a blue rectangle of 300x300 pixels.

<br />// File: BasicSteps_1.qml

import QtQuick 1.0

Rectangle {<br /> width: 300<br /> height: 300<br /> color: &quot;blue&amp;quot;<br />}<br />

We run QML viewer to see the result of our work:

&gt; qmlviewer BasicSteps_1.qml &amp;amp;<code>

Yes, the above QML code, indeed, produces a blue rectangle. A self-contained piece of QML code as the one above is called a '''QML document''' (see also &quot;QML Documents&amp;quot;:http://doc.qt.nokia.com/4.7-snapshot/qdeclarativedocuments.html). A QML document is a piece of QML code that contains at least one &lt;code&amp;gt;import&amp;lt;/code&amp;gt; statement and exactly one top-level component. In our example, &lt;code&amp;gt;Rectangle&amp;lt;/code&amp;gt; is the single top-level component. Generally, a QML document corresponds to a file, but it could also be text stored in a string or a URL pointing to QML document stored on a remote server.

The statement &lt;code&amp;gt;import Qt 4.7&amp;lt;/code&amp;gt; makes all the QML components of Qt 4.7 available to our QML document. Qt 4.7 comes with built-in components like Rectangle, Text, ListView, WebView, Flipable, Animation and many more (see &quot;QML Elements&amp;quot;:http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeelements.html for a complete list).

'''Components''' are the QML equivalents of C++ classes. They have properties, methods (member functions), signals and slots. The occurrence of &lt;code&amp;gt;Rectangle&amp;lt;/code&amp;gt; in lines 5-9 is an instance of a &lt;code&amp;gt;Rectangle&amp;lt;/code&amp;gt; component: a blue 300x300 pixel instance of a &lt;code&amp;gt;Rectangle&amp;lt;/code&amp;gt; component. In the Qt documentation, '''element''' is often used as a synonym for component. Components with a visual representation like a Rectangle or Text are called '''items'''. Component names always start with an uppercase letter followed by zero or more letters, digits and underscores.

An instance of a component is characterized by its '''properties''', which are name-value pairs. The &lt;code&amp;gt;Rectangle&amp;lt;/code&amp;gt; instance above has three properties &lt;code&amp;gt;width&amp;lt;/code&amp;gt;, &lt;code&amp;gt;height&amp;lt;/code&amp;gt; and &lt;code&amp;gt;color&amp;lt;/code&amp;gt; with the values &lt;code&amp;gt;300&amp;lt;/code&amp;gt;, &lt;code&amp;gt;300&amp;lt;/code&amp;gt; and &lt;code&amp;gt;blue&amp;lt;/code&amp;gt;, respectively. Property names always start with a lowercase letter followed by zero or more letters, digits and underscores. Properties are type-safe, however, the line

width: "Oslo&quot;

would be illegal, because the <code&gt;width&lt;/code&gt; property expects a number of type real. QML supports the following basic types: bool, color, date, font, int, list, point, real, rect, size, string, time, url.

Several properties can be written in one line separated by semicolon:

<br />width: 300; height: 300<br />color: &quot;blue&amp;quot;<br />

The order of properties is irrelevant. We could rewrite the <code&gt;Rectangle&lt;/code&gt; as

<br />Rectangle {<br /> color: &quot;blue&amp;quot;<br /> height: 300<br /> width: 300<br />}<br />

and the result would be the same.

Comments are marked in QML in the same way as in C++. Comments to the end of the line start with <code&gt;//&lt;/code&gt;. Line 1 of our example contains such a comment. Multi-line comments start with <code&gt;/*</code&gt; and end with <code&gt;/&lt;/code&gt;.
h2. Composition of Components
The excitement about our blue rectangle is wearing off by now, isn't it? So, let us turn the blue rectangle into a photo frame with a photo in the center, a title below the photo and a cornsilk colored frame. We position a QML <code&gt;Image&lt;/code&gt; component for the photo and a <code&gt;Text&lt;/code&gt; component for the title on the <code&gt;Rectangle&lt;/code&gt; component and change the color of the rectangle into the RGB value <code&gt;#FFF8DC&lt;/code&gt; for cornsilk.


<br />// File: BasicSteps_2.qml<br />import QtQuick 1.0
<br />Rectangle {<br /> width: 300<br /> height: 300<br /> color: &quot;#FFF8DC&amp;quot; // cornsilk
<br /> Image {<br /> x: 10; y: 45<br /> source: &quot;voringsfossen1.jpg&amp;quot;<br /> }
<br /> Text {<br /> x: 10; y: 265<br /> text: &quot;Voringsfossen&amp;quot;<br /> }<br />}<br />


The <code&gt;Image&lt;/code&gt; component is a child of the <code&gt;Rectangle&lt;/code&gt; and is located at x-position 10 and y-position 45 relative to the <code&gt;Rectangle&lt;/code&gt;'s origin (10 pixels to the right and 45 pixels down from the top left corner of the rectangle). As the image is 280x210 pixels, this position centers the image horizontally and vertically within the rectangle. The <code&gt;source&lt;/code&gt; property tells the QML runtime where to look for the image, which is stored in the file <code&gt;"voringsfossen1.jpg&quot;</code&gt;. The image file is located in the same directory as the QML file <code&gt;BasicSteps.qml&lt;/code&gt;. In general, the <code&gt;source&lt;/code&gt; property takes a URL. The image could be located anywhere in the Internet or our local file system.
The <code&gt;Text&lt;/code&gt; is positioned at 10 pixels to the right and 265 pixels down from the top left corner of the rectangle. The displayed text is "Voringsfossen&quot;, which is the name of Norway's most famous and highest waterfall. Again, <code&gt;Text&lt;/code&gt; is a child of <code&gt;Rectangle&lt;/code&gt; .
This simple example of a photo frame shows how to compose basic components into a more complex components. The components or strictly speaking the component instances are arranged in a tree. In our example, the <code&gt;Rectangle&lt;/code&gt; is the root of the tree and <code&gt;Image&lt;/code&gt; and <code&gt;Text&lt;/code&gt; are the root's children. The children could again have children of their own and so on. These instance trees mirror the instance trees of Qt's graphics items or widgets.
The result won't win us a design prize, but it is a good first shot. Let us improve it step by step. As the title shouldn't look crammed into the frame below the photo, we move the photo 20 pixels up. We just change <code&gt;Image&lt;/code&gt;'s property <code&gt;y&lt;/code&gt; to <code&gt;25&lt;/code&gt;.


<br /> Image {<br /> x: 10; y: 25<br /> source: &quot;voringsfossen1.jpg&amp;quot;<br /> }<br />


We want the title to be a bit bigger - say 20 pixels (line 4) - and want it to be centered both horizontally (line 5) and vertically (line 6) in the area below the photo.


<br /> Text {<br /> x: 0; y: 235<br /> text: &quot;Voringsfossen&amp;quot;<br /> font.pixelSize: 20<br /> width: 300; horizontalAlignment: Text.AlignHCenter<br /> height: 65; verticalAlignment: Text.AlignVCenter<br /> }<br />


It is important to note that the property <code&gt;horizontalAlignment&lt;/code&gt; only has an effect if a width is specified. Without a width, the QML runtime wouldn't know where to position the text (just try it out). The same is true for the property <code&gt;verticalAlignment&lt;/code&gt;. So, whenever we use <code&gt;horizontalAlignment&lt;/code&gt; and <code&gt;verticalAlignment&lt;/code&gt;, we must give <code&gt;width&lt;/code&gt; and <code&gt;height&lt;/code&gt;, respectively.
h2. Custom Properties
Before we create our own properties, we create a real need for them. Our next goal is to show three photos side by side. We achieve this by simply instantiating the photo from <code&gt;BasicSteps_2.qml&lt;/code&gt; three times and by enclosing these three rectangles by a big rectangle (see BasicSteps_3.qml for the complete source code).


<br />// File: BasicSteps_3.qml<br />import QtQuick 1.0
<br />Rectangle {<br /> width: 3''' 300; height: 300

// Photo 1<br /> Rectangle {<br /> x: 0; y: 0<br /> …<br /> }

// Photo 2<br /> Rectangle {<br /> x: 300; y: 0<br /> …<br /> }

// Photo 3<br /> Rectangle {<br /> x: 2 * 300; y: 0<br /> …<br /> }<br />}<br />

Photo 1, 2 and 3 are identical copies of the <code&gt;Rectangle&lt;/code&gt; from <code&gt;BasicSteps_2.qml&lt;/code&gt; - except for the properties <code&gt;x&lt;/code&gt; and <code&gt;y&lt;/code&gt;. The position of the photo rectangles are relative to the enclosing rectangle, which has three times the width of a single photo rectangle and the same height. The photos are placed at the x-positions 0, 300 and 600 and at y-position 0 such that they appear side by side. As we see in lines 5 and 21, we can use arbitrary JavaScript expressions for the property values. In the example, we use the expressions <code&gt;3 * 300&lt;/code&gt; and <code&gt;2 * 300&lt;/code&gt;.

With these changes, we see the same photo three times. By changing the properties <code&gt;source&lt;/code&gt; and <code&gt;text&lt;/code&gt;, we can easily change the image and the title of the photos.

The code isn't well written and smells of heavy code duplication. We'll fix the duplication from the three almost identical photo rectangles in the next module Components. We'll fix the duplication from the magical numbers like 300, 25, 65 or 20 right way - by introducing properties.

The worst offender is the magic number 300, which occurs 13 times. So, if we want to change the size of our photo frames to, say, 400, we must perform 13 changes - and will typically forget to change at least one occurrence. The solution is to introduce a property <code&gt;frameSize&lt;/code&gt; at the beginning of the big rectangle and replace every occurrence of 300 by <code&gt;frameSize&lt;/code&gt;. Similarly, we eliminate the magic numbers 10, 25 and 65 by introducing the properties <code&gt;leftMargin&lt;/code&gt;, <code&gt;topMargin&lt;/code&gt; and <code&gt;bottomMargin&lt;/code&gt;, respectively, and by replacing every occurrence of these magic numbers by its properties. We also spot that <code&gt;235 = 300 - 65 = frameSize - bottomMargin&lt;/code&gt; and replace every occurrence of 235 by the expression <code&gt;frameSize - bottomMargin&lt;/code&gt;. While we are on a roll, we also replace the RGB value <code&gt;"#FFF8DC&quot;</code&gt; by the property <code&gt;frameColor&lt;/code&gt;. After all these modifications, the code for the enclosing rectangle and photo 3 looks as follows (see BasicSteps_4.qml for the complete code):

<br />Rectangle {<br /> property int frameSize: 300<br /> property int leftMargin: 10<br /> property int topMargin: 25<br /> property int bottomMargin: 65<br /> property int fontSize: 20<br /> property color frameColor: &quot;#FFF8DC&amp;quot; // cornsilk

width: 3 * frameSize; height: frameSize



// Photo 3<br /> Rectangle {<br /> x: 2 * frameSize; y: 0<br /> width: frameSize; height: frameSize<br /> color: frameColor

Image {<br /> x: leftMargin; y: topMargin<br /> source: &quot;cotton_grass.jpg&amp;quot;<br /> }

Text {<br /> x: 0; y: frameSize - bottomMargin<br /> text: &quot;Cotton Grass&amp;quot;<br /> font.pixelSize: fontSize<br /> width: frameSize; horizontalAlignment: Text.AlignHCenter<br /> height: bottomMargin; verticalAlignment: Text.AlignVCenter<br /> }<br /> }<br />

The general syntax for a custom property is

<br /> property &lt;type&amp;gt; &lt;name&amp;gt;[: &lt;value&amp;gt;]<br />


The <code&gt;property&lt;/code&gt; keyword is followed by the name of the type, <code&gt;&#60;type&amp;#62;</code&gt;, and the name of the property, <code&gt;&#60;name&amp;#62;</code&gt;. The default value, <code&gt;&#60;value&amp;#62;</code&gt;, for the property is optional. For example, the line

<br /> property int frameSize: 300<br />


defines a property with name <code&gt;frameSize&lt;/code&gt;, which is of integer type and which has the default value 300.

So far, we've glossed over the scoping rules for properties, because they worked as expected. The properties of a parent instance are accessible by the child instances, the grandchild instances and so on all the way down the instance tree. This is why, for example, the <code&gt;leftMargin&lt;/code&gt; property can be used in the grandchild <code&gt;Image&lt;/code&gt; of the outermost <code&gt;Rectangle&lt;/code&gt;, where it is defined. For the moment, we can live with this scoping rule, which we'll amend when needed.

"Module 2 - Components&quot;:http://developer.qt.nokia.com/wiki/Qt_Quick_Tutorial_Components

"Tutorial Main Page&quot;:http://developer.qt.nokia.com/wiki/Qt_Quick_Tutorial