Well i have a QProgressBar where i show the download progress, however i want to set where it shows the percentage the download speed, leaving it as:

Percentage% (downloadspeed KB/s)

Any idea?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

make the QProgressBar text visible.

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

to show the download progress

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)+"%");
}
link|improve this answer
I think i explained myself wrong (If so, sorry.) i want to add more text to the bar. Since it only shows the percentage. – Kazuma Dec 15 '11 at 4:27
1  
edited ......... – Lwin Htoo Ko Dec 15 '11 at 5:52
feedback

You could calculate the download speed yourself, then construct a string thus:

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

You'll need to do this every time your download speed needs updating, however.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.