PySide QML Tutorial Advanced 1: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Rename category "LanguageBindings::PySide" -> "PySide")
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
=PySide <span class="caps">QML</span> Advanced Tutorial 1: Creating the Game Canvas and Blocks=


This tutorial walks step-by-step through the creation of a full application using <span class="caps">QML</span>. It assumes that you already know the basics of <span class="caps">QML</span> (for example, from reading the <span class="caps">QML</span> Basic Tutorial. In this tutorial we write a game, ''Same Game'', based on the ''Same Game'' application included in the declarative demos directory, which looks like this:


We will cover concepts for producing a fully functioning application, including JavaScript integration, using <span class="caps">QML</span> States and Behaviors to manage components and enhance your interface, and storing persistent application data.
[[Category:PySide]]


An understanding of JavaScript is helpful to understand parts of this tutorial, but if you don’t know JavaScript you can still get a feel for how you can integrate backend logic to create and control <span class="caps">QML</span> elements.
= PySide QML Advanced Tutorial 1: Creating the Game Canvas and Blocks =


==Creating the application screen==
This tutorial walks step-by-step through the creation of a full application using QML. It assumes that you already know the basics of QML (for example, from reading the QML Basic Tutorial. In this tutorial we write a game, ''Same Game'', based on the ''Same Game'' application included in the declarative demos directory, which looks like this:


The first step is to create the basic <span class="caps">QML</span> items in your application.
We will cover concepts for producing a fully functioning application, including JavaScript integration, using QML States and Behaviors to manage components and enhance your interface, and storing persistent application data.
 
An understanding of JavaScript is helpful to understand parts of this tutorial, but if you don't know JavaScript you can still get a feel for how you can integrate backend logic to create and control QML elements.
 
== Creating the application screen ==
 
The first step is to create the basic QML items in your application.


To begin with, we create our ''Same Game'' application with a main screen like this:
To begin with, we create our ''Same Game'' application with a main screen like this:
Line 15: Line 19:
This is defined by the main application file, ''samegame.qml'', which looks like this:
This is defined by the main application file, ''samegame.qml'', which looks like this:


This gives you a basic game window that includes the main canvas for the blocks, a “New Game” button and a score display.
<code>
import QtQuick 1.0
 
Rectangle {
id: screen
 
width: 490; height: 720
 
SystemPalette { id: activePalette }
 
Item {
width: parent.width
anchors { top: parent.top; bottom: toolBar.top }
 
Image {
id: background
anchors.fill: parent
source: "../shared/pics/background.jpg"
fillMode: Image.PreserveAspectCrop
}
}
 
Rectangle {
id: toolBar
width: parent.width; height: 30
color: activePalette.window
anchors.bottom: screen.bottom
 
Button {
anchors { left: parent.left; verticalCenter: parent.verticalCenter }
text: "New Game"
onClicked: console.log("This doesn't do anything yet…")
}
 
Text {
id: score
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
text: "Score: Who knows?"
}
}
}
</code>
 
This gives you a basic game window that includes the main canvas for the blocks, a "New Game" button and a score display.


One item you may not recognize here is the SystemPalette item. This provides access to the Qt system palette and is used to give the button a more native look-and-feel.
One item you may not recognize here is the SystemPalette item. This provides access to the Qt system palette and is used to give the button a more native look-and-feel.
Line 21: Line 68:
Notice the anchors for the ''Item'', ''Button'' and ''Text'' elements are set using group notation for readability.
Notice the anchors for the ''Item'', ''Button'' and ''Text'' elements are set using group notation for readability.


==Adding Button and Block components==
== Adding Button and Block components ==
 
The ''Button'' item in the code above is defined in a separate component file named ''Button.qml''. To create a functional button, we use the QML elements Text and MouseArea inside a Rectangle. Here is the ''Button.qml'' code:
 
<code>
import QtQuick 1.0
 
Rectangle {
id: container


The ''Button'' item in the code above is defined in a separate component file named ''Button.qml''. To create a functional button, we use the <span class="caps">QML</span> elements Text and MouseArea inside a Rectangle. Here is the ''Button.qml'' code:
property string text: "Button"
 
signal clicked
 
width: buttonLabel.width + 20; height: buttonLabel.height + 5
border { width: 1; color: Qt.darker(activePalette.button) }
smooth: true
radius: 8
 
// color the button with a gradient
gradient: Gradient {
GradientStop {
position: 0.0
color: {
if (mouseArea.pressed)
return activePalette.dark
else
return activePalette.light
}
}
GradientStop { position: 1.0; color: activePalette.button }
}
 
MouseArea {
id: mouseArea
anchors.fill: parent
onClicked: container.clicked();
}
 
Text {
id: buttonLabel
anchors.centerIn: container
color: activePalette.buttonText
text: container.text
}
}
</code>


This essentially defines a rectangle that contains text and can be clicked. The MouseArea has an ''onClicked()'' handler that is implemented to emit the ''clicked()'' signal of the ''container'' when the area is clicked.
This essentially defines a rectangle that contains text and can be clicked. The MouseArea has an ''onClicked()'' handler that is implemented to emit the ''clicked()'' signal of the ''container'' when the area is clicked.
Line 29: Line 120:
In ''Same Game'', the screen is filled with small blocks when the game begins. Each block is just an item that contains an image. The block code is defined in a separate ''Block.qml'' file:
In ''Same Game'', the screen is filled with small blocks when the game begins. Each block is just an item that contains an image. The block code is defined in a separate ''Block.qml'' file:


At the moment, the block doesn’t do anything; it is just an image. As the tutorial progresses we will animate and give behaviors to the blocks. We have not added any code yet to create the blocks; we will do this in the next chapter.
<code>
import QtQuick 1.0


We have set the image to be the size of its parent Item using ''anchors.fill: parent''. This means that when we dynamically create and resize the block items later on in the tutorial, the image will be scaled automatically to the correct size.
Item {
id: block


Notice the relative path for the Image element’s ''source'' property. This path is relative to the location of the file that contains the Image element. Alternatively, you could set the Image source to an absolute file path or a <span class="caps">URL</span> that contains an image.
Image {
id: img
anchors.fill: parent
source: "../shared/pics/redStone.png"
}
}
</code>


You should be familiar with the code so far. We have just created some basic elements to get started. Next, we will populate the game canvas with some blocks.
At the moment, the block doesn't do anything; it is just an image. As the tutorial progresses we will animate and give behaviors to the blocks. We have not added any code yet to create the blocks; we will do this in the next chapter.


===Categories:===
We have set the image to be the size of its parent Item using ''anchors.fill: parent''. This means that when we dynamically create and resize the block items later on in the tutorial, the image will be scaled automatically to the correct size.


* [[:Category:LanguageBindings|LanguageBindings]]
Notice the relative path for the Image element's ''source'' property. This path is relative to the location of the file that contains the Image element. Alternatively, you could set the Image source to an absolute file path or a URL that contains an image.
** [[:Category:LanguageBindings::PySide|PySide]]

Latest revision as of 03:30, 5 June 2016


PySide QML Advanced Tutorial 1: Creating the Game Canvas and Blocks

This tutorial walks step-by-step through the creation of a full application using QML. It assumes that you already know the basics of QML (for example, from reading the QML Basic Tutorial. In this tutorial we write a game, Same Game, based on the Same Game application included in the declarative demos directory, which looks like this:

We will cover concepts for producing a fully functioning application, including JavaScript integration, using QML States and Behaviors to manage components and enhance your interface, and storing persistent application data.

An understanding of JavaScript is helpful to understand parts of this tutorial, but if you don't know JavaScript you can still get a feel for how you can integrate backend logic to create and control QML elements.

Creating the application screen

The first step is to create the basic QML items in your application.

To begin with, we create our Same Game application with a main screen like this:

This is defined by the main application file, samegame.qml, which looks like this:

import QtQuick 1.0

Rectangle {
 id: screen

width: 490; height: 720

SystemPalette { id: activePalette }

Item {
 width: parent.width
 anchors { top: parent.top; bottom: toolBar.top }

Image {
 id: background
 anchors.fill: parent
 source: "../shared/pics/background.jpg"
 fillMode: Image.PreserveAspectCrop
 }
 }

Rectangle {
 id: toolBar
 width: parent.width; height: 30
 color: activePalette.window
 anchors.bottom: screen.bottom

Button {
 anchors { left: parent.left; verticalCenter: parent.verticalCenter }
 text: "New Game"
 onClicked: console.log("This doesn't do anything yet…")
 }

Text {
 id: score
 anchors { right: parent.right; verticalCenter: parent.verticalCenter }
 text: "Score: Who knows?"
 }
 }
}

This gives you a basic game window that includes the main canvas for the blocks, a "New Game" button and a score display.

One item you may not recognize here is the SystemPalette item. This provides access to the Qt system palette and is used to give the button a more native look-and-feel.

Notice the anchors for the Item, Button and Text elements are set using group notation for readability.

Adding Button and Block components

The Button item in the code above is defined in a separate component file named Button.qml. To create a functional button, we use the QML elements Text and MouseArea inside a Rectangle. Here is the Button.qml code:

import QtQuick 1.0

Rectangle {
 id: container

property string text: "Button"

signal clicked

width: buttonLabel.width + 20; height: buttonLabel.height + 5
 border { width: 1; color: Qt.darker(activePalette.button) }
 smooth: true
 radius: 8

// color the button with a gradient
 gradient: Gradient {
 GradientStop {
 position: 0.0
 color: {
 if (mouseArea.pressed)
 return activePalette.dark
 else
 return activePalette.light
 }
 }
 GradientStop { position: 1.0; color: activePalette.button }
 }

MouseArea {
 id: mouseArea
 anchors.fill: parent
 onClicked: container.clicked();
 }

Text {
 id: buttonLabel
 anchors.centerIn: container
 color: activePalette.buttonText
 text: container.text
 }
}

This essentially defines a rectangle that contains text and can be clicked. The MouseArea has an onClicked() handler that is implemented to emit the clicked() signal of the container when the area is clicked.

In Same Game, the screen is filled with small blocks when the game begins. Each block is just an item that contains an image. The block code is defined in a separate Block.qml file:

import QtQuick 1.0

Item {
 id: block

Image {
 id: img
 anchors.fill: parent
 source: "../shared/pics/redStone.png"
 }
}

At the moment, the block doesn't do anything; it is just an image. As the tutorial progresses we will animate and give behaviors to the blocks. We have not added any code yet to create the blocks; we will do this in the next chapter.

We have set the image to be the size of its parent Item using anchors.fill: parent. This means that when we dynamically create and resize the block items later on in the tutorial, the image will be scaled automatically to the correct size.

Notice the relative path for the Image element's source property. This path is relative to the location of the file that contains the Image element. Alternatively, you could set the Image source to an absolute file path or a URL that contains an image.