summaryrefslogtreecommitdiffstats
path: root/copydialog.h
Commit message (Collapse)AuthorAgeFilesLines
* Actually do something when calling CopyDialg::copy()Arno2018-10-131-1/+1
| | | | | Implement copying files. The GUI is quite slow when copying to a device mounted with flush, eg. an USB-Stick, but that's to be expected...
* Turn the result Label into QTextEditArno2018-10-131-2/+2
| | | | | QTextEdit scrolls automatically, and doesn't resize beyond the screen, so it's the proper choice. Also make it readonly.
* Print destination file when adding sourcesArno2018-10-131-0/+3
| | | | | Use a function to generate the path, so we can reuse it when actually copying files :)
* Implement add sources to CopyDialogArno2018-10-131-0/+2
|
* Set source and Destination folder in CopyDialogArno2018-10-131-0/+2
| | | | | Still does nothing, but fill the source QLineEdit with something reasonable and try to guess the destination directory.
* Implement select destination in CopyDialogArno2018-10-131-0/+3
| | | | Also remember it on close.
* Remeber size of CopyDialogArno2018-10-131-0/+4
|
* Implement layout for CopyDialogArno2018-10-131-0/+20
Does nothing yet except close. This was harder than it should be: To keep a GridLayout expanding its cells vertically, you have to set the Alignment in the *parent* Layout. Took me a while to figure out...