为了将 GUI 小部件数量保持在最低限度,我需要找到一种方法来让用户选择下拉菜单项,这些菜单项可用于过滤 listWidget 中显示的项目。假设
为了将 GUI 小部件数量保持在最低限度,我需要找到一种方法来让用户选择下拉菜单项,这些菜单项可用于过滤 listWidget 中显示的项目。假设 listWidget 列出了 5 个不同类别的项目:\'Cat A\'、\'Cat B\'、\'Cat C\'、\'Cat D\'、\'Cat E\'。我可以为每个项目类别实现单选按钮或复选框。但是 5 个单选按钮或复选框会占用大量的 GUI 空间。带有可勾选项目的组合框似乎是正确的选择。有什么想法吗?
from PyQt4 import QtGui, QtCore
import sys, os
class CheckableComboBox(QtGui.QComboBox):
def __init__(self):
super(CheckableComboBox, self).__init__()
def flags(self, index):
return Qt.ItemIsUserCheckable | Qt.ItemIsSelectable | Qt.ItemIsEnabled
class Dialog_01(QtGui.QMainWindow):
def __init__(self):
super(QtGui.QMainWindow,self).__init__()
myQWidget = QtGui.QWidget()
myBoxLayout = QtGui.QVBoxLayout()
myQWidget.setLayout(myBoxLayout)
self.setCentralWidget(myQWidget)
self.ComboBox = CheckableComboBox()
for i in range(3):
self.ComboBox.addItem("Combobox Item " + str(i))
myBoxLayout.addWidget(self.ComboBox)
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
dialog_1 = Dialog_01()
dialog_1.show()
dialog_1.resize(480,320)
sys.exit(app.exec_())