为QComboBox菜单的项目单独设置样式PyQt5



我试图单独设置QComboBox菜单项的样式。在Qt样式表示例中,它通过QAbstractItemView设置菜单样式

QComboBox QAbstractItemView {
border: 2px solid darkgray;
selection-background-color: lightgray;
}

其提供对菜单的一般控制,但是除了对所选择的项目的轻微控制之外不提供对单个项目的控制。另一个解决方案是使用QAbstractItemView::item,这对我不起作用。

你似乎有一个XY问题,因为当你指出你的目标是"绘制下拉菜单"(这是非常通用的(,但你要求一个可能的解决方案(另一个问题(的错误,这不一定对你有用。

考虑到以上情况,我将解释错误的原因和可能的解决方案(显然做出了许多假设(。

主要错误是,这段代码是针对PyQt4的,您可能使用的是PyQt5,在PyQt4中,data((方法返回一个必须转换为python对象的QVariant,因此您使用isValid((和toPyObject((,但在PyQt5中不再需要它。另一个错误是UserRole值将为None,因为您在创建项目时没有分配任何值(这可能是由于另一个问题中的遗漏造成的(。

考虑到以上情况,一个可能的解决方案(兼容PyQt4和PyQt5(是:

class LineStyleDelegate(QItemDelegate):
def paint(self, painter, option, index):
data = index.data(Qt.UserRole)
if hasattr(data, "toPyObject"):
data = data.toPyObject()
if data is not None:
painter.save()
rect = option.rect
rect.adjust(+5, 0, -5, 0)
pen = QPen()
pen.setColor(Qt.black)
pen.setWidth(3)
pen.setStyle(data)
painter.setPen(pen)
middle = (rect.bottom() + rect.top()) / 2
painter.drawLine(rect.left(), middle, rect.right(), middle)
painter.restore()
else:
QItemDelegate.paint(self, painter, option, index)
self.searchEdit = QComboBox(sef.searchContent)
for text, style in (
("Item 1", Qt.SolidLine),
("Item 2", Qt.DotLine),
("Item 3", Qt.DashDotDotLine),
):
self.searchEdit.addItem(text, style)
self.delegate = LineStyleDelegate(self.searchEdit)
self.searchEdit.setItemDelegate(self.delegate)
self.searchEdit.setMinimumWidth(500)
self.searchEdit.setEditable(True)

更新:

通过对问题的修改,验证了OP存在XY问题。若要修改QComboBox项目的绘制,必须使用委托:QItemDelegate或QStyledItemDelegate。我更喜欢使用第二个,因为它使用了QStyle,也就是说,设计将尊重GUI的风格。要设置每个项目的颜色,请使用QStyleOptionViewItem的backgroundBrush属性,对于边框绘制,必须覆盖paint((方法:

import random
from PyQt5 import QtCore, QtGui, QtWidgets

class CustomStyleDelegate(QtWidgets.QStyledItemDelegate):
def initStyleOption(self, option, index):
super(CustomStyleDelegate, self).initStyleOption(option, index)
random_color = QtGui.QColor(*random.sample(range(255), 3))
option.backgroundBrush = random_color
def paint(self, painter, option, index):
super(CustomStyleDelegate, self).paint(painter, option, index)
margins = 2
border_color = QtGui.QColor(*random.sample(range(255), 3))
painter.save()
pen = QtGui.QPen()
pen.setColor(border_color)
pen.setWidth(margins)
painter.setPen(pen)
r = QtCore.QRect(option.rect).adjusted(0, 0, -margins, -margins)
painter.drawRect(r)
painter.restore()

if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
w = QtWidgets.QComboBox()
w.addItems(["Item 1", "Item 2", "Item 3"])
delegate = CustomStyleDelegate(w)
w.setItemDelegate(delegate)
w.show()
sys.exit(app.exec_())

相关内容

  • 没有找到相关文章

最新更新