PyQt5: agregar acción a ComboBox con elementos verificables

En este artículo veremos cómo podemos agregar una acción al cuadro combinado que tiene elementos verificables. De manera predeterminada, cuando creamos un cuadro combinado, sus elementos no se pueden verificar, es decir, podemos seleccionar cualquier elemento a la vez, aunque podemos crear dicho cuadro combinado editando la clase de cuadro combinado. A continuación se muestra la representación de cómo se ve el cuadro combinado verificable.

Para hacer esto, tenemos que crear una nueva clase de cuadro combinado editable que herede el cuadro combinado y agregue una nueva función de cuadro combinado verificable. A continuación se muestra la sintaxis de la nueva clase y debe agregar un método cuando se marca el cuadro combinado.

# new check-able combo box
class CheckableComboBox(QComboBox):
    
    # constructor
    def __init__(self, parent=None):
        super(CheckableComboBox, self).__init__(parent)
        self.view().pressed.connect(self.handleItemPressed)
        self.setModel(QStandardItemModel(self))

    count = 0
    # action called when item get checked
    def do_action(self):

        window.label.setText("Checked number : " +str(self.count))

    # when any item get pressed
    def handleItemPressed(self, index):

        # getting the item
        item = self.model().itemFromIndex(index)

        # checking if item is checked
        if item.checkState() == Qt.Checked:

            # making it unchecked
            item.setCheckState(Qt.Unchecked)

        # if not checked
        else:
            # making the item checked
            item.setCheckState(Qt.Checked)

            self.count += 1

            # call the action
            self.do_action()

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
  
  
# new check-able combo box
class CheckableComboBox(QComboBox):
  
    # constructor
    def __init__(self, parent = None):
        super(CheckableComboBox, self).__init__(parent)
        self.view().pressed.connect(self.handleItemPressed)
        self.setModel(QStandardItemModel(self))
  
    count = 0
    # action called when item get checked
    def do_action(self):
  
        window.label.setText("Checked number : " +str(self.count))
  
    # when any item get pressed
    def handleItemPressed(self, index):
  
        # getting the item
        item = self.model().itemFromIndex(index)
  
        # checking if item is checked
        if item.checkState() == Qt.Checked:
  
            # making it unchecked
            item.setCheckState(Qt.Unchecked)
  
        # if not checked
        else:
            # making the item checked
            item.setCheckState(Qt.Checked)
  
            self.count += 1
  
            # call the action
            self.do_action()
  
  
  
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 check-able combo box object
        self.combo_box = CheckableComboBox(self)
  
        # setting geometry of combo box
        self.combo_box.setGeometry(200, 150, 150, 30)
  
        # geek list
        geek_list = ["Sayian", "Super Sayian", "Super Sayian 2", "Super Sayian B"]
  
        # adding list of items to combo box
        self.combo_box.addItems(geek_list)
  
        # create label to show to text
        self.label = QLabel("Not checked", self)
  
        # setting geometry of label
        self.label.setGeometry(200, 100, 200, 30)
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
window.show()
  
# 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *