PyQt / Qt,tableview与自定义委托使用省略号用于文本溢出单元格

时间:2015-06-17 13:48:16

标签: python qt pyqt qtableview

没有自定义委托,一切正常:

enter image description here

但是我的tableview显示了搜索结果,部分文本需要加粗,以指示它与搜索到的查询匹配的位置。

一旦我使用委托来获取html标签,溢出单元格的文本就不会被删除并替换为省略号:

enter image description here

继承我的代表:

class HTMLDelegate(QStyledItemDelegate):
def __init__(self, parent=None):
    super().__init__()
    self.doc = QTextDocument(self)

def paint(self, painter, option, index):
    painter.save()

    options = QStyleOptionViewItem(option)
    self.initStyleOption(options, index)

    self.doc.setHtml(options.text)
    options.text = ""

    style = QApplication.style() if options.widget is None \
        else options.widget.style()
    style.drawControl(QStyle.CE_ItemViewItem, options, painter)

    ctx = QAbstractTextDocumentLayout.PaintContext()

    if option.state & QStyle.State_Selected:
        ctx.palette.setColor(QPalette.Text, option.palette.color(
                             QPalette.Active, QPalette.HighlightedText))

    textRect = style.subElementRect(QStyle.SE_ItemViewItemText, options)
    #textRect.adjust(0, 0, 0, 0)
    painter.translate(textRect.topLeft())
    self.doc.documentLayout().draw(painter, ctx)

    painter.restore()

def sizeHint(self, option, index):
    return QSize(self.doc.idealWidth(), self.doc.size().height())

如果我要添加行

self.doc.setTextWidth(option.rect.width())

它会将文本剪切到另一行(我增加了行高以显示它):

enter image description here

1 个答案:

答案 0 :(得分:1)

painter.setClipRect(textRect.translated(-textRect.topLeft()))

我以为我在我的代表中有它,它在这里的所有其他答案中,它正确地进行了裁剪,虽然没有花哨的省略号,但是我猜是的。 我以前认为只有一些值,我必须启用剪辑省略号,但我开始看到它可能要复杂得多,我可能实际上需要根据区域矩形编辑文本本身 - vs文本宽度采取并调整每列调整大小或一些东西

哦,我希望他们如何选择使用默认委托

启用html富文本