Python interface

From Rsewiki
(Difference between revisions)
Jump to: navigation, search
(Qt GUI interface design)
(Qt GUI interface design)
Line 13: Line 13:
 
At first, to use Qt-Designer version 5 with python it is necessary to install the necessary python packages:
 
At first, to use Qt-Designer version 5 with python it is necessary to install the necessary python packages:
 
  # Installing PyQt5 package
 
  # Installing PyQt5 package
pip install pyqt5-tools
+
pip install pyqt5-tools
pip install pyqt5
+
pip install pyqt5
  
 
The translated .ui files can be auto-generated using the following commands:
 
The translated .ui files can be auto-generated using the following commands:

Revision as of 16:58, 23 November 2020

Qt GUI interface design

The Regbot desktop application is designed using the Qt-Designer app which uses the widgets from the Qt GUI framework. The application gives a possibility to quickly build interfaces using the drag-and-drop feature for placing necessary components in your interface. The Qt designer produces .ui files that can be translated to C++ or Python interface code. This user interface was designed using Python 3.7.9 and Qt version 5. To some extent, it was possible to use Visual Studio, but I ran into some problems with finding the necessary libraries for some tasks I wanted to use (like cv2, keyboard and some PyQT libraries). A Safe choice was to use one Python development platform on your PC, for example, Spyder (as it was necessary to use this for other courses).

UI.JPG

The translated UI file will be autogenerated with all the parameters that were set in Qt-Designer app like - object name, size, and many other parameters that correspond to each specific object.

At first, to use Qt-Designer version 5 with python it is necessary to install the necessary python packages:

# Installing PyQt5 package
pip install pyqt5-tools
pip install pyqt5

The translated .ui files can be auto-generated using the following commands:

# Generating Python interface file from Qt-Designer .ui file
pyuic5 -x "filename".ui -o "filename".py

Note that this file is generated in the directory where the terminal was opened, so make sure that you know where this file is located after using this command.

In the picture below, you can see an example of an auto-generated python interface file, that can later be included in the rest of your application as a user interface. By knowing the name of the object, the actual user interface now can also be tweaked by editing the Python code.

UIpy.JPG

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox