In this part we are going to talk about some basics functionalities in PyQt5, we go through installation process, creating QPushButton, Signals and working with Qt Designer.
In this PyQt5 lesson we want to learn about PyQt5 QSpinBox, so QSpinBox is designed to handle integers and discrete sets of values (e.g., month names), use QDoubleSpinBox for floating point values. QSpinBox allows the user to choose a value by clicking the up/down buttons or pressing up/down on the keyboard to increase/decrease the value currently displayed.
These are the imports that we need, you can use QSpinBox class for creating of the spinbox in pyqt.
1
2
3
4
from PyQt5.QtWidgets import QApplication,QDialog,QHBoxLayout,
QSpinBox,QLabel,QLineEdit
import sys
from PyQt5.QtGui import QIcon
You can use this code for setting the x,y position, width and height of the window.
1
self.setGeometry(200,200,400,300)
This is the title for our window.
1
self.setWindowTitle("PyQt5 SpinBox")
If you want to set an icon for the window, than you can use this code, make sure that you have already added an icon in your working directory.
1
self.setWindowIcon(QIcon("python.png"))
In this application we need two QLineEdit, one QLabel and one QSpinBox, also an hbox layout for aligning horizontally our widgets.
1
2
3
4
5
hbox=QHBoxLayout()
label=QLabel("Laptop Price : ")
self.lineEdit=QLineEdit()
self.spinbox=QSpinBox()
self.totalResult=QLineEdit()
We have connected the valueChanged() signal of spinbox with spin_selected() method that we are going to create.
OK now we want to create QDoubleSpinBox widget using Qt Designer, open your Qt Designer, you can just write pyqt5designer in your terminal, after opening the Qt Designer you need to create Dialog without Buttons window. now we add widgets in Qt Designer.
First add an HBoxLayout
Now you need to add four widgets in the HBoxLayout, QLabel,QLineEdit,QDoubleSpinBox and QLineEdit
PyQt5 QDoubleSpinBox
After completing of the design, save the ui file, iam going to name it doublespin.ui. now copy the file and paste the file in your working directory, this time we are not going to convert the ui file in to python, but we directly load the ui file using uic module.
Create a new python file iam going to call it LoadDoubleSpinBox.py. and add this code.
Also we need to find the child in our ui file using findChild() method, because we want to connect valueChanged() signal of the spinbox with spin_selected() method.
This is the method, basically in this method we get the value from the QLineEdit with text() method, also the spinbox value with the value() method.
1
2
3
4
5
6
def spin_selected(self):
ifself.linePrice.text()!=0:
price=int(self.linePrice.text())
totalPrice=self.doublespin.value()*price
self.lineResult.setText(str(totalPrice))
Run the code and this is the result.
PyQt5 QDoubleSpinBox
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the ...
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.