0

我正在为一个社交网络的客户端工作。它是用 Qt 和 Python 编写的。我需要将时间线放入QListView(想想 Twitter 或 Facebook)。

但是,QListView 不能渲染富文本,所以我QTextDocument用作委托。

class HTMLDelegate(QtGui.QStyledItemDelegate):
    def paint(self, painter, option, index):
        options = QtGui.QStyleOptionViewItemV4(option)
        self.initStyleOption(options, index)
        options.text = options.text.replace(" ", " ")

        style = QtGui.QApplication.style() if options.widget is None else options.widget.style()

        doc = QtGui.QTextDocument()
        doc.setHtml(options.text)
        doc.setTextWidth(option.rect.width())

        options.text = ""
        style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter)

        ctx = QtGui.QAbstractTextDocumentLayout.PaintContext()

        # Highlighting text if item is selected
        #if (optionV4.state & QStyle::State_Selected)
            #ctx.palette.setColor(QPalette::Text, optionV4.palette.color(QPalette::Active, QPalette::HighlightedText));

        textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options)
        painter.save()
        painter.translate(textRect.topLeft())
        painter.setClipRect(textRect.translated(-textRect.topLeft()))
        doc.documentLayout().draw(painter, ctx)

        painter.restore()

    def sizeHint(self, option, index):
        options = QtGui.QStyleOptionViewItemV4(option)
        self.initStyleOption(options, index)

        doc = QtGui.QTextDocument()
        doc.setHtml(options.text)
        doc.setTextWidth(options.rect.width())
        return QtCore.QSize(doc.idealWidth(), (doc.size().height())) 

它是有效的,但它不支持所有 HTML 标签。

经过大量搜索,我发现QWebView它是一个功能齐全的 HTML 查看器。我想QWebPage用作QListView.

所以,我尝试了:

class HTMLDelegate(QtGui.QStyledItemDelegate):
    def paint(self, painter, option, index):
        options = QtGui.QStyleOptionViewItemV4(option)
        self.initStyleOption(options, index)
        options.text = options.text.replace(" ", " ")

        style = QtGui.QApplication.style() if options.widget is None else options.widget.style()

        webPage = QtWebKit.QWebPage(self)
        webFrame = webPage.mainFrame()
        webPage.setViewportSize(webPage.mainFrame().contentsSize())
        webFrame.setHtml(options.text)

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

        options.text = ""
        style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter)

        #ctx = QtGui.QAbstractTextDocumentLayout.PaintContext()

        textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options)
        painter.save()
        painter.translate(textRect.topLeft())
        painter.setClipRect(textRect.translated(-textRect.topLeft()))
        webFrame.render(painter)

        painter.restore()

但它不起作用。它只显示空白项目。

我做错了什么?

或者,对于这种情况是否有另一种解决方案?我发现setItemWidget()可以将许多小部件放入一个项目中QListView,但它会破坏模型视图。

4

1 回答 1

0

好的,所以我建议您的原始问题是您webPage.setViewportSize之前打过电话webFrame.setHtml

sizeHint很棘手。 QWebView甚至没有尝试,当然网络浏览器的工作方式是它们根据用户设置的视口大小执行布局。我建议您需要自己提出一个合理的宽度值。然后,您应该能够从contentsSize.

于 2013-02-21T10:09:33.347 回答