我需要继承QTableView的QStyledItemDelegate。更具体地说,我需要修改特定列的显示。此列中的单元格通常包含文本。这是我的自定义QStyledItemDelegate类的一小部分:
elif index.column() == 3:
title = index.data()
painter.drawText(option.rect, QtCore.Qt.AlignCenter, title)
但是当我尝试像这样显示时,我有一点问题。
预期:
现实:
为了获得预期的图片,我只需要在StyledItemDelegate中的这一列上做任何事情。我需要做同样的事情,但是使用drawText函数。
你有什么想法吗?
答案 0 :(得分:1)
好的,我在这里找到了答案:Word Wrap with HTML? QTabelView and Delegates
它还将文本转换为html并允许html格式化(我也需要它),但我认为它可以很容易地转换为显示简单文本,并自动换行。
此代码段基本上适用于那些想要通过QStyledItemDelegate修改内容和/或内容格式的人:
options = QtGui.QStyleOptionViewItemV4(option)
self.initStyleOption(options, index)
painter.save()
doc = QtGui.QTextDocument()
text_option = QtGui.QTextOption(doc.defaultTextOption())
text_option.setWrapMode(QtGui.QTextOption.WordWrap)
doc.setDefaultTextOption(text_option)
# Modify the text here. Ex:
# options.text += "<br><br>"
doc.setHtml(options.text)
doc.setTextWidth(options.rect.width())
options.text = ""
options.widget.style().drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter)
# Center the text vertically
height = int(doc.documentLayout().documentSize().height())
painter.translate(options.rect.left(), options.rect.top() + options.rect.height() / 2 - height / 2)
clip = QtCore.QRectF(0, 0, options.rect.width(), options.rect.height())
doc.drawContents(painter, clip)
painter.restore()