PySide QML Tutorial Basic 3: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
=PySide <span class="caps">QML</span> Basic Tutorial 3: States and Transitions=
[[Category:LanguageBindings::PySide]]
 
= PySide QML Basic Tutorial 3: States and Transitions =


In this chapter, we make this example a little bit more dynamic by introducing states and transitions. We want our text to move to the bottom of the screen, rotate and become red when clicked.
In this chapter, we make this example a little bit more dynamic by introducing states and transitions. We want our text to move to the bottom of the screen, rotate and become red when clicked.


Here is the <span class="caps">QML</span> code:
Here is the QML code:
 
<code><br />import QtQuick 1.0
 
Rectangle {<br /> id: page<br /> width: 500; height: 200<br /> color: &quot;lightgray&amp;quot;
 
Text {<br /> id: helloText<br /> text: &quot;Hello world!&quot;<br /> y: 30<br /> anchors.horizontalCenter: page.horizontalCenter<br /> font.pointSize: 24; font.bold: true
 
MouseArea { id: mouseArea; anchors.fill: parent }
 
states: State {<br /> name: &quot;down&amp;quot;; when: mouseArea.pressed == true<br /> PropertyChanges { target: helloText; y: 160; rotation: 180; color: &quot;red&amp;quot; }<br /> }
 
transitions: Transition {<br /> from: &quot;&quot;; to: &quot;down&amp;quot;; reversible: true<br /> ParallelAnimation {<br /> NumberAnimation { properties: &quot;y,rotation&amp;quot;; duration: 500; easing.type: Easing.InOutQuad }<br /> ColorAnimation { duration: 500 }<br /> }<br /> }<br /> }
 
Grid {<br /> id: colorPicker<br /> x: 4; anchors.bottom: page.bottom; anchors.bottomMargin: 4<br /> rows: 2; columns: 3; spacing: 3
 
Cell { cellColor: &quot;red&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;green&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;blue&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;yellow&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;steelblue&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;black&amp;quot;; onClicked: helloText.color = cellColor }<br /> }<br />}<br /></code>
 
== Walkthrough ==


==Walkthrough==
<code><br /> states: State {<br /> name: &quot;down&amp;quot;; when: mouseArea.pressed == true<br /> PropertyChanges { target: helloText; y: 160; rotation: 180; color: &quot;red&amp;quot; }<br /> }<br /></code>


First, we create a new ''down'' state for our text element. This state will be activated when the MouseArea is pressed, and deactivated when it is released.
First, we create a new ''down'' state for our text element. This state will be activated when the MouseArea is pressed, and deactivated when it is released.


The ''down'' state includes a set of property changes from our implicit ''default state'' (the items as they were initially defined in the <span class="caps">QML</span>). Specifically, we set the ''y'' property of the text to ''160'', the rotation to ''180'' and the ''color'' to red.
The ''down'' state includes a set of property changes from our implicit ''default state'' (the items as they were initially defined in the QML). Specifically, we set the ''y'' property of the text to ''160'', the rotation to ''180'' and the ''color'' to red.
 
<code><br /> transitions: Transition {<br /> from: &quot;&quot;; to: &quot;down&amp;quot;; reversible: true<br /> ParallelAnimation {<br /> NumberAnimation { properties: &quot;y,rotation&amp;quot;; duration: 500; easing.type: Easing.InOutQuad }<br /> ColorAnimation { duration: 500 }<br /> }<br /> }<br /></code>


Because we don’t want the text to appear at the bottom instantly but rather move smoothly, we add a transition between our two states.
Because we don’t want the text to appear at the bottom instantly but rather move smoothly, we add a transition between our two states.
Line 16: Line 38:


Because we want the same transition to be run in reverse when changing back from the ''down'' state to the default state, we set ''reversible'' to ''true''. This is equivalent to writing the two transitions separately.
Because we want the same transition to be run in reverse when changing back from the ''down'' state to the default state, we set ''reversible'' to ''true''. This is equivalent to writing the two transitions separately.
The ParallelAnimation element makes sure that the two types of animations (number and color) start at the same time. We could also run them one after the other by using SequentialAnimation instead.
===Categories:===
* [[:Category:LanguageBindings|LanguageBindings]]
** [[:Category:LanguageBindings::PySide|PySide]]

Revision as of 09:30, 24 February 2015


PySide QML Basic Tutorial 3: States and Transitions

In this chapter, we make this example a little bit more dynamic by introducing states and transitions. We want our text to move to the bottom of the screen, rotate and become red when clicked.

Here is the QML code:

<br />import QtQuick 1.0

Rectangle {<br /> id: page<br /> width: 500; height: 200<br /> color: &quot;lightgray&amp;quot;

Text {<br /> id: helloText<br /> text: &quot;Hello world!&quot;<br /> y: 30<br /> anchors.horizontalCenter: page.horizontalCenter<br /> font.pointSize: 24; font.bold: true

MouseArea { id: mouseArea; anchors.fill: parent }

states: State {<br /> name: &quot;down&amp;quot;; when: mouseArea.pressed == true<br /> PropertyChanges { target: helloText; y: 160; rotation: 180; color: &quot;red&amp;quot; }<br /> }

transitions: Transition {<br /> from: &quot;&quot;; to: &quot;down&amp;quot;; reversible: true<br /> ParallelAnimation {<br /> NumberAnimation { properties: &quot;y,rotation&amp;quot;; duration: 500; easing.type: Easing.InOutQuad }<br /> ColorAnimation { duration: 500 }<br /> }<br /> }<br /> }

Grid {<br /> id: colorPicker<br /> x: 4; anchors.bottom: page.bottom; anchors.bottomMargin: 4<br /> rows: 2; columns: 3; spacing: 3

Cell { cellColor: &quot;red&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;green&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;blue&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;yellow&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;steelblue&amp;quot;; onClicked: helloText.color = cellColor }<br /> Cell { cellColor: &quot;black&amp;quot;; onClicked: helloText.color = cellColor }<br /> }<br />}<br />

Walkthrough

<br /> states: State {<br /> name: &quot;down&amp;quot;; when: mouseArea.pressed == true<br /> PropertyChanges { target: helloText; y: 160; rotation: 180; color: &quot;red&amp;quot; }<br /> }<br />

First, we create a new down state for our text element. This state will be activated when the MouseArea is pressed, and deactivated when it is released.

The down state includes a set of property changes from our implicit default state (the items as they were initially defined in the QML). Specifically, we set the y property of the text to 160, the rotation to 180 and the color to red.

<br /> transitions: Transition {<br /> from: &quot;&quot;; to: &quot;down&amp;quot;; reversible: true<br /> ParallelAnimation {<br /> NumberAnimation { properties: &quot;y,rotation&amp;quot;; duration: 500; easing.type: Easing.InOutQuad }<br /> ColorAnimation { duration: 500 }<br /> }<br /> }<br />

Because we don’t want the text to appear at the bottom instantly but rather move smoothly, we add a transition between our two states.

from and to define the states between which the transition will run. In this case, we want a transition from the default state to our down state.

Because we want the same transition to be run in reverse when changing back from the down state to the default state, we set reversible to true. This is equivalent to writing the two transitions separately.