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.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'progressdialog.h') diff --git a/progressdialog.h b/progressdialog.h index 35ede38..86a31bc 100644 --- a/progressdialog.h +++ b/progressdialog.h @@ -11,6 +11,7 @@ class ProgressDialog : public QDialog { ProgressDialog(QWidget *parent = 0, Qt::WindowFlags f = 0); void setLabelText(const QString &src, const QString &dst); void setMaximum(int max) { mProgress->setMaximum(max); } + void setSummary(const QString &sum) { mSum->setText(sum); } public slots: void setValue(int val); @@ -21,6 +22,7 @@ class ProgressDialog : public QDialog { private: QLabel *mSrc; QLabel *mDst; + QLabel *mSum; QProgressBar *mProgress; }; -- cgit v1.2.3-70-g09d2