aboutsummaryrefslogtreecommitdiff
path: root/src/backends/kdialog.rs
Commit message (Collapse)AuthorAge
* Add Open/Save mode to the file selection dialogfile-selectionRobin Krahl2019-12-10
| | | | | | This patch adds the option to set a FileSelectionMode, either Open or Save. Not all backends might support this – currently, only zenity and kdialog do. Per default, the Open mode is used (as before).
* Implement show_file_selection for kdialog backendRobin Krahl2019-12-10
| | | | | | This patch adds an implementation of Backend’s show_file_selection function to the KDialog backend, using KDialog’s --getopenfilename option.
* Implement Default for all backend structsRobin Krahl2019-10-27
| | | | | | This fixes the clippy warning new_without_default [0]. [0] https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
* Fix clippy complaints that don't change the semanticsStephan Sokolow2019-10-25
| | | | (Clippy also complains about `new()` without `impl Default`)
* Add a backend based on KDE's `kdialog`Stephan Sokolow2019-10-25