En este artículo, veremos cómo podemos crear un cuadro de número que tenga valores de string; de forma predeterminada, el cuadro de número contiene solo valores enteros. String Spin box es un cuadro de número que tiene valores de string para seleccionar entre los valores de string dados.
Para crear un String Spin Box, hemos creado una clase personalizada que hereda la clase QSpinBox, a continuación se muestra la sintaxis de la clase String Spin Box
# custom class for String Spin Box class StringBox(QSpinBox): # constructor def __init__(self, parent=None): super(StringBox, self).__init__(parent) # string values strings = ["a", "b", "c", "d", "e", "f", "g"] # calling setStrings method self.setStrings(strings) # method setString # similar to set value method def setStrings(self, strings): # making strings list strings = list(strings) # making tuple from the string list self._strings = tuple(strings) # creating a dictionary self._values = dict(zip(strings, range(len(strings)))) # setting range to it the spin box self.setRange(0, len(strings)-1) # overwriting the textFromValue method def textFromValue(self, value): # returning string from index # _string = tuple return self._strings[value]
Explicación: la idea básica de esta clase es que creamos una clase personalizada que hereda la clase de cuadro de número, por eso tiene todas las capacidades del cuadro de número normal, pero en lugar de mostrar un número entero, muestra el valor de la string. Hemos creado un diccionario tal que para cada string tiene una clave de número entero y el rango del cuadro de número es el número de valores de string y con la ayuda de sobrescribir el método textFromValue muestra una string en lugar del número entero.
A continuación se muestra la implementación.
# importing libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore, QtGui from PyQt5.QtGui import * from PyQt5.QtCore import * import sys # custom class for String Spin Box class StringBox(QSpinBox): # constructor def __init__(self, parent = None): super(StringBox, self).__init__(parent) # string values strings = ["a", "b", "c", "d", "e", "f", "g"] # calling setStrings method self.setStrings(strings) # method setString # similar to set value method def setStrings(self, strings): # making strings list strings = list(strings) # making tuple from the string list self._strings = tuple(strings) # creating a dictionary self._values = dict(zip(strings, range(len(strings)))) # setting range to it the spin box self.setRange(0, len(strings)-1) # overwriting the textFromValue method def textFromValue(self, value): # returning string from index # _string = tuple return self._strings[value] class Window(QMainWindow): def __init__(self): super().__init__() # setting title self.setWindowTitle("Python ") # setting geometry self.setGeometry(100, 100, 600, 400) # calling method self.UiComponents() # showing all the widgets self.show() # method for widgets def UiComponents(self): # creating a string spin box string_spin_box = StringBox(self) # setting geometry to the spin box string_spin_box.setGeometry(100, 100, 200, 40) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA