summaryrefslogtreecommitdiffstats
path: root/copydialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Actually do something when calling CopyDialg::copy()Arno2018-10-131-0/+23
| | | | | 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...
* connect the refresh button in CopyDialogArno2018-10-131-0/+1
|
* Turn the result Label into QTextEditArno2018-10-131-4/+6
| | | | | 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/+20
| | | | | Use a function to generate the path, so we can reuse it when actually copying files :)
* Implement add sources to CopyDialogArno2018-10-131-0/+5
|
* Set source and Destination folder in CopyDialogArno2018-10-131-0/+8
| | | | | 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-2/+13
| | | | Also remember it on close.
* Remeber size of CopyDialogArno2018-10-131-0/+14
|
* Implement layout for CopyDialogArno2018-10-131-0/+53
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...