Create your first PySide app in Qt Designer (2024)

So far we have been creating apps using Python code. This works great in many cases, but as your applications get larger or interfaces more complicated, it can get a bit cumbersome to define all widgets programmatically. The good news is that Qt comes with a graphical editor — Qt Designer — which contains a drag-and-drop UI editor. Using Qt Designer you can define your UIs visually and then simply hook up the application logic later.

In this tutorial we'll cover the basics of creating UIs with Qt Designer.The principles, layouts and widgets are identical, so you can applyeverything you've already learnt. You'll also need your knowledge ofthe Python API to hook up your application logic later.

This tutorial requires Qt Creator or Qt Designer to be installed — you can download it free from the Qt website. Go to https://www.qt.io/download and download the Qt package. You can opt to install only Creator during the installation.

Open up Qt Designer/Qt Creator and you will be presented with the main window.

Using Designer in Qt Creator

IF you're using Qt Designer standalone you can skip ahead.

In Qt Creator access to Designer is via the tab on the left hand side. However, to activate this you first need to start creating a .ui file.

Create your first PySide app in Qt Designer (1)The Qt Creator interface, with the Design section shown on the left.

To create a .ui file go to File -> New File or Project... In the window that appears select Qt under Files and Classes on the left, then select Qt Designer Form on the right. You'll notice the icon has "ui" on it, showing the type of file you're creating.

Create your first PySide app in Qt Designer (2)Create a new Qt .ui file.

In the next step you'll be asked what type of widget you want to create. If you are starting an application then Main Window is the right choice. However, you can also create .ui files for dialog boxes, forms and custom compound widgets.

Create your first PySide app in Qt Designer (3)Select the type of widget to create, for most applications this will be Main Window.

Next choose a filename and save folder for your file. Save your .ui file with the same name as the class you'll be creating, just to make make subsequent commands simpler.

Create your first PySide app in Qt Designer (4)Choose save name and folder your your file.

Finally, you can choose to add the file to your version control system if you're using one. Feel free to skip this step —it doesn't affect your UI.

Create your first PySide app in Qt Designer (5)Optionally add the file to your version control, e.g. Git.

Laying out your Main Window

You'll be presented with your newly created main window in the UI designer. There isn't much to see to begin with, just a grey working area representing the window, together with the beginnings of a window menu bar.

Create your first PySide app in Qt Designer (6)The initial view of the created main window.

You can resize the window by clicking the window and dragging the blue handles on each corner.

Create your first PySide app in Qt Designer (7)The initial view of the created main window.

The first step in building an application is to add some widgets to your window. In our first applications we learnt that to set the central widget for a QMainWindow we need to use .setCentralWidget(). We also saw that to add multiple widgets with a layout, we need an intermediary QWidget to apply the layout to, rather than adding the layout to the window directly.

Qt Creator takes care of this for you automatically, although it's not particularly obvious about it.

To add multiple widgets to the main window with a layout, first drag your widgets onto the QMainWindow. Here we're dragging 3 labels. It doesn't matter where you drop them.

Create your first PySide app in Qt Designer (8)Main window with 1 labels and 1 button added.

We've created 2 widgets by dragging them onto the window, made them children of that window. We can now apply a layout.

Find the QMainWindow in the right hand panel (it should be right at the top). Underneath you see centralwidget representing the window's central widget. The icon for the central widget show the current layout applied. Initially it has a red circle-cross through it, showing that there is no layout active.

Right click on the QMainWindow object, and find 'Layout' in the resulting dropdown.

Create your first PySide app in Qt Designer (9)Right click on the main window, and choose layout.

Next you'll see a list of layouts which you can apply to the window. Select Lay Out Horizontally and the layout will be applied to the widget.

Create your first PySide app in Qt Designer (10)Select layout to apply to the main window.

The selected layout is applied to the the centralwidget of the QMainWindow and the widgets are added the layout, being laid out depending on the selected layout. Note that in Qt Creator you can actually drag and re-order the widgets within the layout, or select a different layout, as you like. This makes it especially nice to prototyping and trying out things.

