我使用 aQProgressBar
来显示下载操作的进度。我想在显示的百分比中添加一些文本,例如:
10% (download speed kB/s)
任何的想法?
我使用 aQProgressBar
来显示下载操作的进度。我想在显示的百分比中添加一些文本,例如:
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 开始,你可以只设置格式。例如让它说 maxValue 的 currentValue (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);
}
}