QGraphicsItem重绘

时间:2010-06-01 13:35:11

标签: c++ qt qt4 repaint qgraphicsitem

我想定期更改矩形内的文字颜色。 这是我的试用版:

 TrainIdBox::TrainIdBox()
 {
   boxRect = QRectF(0,0,40,15);
   testPen = QPen(Qt:red);
   i=0;
   startTimer(500);
 }

QRectF TrainIdBox::boundingRect() const
{
 return boxRect;
}

void TrainIdBox::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,   QWidget *widget)
{
  Q_UNUSED(widget);
  Q_UNUSED(option);

  painter->setPen(QPen(drawingColor,2));
  painter->drawRect(boxRect);
  painter->setPen(testPen);
  painter->drawText(boxRect,Qt::AlignCenter,"TEST");

 }
 void TrainIdBox::timerEvent(QTimerEvent *te)
 {
  testPen = i % 2 == 0 ? QPen(Qt::green) : QPen(Qt::yellow);
  i++;
  update(boxRect);
 }

此代码无法正常运行。 怎么了?

4 个答案:

答案 0 :(得分:3)

QGraphicsItem不是从QObject派生的,因此没有事件队列,这是处理计时器事件所必需的。尝试使用QGraphicsObject或QGraphicsItem和QObject的多重继承(这正是QGraphicsObject所做的)。

答案 1 :(得分:2)

如果你继承QGraphicsObject ......我在这里给出一个例子:

宣告:

 class Text : public QGraphicsObject
    {
        Q_OBJECT

    public:
        Text(QGraphicsItem * parent = 0);
        void paint ( QPainter * painter,
                     const QStyleOptionGraphicsItem * option, QWidget * widget  );
        QRectF boundingRect() const ;
        void timerEvent ( QTimerEvent * event );

    protected:
        QGraphicsTextItem * item;
        int time;
    };

实现:

Text::Text(QGraphicsItem * parent)
    :QGraphicsObject(parent)
{
    item = new QGraphicsTextItem(this);
    item->setPlainText("hello world");

    setFlag(QGraphicsItem::ItemIsFocusable);    
    time  = 1000;
    startTimer(time);
}

void Text::paint ( QPainter * painter,
                   const QStyleOptionGraphicsItem * option, QWidget * widget  )
{
    item->paint(painter,option,widget);    
}

QRectF Text::boundingRect() const
{
    return item->boundingRect();
}

void Text::timerEvent ( QTimerEvent * event )
{
    QString timepass = "Time :" + QString::number(time / 1000) + " seconds";
    time = time + 1000;
    qDebug() <<  timepass;
}
祝你好运

答案 2 :(得分:0)

检查Timer是否已正确初始化,它不应返回0.

尝试改变用于绘画的画笔的颜色。

我在家里有空闲时间检查你的代码,但这不会在星期天之前。

答案 3 :(得分:0)

作为基点,您可以观看Wiggly Example并在自己的代码中发现一些错误,哪个更好。对于Qt,在我看来,有时候在示例和演示应用程序中查看是一种很好的做法。

祝你好运!