我创建了一个QRect对象

QRect ellipse(10.0 , 10.0 , 10.0 , 10.0);
QPainter painter(this);
painter.setBrush(Qt::red);
painter.drawEllipse(ellipse);


现在,我想使用QPropertyAnimation对其进行动画处理,但是由于它只能应用于QObject对象(据我所知),因此我需要以某种方式将QRect转换为QObject。有办法吗?

最佳答案

无需创建类,可以使用自己的窗口小部件,必须添加新属性。

例:

widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QPaintEvent>
#include <QWidget>

class Widget : public QWidget
{
    Q_OBJECT
    Q_PROPERTY(QRect nrect READ nRect WRITE setNRect)

public:
    explicit Widget(QWidget *parent = 0);
    ~Widget();

    QRect nRect() const;
    void setNRect(const QRect &rect);

protected:
    void paintEvent(QPaintEvent *event);

private:

    QRect mRect;
};

#endif // WIDGET_H


widget.cpp

#include "widget.h"

#include <QPainter>
#include <QPropertyAnimation>

Widget::Widget(QWidget *parent) :
    QWidget(parent)
{

    QPropertyAnimation *animation = new QPropertyAnimation(this, "nrect");
    //animation->setEasingCurve(QEasingCurve::InBack);
    animation->setDuration(1000);
    animation->setStartValue(QRect(0, 0, 10, 10));
    animation->setEndValue(QRect(0, 0, 200, 200));
    animation->start();
    connect(animation, &QPropertyAnimation::valueChanged, [=](){
        update();
    });

}

Widget::~Widget()
{
}

QRect Widget::nRect() const
{
    return mRect;
}

void Widget::setNRect(const QRect &rect)
{
    mRect = rect;
}


void Widget::paintEvent(QPaintEvent *event)
{
    Q_UNUSED(event)
    QRect ellipse(mRect);
    QPainter painter(this);
    painter.setBrush(Qt::red);
    painter.drawEllipse(ellipse);
}


code

09-07 02:21