3

我想添加一个 QGraphicsTextItem 并且我想改变背景的颜色。我的意思是我希望包含文本的 boundingRect 具有特定的颜色。一种方法是创建一个 QGraphicsRectItem 并将其放在文本的背面,但我想知道是否还有另一种方法可以做到这一点?

谢谢你的帮助!

4

3 回答 3

12

我会子类化QGraphicsTextItem,例如:

class QGraphicsTextItemWithBackgroundColorOfMyChoosing : public QGraphicsTextItem
{
    public:
        QGraphicsTextItemWithBackgroundColorOfMyChoosing(const QString &text) :
            QGraphicsTextItem(text) { }

        void paint( QPainter *painter, const QStyleOptionGraphicsItem *o, QWidget *w) {
            painter->setBrush(Qt::red);
            painter->drawRect(boundingRect());
            QGraphicsTextItem::paint(painter, o, w); 
        }   
};
于 2013-03-28T14:39:00.640 回答
5

您可以使用setHtml()将 HTML 写入 QGraphicsTextItem ,因此您可以使用例如填充背景

 item->setHtml("<div style='background-color:#666666;'>" + yourText + "</div>");
于 2013-03-28T14:47:03.443 回答
2

这可能太少了,太晚了,但是以下对我有用,而无需子类或重新实现某些东西。

item->setHtml(QString("<div style='background:rgba(255, 255, 255, 100%);'>" + QString("put your text here") + QString("</div>") );
于 2016-04-18T15:04:03.893 回答