Qt for Python Tutorial HelloQML: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Merge edit by Giddeen)
 
(One intermediate revision by one other user not shown)
Line 10: Line 10:
Here is a simple QML file, called '''view.qml''':
Here is a simple QML file, called '''view.qml''':


<syntaxhighlight lang="javascript" line='line'>
<syntaxhighlight lang="javascript" line="1">
import QtQuick 1.0
import QtQuick 2.0


Rectangle {
Rectangle {
Line 28: Line 28:


The rest of the QML code is pretty straightforward for those who have previously used HTML or XML files.
The rest of the QML code is pretty straightforward for those who have previously used HTML or XML files.
Basically, we are creating a red rectangle with the size 200*200 and, inside that rectangle, we are adding a Text element which says '''Hello World'''.
Basically, we are creating a green rectangle with the size 200*200 and, inside that rectangle, we are adding a Text element which says '''Hello World'''.
The code '''anchors.centerIn: parent''' just makes the text appear centered in relation to its immediate parent.
The code '''anchors.centerIn: parent''' just makes the text appear centered in relation to its immediate parent.


Now, let's see how the code looks on the PySide2. Let's call it '''main.py''':
Now, let's see how the code looks on the PySide2. Let's call it '''main.py''':


<syntaxhighlight lang="python" line='line'>
<syntaxhighlight lang="python" line="line">
from PySide2.QtWidgets import QApplication
from PySide2.QtWidgets import QApplication
from PySide2.QtQuick import QQuickView
from PySide2.QtQuick import QQuickView

Latest revision as of 07:30, 17 May 2018

Your first application using PySide2 and QtQuick/QML

QML is a declarative language designed to describe the user interface of a program: both what it looks like, and how it behaves. In QML, a user interface is specified as a tree of objects with properties. In this tutorial we will show how you can make a simple Hello World application with PySide2 and QML.

A PySide2/QML application consists, at least, of two different files - a file with the QML description of the user interface, and a python file which loads the qml file. To avoid problems for now, don't forget to save both files in the same directory.

Here is a simple QML file, called view.qml:

import QtQuick 2.0

Rectangle {
 width: 200
 height: 200
 color: "green"

Text {
 text: "Hello World"
 anchors.centerIn: parent
 }
}

We start by importing QtQuick 2.0, which a separate Qt module.

The rest of the QML code is pretty straightforward for those who have previously used HTML or XML files. Basically, we are creating a green rectangle with the size 200*200 and, inside that rectangle, we are adding a Text element which says Hello World. The code anchors.centerIn: parent just makes the text appear centered in relation to its immediate parent.

Now, let's see how the code looks on the PySide2. Let's call it main.py:

from PySide2.QtWidgets import QApplication
from PySide2.QtQuick import QQuickView
from PySide2.QtCore import QUrl

app = QApplication([])
view = QQuickView()
url = QUrl("view.qml")

view.setSource(url)
view.show()
app.exec_()


If you are already familiar with PySide2 and have followed our tutorials, much of this code is already familiar. The only novelties are that you must import QtQuick and set the source of the QQuickView object to the URL of your QML file. Then, as any Qt widget, you call QQuickView.show().

Hint: If you are programming for desktop, you should consider adding view.setResizeMode(QQuickView.SizeRootObjectToView) before showing the view.

This will force the outer QML rectangle to resize along with the outer window.