0

我希望有一个自定义进度条,其进度通过自定义动画更改。我将有很多这个小部件的实例,它们都应该运行平稳快速。

我的第一次尝试是使用常规QProgressBar,通过使用样式表对其进行自定义,然后使用QPropertyAnimation动画状态更改。

这工作正常,但非常慢。比如说,我以 0% 的值开始我的动画并上升到 50%,并希望在 500 毫秒的持续时间内完成。一点都不流畅,但有三个清晰可辨的步骤。如果我放弃样式表,它将足够顺利地工作。

4

1 回答 1

1

好吧,似乎工作正常的是使用 QProgressBar 的派生类,它比使用样式表快得多,尽管我必须自定义调整宽度和高度:

void ColorBar::paintEvent(QPaintEvent *pe)
{
    QRect region = pe->rect();
    QPainter painter(this);

    QColor borderColor;
    borderColor.setNamedColor("#a0a0a0");
    QColor lightColor = QColor(255, 255, 255);
    QColor darkColor = QColor(225, 225, 225);

    int barHeight = static_cast<int>(height() * 1. / 4. + 0.5);

    QRect drawRect(0, static_cast<int>(height() / 2. - barHeight / 2. + 0.5), width() * .9 * value() / maximum(), barHeight);

    QLinearGradient g(drawRect.topLeft(), drawRect.bottomLeft());
    g.setColorAt(0., lightColor);
    g.setColorAt(1., darkColor);

    painter.setPen(QPen(borderColor));
    painter.setBrush(QBrush(g));

    painter.drawRect(drawRect);
}

动画这个栏然后是直接和快速的:

        QPropertyAnimation* x = new QPropertyAnimation(percentageBar, "value");
        x->setStartValue(percentageBar->value());
        x->setEndValue(newValue);
        x->setDuration(500);
        x->start();

仍然开放以寻求反馈或更好的解决方案!

于 2016-05-16T10:42:54.097 回答