From 997ed9156ba7a1942cebd487fd5cc2818220fa78 Mon Sep 17 00:00:00 2001 From: Arno Date: Tue, 6 Dec 2016 12:14:47 +0100 Subject: Add a summary to ProgressDialog Show how many files we have, and display the transfer rate in Megabytes per second. Can't believe that it worked right from the start :) --- progressdialog.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'progressdialog.cpp') diff --git a/progressdialog.cpp b/progressdialog.cpp index 2f51857..d95f1e1 100644 --- a/progressdialog.cpp +++ b/progressdialog.cpp @@ -8,6 +8,7 @@ ProgressDialog::ProgressDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(par mSrc = new QLabel; mDst = new QLabel; mProgress = new QProgressBar; + mSum = new QLabel(tr("Wait for it...")); QPushButton *cancelBtn = new QPushButton(tr("Cancel")); connect(cancelBtn, SIGNAL(clicked()), this, SIGNAL(cancelled())); QHBoxLayout *btnLayout = new QHBoxLayout; @@ -18,6 +19,7 @@ ProgressDialog::ProgressDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(par mainLayout->addWidget(mSrc); mainLayout->addWidget(mDst); mainLayout->addWidget(mProgress); + mainLayout->addWidget(mSum); mainLayout->addLayout(btnLayout); setMaximumWidth(400); setMinimumWidth(400); -- cgit v1.2.3-70-g09d2