Qt for Python Tutorial SimpleDialog

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


English 日本語

Creating a simple PySide dialog application

In this tutorial we will show how to build a simple dialog with some basic widgets. The idea is that the user inserts his name in a QLineEdit, clicks a QPushButton and sees greetings.

Let us just start with a simple stub which creates and shows a dialog. This stub will be updated in the course of this tutorial but you can use this stub to your own PySide projects if you need to.

<br />#!/usr/bin/python<br /># <s>'''- coding: utf-8 <s>'''-
<br />import sys<br />from PySide.QtCore import'''<br />from PySide.QtGui import *
<br />class Form(QDialog):
<br /> def ''init''(self, parent=None):<br /> super(Form, self).''init''(parent)<br /> self.setWindowTitle(&quot;My Form&amp;quot;)

<br />if ''name'' == '''main''':<br /> # Create the Qt Application<br /> app = QApplication(sys.argv)<br /> # Create and show the form<br /> form = Form()<br /> form.show()<br /> # Run the main Qt loop<br /> sys.exit(app.exec_())<br />


If you have followed the previous tutorials, you are already familiar with a lot of the code here. The imports aren't new to you, the same for the creation of the QApplication and the execution of the Qt main loop. The only novelty here is the class definition.
You can create any class which subclasses PySide widgets. In this case, we are just subclassing the QDialog to do our custom dialog which we've called "Form&quot;. We have also implemented the init() method which calls the QDialog init method with the parent widget, if any. Also new, is the setWindowTitle() which just sets the title of the dialog window. Also, in main(), you can see that we are creating a Form object, and showing it to the world.
h2. Create the widgets
We are going to create two widgets a QLineEdit where the user can insert his name, and a QPushButton which we will use to print the contents of the QLineEdit. So, we are going to add the following code to theinit()* method of our Form:


<br /># Create widgets<br />self.edit = QLineEdit(&quot;Write my name here..&quot;)<br />self.button = QPushButton(&quot;Show Greetings&amp;quot;)<br />


As should be intuitive by now, both widgets will show the corresponding texts.
h2. Create a layout to organize the widgets
Qt comes with some layouts which helps the user on the organization of his widgets on an application. In this case, we will make it simple and create a QVBoxLayout which will distribute the widgets vertically. The following code will be added also to the init() method, after the creation of the widgets:


<br /># Create layout and add widgets<br />layout = QVBoxLayout()<br />layout.addWidget(self.edit)<br />layout.addWidget(self.button)<br /># Set dialog layout<br />self.setLayout(layout)<br />


So, we create the layout, add the widgets with addWidget(), and finally we say that our Form will have our QVBoxLayout as its layout.
h2. Create the function to greet and connect the button
Finally, we just have to add a function to our custom Form the one which will greet the user - and connect our button to it. Our function will be a part of the Form, so you have to add it after the init() function:

<br /># Greets the user<br />def greetings(self):<br /> print (&quot;Hello s&amp;quot; self.edit.text())<br />

Our function just writes the contents of the QLineEdit to the python console. We have access to the text by means of the QLineEdit.text() method.

Now that we have everything, we just need to connect the QPushButton to the Form.greetings() method. In the init() method we just need to add:

<br /># Add button signal to greetings slot<br />self.button.clicked.connect(self.greetings)<br />

Once executed, you can insert your name in the QLineEdit and watch the console for greetings.

Things you can do:

Full Code

Here is the full code for this tutorial:


#!/usr/bin/python
# - coding: utf-8 -

import sys
from PySide.QtCore import *
from PySide.QtGui import *

class Form(QDialog):

def init(self, parent=None):
super(Form, self).init(parent)
# Create widgets
self.edit = QLineEdit("Write my name here&quot;)
self.button = QPushButton("Show Greetings&quot;)
# Create layout and add widgets
layout = QVBoxLayout()
layout.addWidget(self.edit)
layout.addWidget(self.button)
# Set dialog layout
self.setLayout(layout)
# Add button signal to greetings slot
self.button.clicked.connect(self.greetings)

  1. Greets the user
    def greetings(self):
    print ("Hello s&quot; self.edit.text())

if name == main:
# Create the Qt Application
app = QApplication(sys.argv)
# Create and show the form
form = Form()
form.show()
# Run the main Qt loop
sys.exit(app.exec_())