为QGraphicsTextItem对象添加背景色



是否有QGraphicsTextItem 对象添加背景颜色的方法?

我已经创建了一个QGraphicsScene,并需要在其中显示文本。我创建了一个QGraphicsTextItem来完成这项工作。然而,它在背景下不是很清楚,所以我想突出它,或者设置一个背景颜色,使它更明显。我还没有在文档中找到这样做的任何东西。

如果有更好的选择,我希望避免这样做。谢谢你的回答!

您有几个选择。

最简单的方法是,用想要的样式设置一个HTML:

htmlItem = QtGui.QGraphicsTextItem()
htmlItem.setHtml('<div style="background:#ff8800;">html item</p>')

另一种方法是子类化QGraphicsTextItem并使用paint方法进行自定义背景。

class MyTextItem(QtGui.QGraphicsTextItem):
    def __init__(self, text, background, parent=None):
        super(MyTextItem, self).__init__(parent)
        self.setPlainText(text)
        self.background = background
    def paint(self, painter, option, widget):
        # paint the background
        painter.fillRect(option.rect, QtGui.QColor(self.background))
        # paint the normal TextItem with the default 'paint' method
        super(MyTextItem, self).paint(painter, option, widget)

下面是一个演示两者的基本示例:

import sys
from PySide import QtGui, QtCore
class MyTextItem(QtGui.QGraphicsTextItem):
    def __init__(self, text, background, parent=None):
        super(MyTextItem, self).__init__(parent)
        self.setPlainText(text)
        self.background = background
    def paint(self, painter, option, widget):
        # paint the background
        painter.fillRect(option.rect, QtGui.QColor(self.background))
        # paint the normal TextItem with the default 'paint' method
        super(MyTextItem, self).paint(painter, option, widget)
if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    w = QtGui.QGraphicsView()
    s = QtGui.QGraphicsScene()
    htmlItem = QtGui.QGraphicsTextItem()
    htmlItem.setHtml('<div style="background:#ff8800;">html item</p>')
    myItem = MyTextItem('my item', '#0088ff')
    s.addItem(htmlItem)
    myItem.setPos(0, 30)
    s.addItem(myItem)
    w.setScene(s)
    w.show()
    sys.exit(app.exec_())

Try This:

item = QtGui.QGraphicsTextItem()
item.setFormatTextColor("#value")

相关内容

  • 没有找到相关文章

最新更新