summaryrefslogtreecommitdiffstats
path: root/progressdialog.h
Commit message (Collapse)AuthorAgeFilesLines
* Add a summary to ProgressDialogArno2016-12-061-0/+2
| | | | | 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 :)
* Add destination to ProgressDialogArno2016-12-061-2/+3
| | | | Elide the text if necessary. Only show the destination directory.
* Prettify ProgressDialogArno2016-12-061-1/+1
| | | | | Make it fixed width, show only the filename from the source instead of the full path and elide text if necessary.
* Actually use Copy Files to...Arno2016-12-031-0/+27
Create a FileCopier and show a custom, non-modal progress dialog when we're copying files. Turns out that a QProgressDialog always shows when it's created. This is by design, so I had to implement one that fits my needs. Also, a buffer size of 32K (as used in MKVMerger) is way too small to max out the available bandwidth, so I set it to an (arbitrary) value of 16MB.