Create your first PySide app in Qt Designer (11)Vertical layout applied to widgets on the main window.

The complete guide to packaging Python GUI applications with PyInstaller.

Take a look

[[ discount.discount_pc ]]% OFF for the next [[ discount.duration ]] [[discount.description ]] with the code [[ discount.coupon_code ]]

Purchasing Power Parity

Developers in [[ country ]] get [[ discount.discount_pc ]]% OFF on all books & courses with code [[ discount.coupon_code ]]

Using your generated .ui file

We've created a very simple UI. The next step is to get this into Python and use it to construct a working application.

First save your .ui file —by default it will save at the location you chosen while creating it, although you can choose another location if you like.

The .ui file is in XML format. To use our UI from Python we have two alternative methods available —

  1. load into into a class using the .loadUI() method
  2. convert it to Python using the pyside6-uic tool.

These two approaches are covered below. Personally I prefer to convert the UI to a Python file to keep things similar from a programming & packaging point of view.

Loading the .ui file directly

To load .ui files in PySide6 we first create a QUiLoader instance and then call the loader.load() method to load the UI file.

python

import sysfrom PySide6 import QtCore, QtGui, QtWidgetsfrom PySide6.QtUiTools import QUiLoaderloader = QUiLoader()app = QtWidgets.QApplication(sys.argv)window = loader.load("mainwindow.ui", None)window.show()app.exec()

The second parameter to the loader.load() method is for the parent of the widget you're creating.

Create your first PySide app in Qt Designer (13)A (very) simple UI designed in Qt Creator

The PySide6 loader does not allow you to apply a UI layout to an existing widget. This prevents you adding custom code for the initialization of the widget in a class __init__ block. However, you can work around this with a separate init function.

python

import sysfrom PySide6 import QtWidgetsfrom PySide6.QtUiTools import QUiLoaderloader = QUiLoader()def mainwindow_setup(w): w.setWindowTitle("MainWindow Title")app = QtWidgets.QApplication(sys.argv)window = loader.load("mainwindow.ui", None)mainwindow_setup(window)window.show()app.exec()

You can create a standalone class which handles loading of the UI files, creating and customized the windows and contains any business logic for your application.

Converting your .ui file to Python

Instead of importing your .uic files into your application directly, you can instead convert them into Python code and then import them like any other module.To generate a Python output file run pyside6-uic from the command line, passing the .ui file and the target file for output, with a -o parameter. The following will generate a Python file named MainWindow.py which contains our created UI.

```bash:PySide6pyside6-uic mainwindow.ui -o MainWindow.py

python

You can open the resulting `MainWindow.py` file in an editor to take a look, although you should _not_ edit this file. The power of using Qt Creator is being able to edit, tweak and update your application while you develop. Any changes made to this file will be lost when you update it. However, you _can_ override and tweak anything you like by importing and subclassing the class in your own code.Importing the resulting Python file works as for any other. You can import your class as follows. The converter tool appends `Ui_` to the name of the object defined in _Qt Creator_, and it is this object you want to import.```pythonfrom MainWindow import Ui_MainWindow

To create the main window in your application, create a class as normal but subclassing from both QMainWindow and your imported Ui_MainWindow class. Finally, call self.setupUi(self) from within the __init__ to trigger the setup of the interface.

python

import sysfrom PySide6 import QtWidgetsfrom MainWindow import Ui_MainWindowclass MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): def __init__(self): super(MainWindow, self).__init__() self.setupUi(self)app = QtWidgets.QApplication(sys.argv)window = MainWindow()window.show()app.exec()

This produces exactly the same result as before.

Create your first PySide app in Qt Designer (14)A (very) simple UI designed in Qt Creator

That's it. Your window is now fully set up. Since the use of a .ui file abstracts out the UI-specific code, you can use this same pattern to load any interface you design.

Adding application logic

You can interact with widgets created through Qt Creator just as you would those created with code. To make things simpler uic adds all child widgets to the window object by their id name as specified in Qt Creator. We'll cover how to work with these in the next part.

Create your first PySide app in Qt Designer (2024)
Top Articles
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 6274

Rating: 4.8 / 5 (68 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.