更改QProgressBar显示的文本



我使用QProgressBar来显示下载操作的进度。我想在显示的百分比中添加一些文本,例如:

10% (download speed kB/s)

任何想法?

使QProgressBar文本可见。

QProgressBar *progBar = new QProgressBar();
progBar->setTextVisible(true);

显示下载进度

void Widget::setProgress(int downloadedSize, int totalSize)
{
    double downloaded_Size = (double)downloadedSize;
    double total_Size = (double)totalSize;
    double progress = (downloaded_Size/total_Size) * 100;
    progBar->setValue(progress);
    // ******************************************************************
    progBar->setFormat("Your text here. "+QString::number(progress)+"%");
}

您可以自己计算下载速度,然后构造一个字符串:

QString text = QString( "%p% (%1 KB/s)" ).arg( speedInKbps );
progressBar->setFormat( text );

每次你的下载速度需要更新时,你都需要这样做。

我知道这有点晚了,但是万一以后有人来的话。从PyQT4.2开始,你可以直接setFormat。例如,让它说currentValue of maxValue (0 of 4),你所需要的是

yourprogressbar.setFormat("%v of %m")

因为QProgressBar for Macintosh StyleSheet不支持format属性,那么跨平台支持来做,你可以用QLabel添加第二层。

    // init progress text label
    if (progressBar->isTextVisible())
    {
        progressBar->setTextVisible(false); // prevent dublicate
        QHBoxLayout *layout = new QHBoxLayout(progressBar);
        QLabel *overlay = new QLabel();
        overlay->setAlignment(Qt::AlignCenter);
        overlay->setText("");
        layout->addWidget(overlay);
        layout->setContentsMargins(0,0,0,0);
        connect(progressBar, SIGNAL(valueChanged(int)), this, SLOT(progressLabelUpdate()));
    }
void MainWindow::progressLabelUpdate()
{
    if (QProgressBar* progressBar = qobject_cast<QProgressBar*>(sender()))
    {
        QString text = progressBar->format();
        int precent = 0;
        if (progressBar->maximum()>0)
            precent = 100 * progressBar->value() / progressBar->maximum();
        text.replace("%p",  QString::number(precent));
        text.replace("%v", QString::number(progressBar->value()));
        QLabel *label = progressBar->findChild<QLabel *>();
        if (label)
            label->setText(text);
    }
}

相关内容

  • 没有找到相关文章

最新更新