Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to nicely "cast" qint64 to int for QProgressBar

I'm playing around with QFtp (yes .. I know) and all works well.

Using code from their own example(s) as a guideline.

http://doc.qt.io/archives/qt-4.7/network-qftp-ftpwindow-cpp.html

The only problem I'm having is when sending (or receiving) big files (let's say 3 GB) the progress bar glitches out.

This is due to the cast from qint64 to int in:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(totalBytes);
    progressDialog->setValue(readBytes);
}

I'm wondering what would be the nicest way to handle this after googling for about an hour and settling on keeping it 'safe' by making sure I don't go out of range.

while (totalBytes > 4294967295UL)
{ 
   totalBytes = totalBytes/4294967295UL;
   readBytes = readBytes/4294967295UL;
}

But that doesn't "feel" right . .

like image 727
the JinX Avatar asked Feb 08 '11 10:02

the JinX


2 Answers

You can make the progress bar present the progress as a percentage:

void FtpWindow::updateDataTransferProgress(qint64 readBytes, 
    qint64 totalBytes) 
{
    progressDialog->setMaximum(100);
    progressDialog->setValue((qint)((readBytes * 100) / totalBytes));
}
like image 57
trojanfoe Avatar answered Nov 01 '22 09:11

trojanfoe


Set your progress bar to a range of 0-100, and display the percentage of bytes read instead of trying to set the absolute value.

like image 32
badgerr Avatar answered Nov 01 '22 11:11

badgerr