native-dialog-rs
native-dialog-rs copied to clipboard
These replace the `objc` family of crates, and provide a bunch of improvements on top, especially wrt. correct memory management. Improvements that we use in `native-dialog`: - We no longer...
File dialog, and alert messages all work, but confirmation message does not show up and just returns false. code in question although I don't think it will help: ```rust let...
So I tried this out on KDE on Wayland and doing a basic message dialog no matter what I put in for the message it's malformed:  message code ```...
Confirmation dialog is called from Windows MSI installer and appears behind installer window without any way to bring it to the front of the stack of windows
- The current code version has an implementation error when passing the option "icon-name"/"icon", the code adds the option value as an other argument: `zenity --question --icon dialog-information` for example....
I tested every other combination (on macOS): ARM debug, ARM release and Intel debug. Everything works, except for Intel macOS release, which causes a segfault. It also happens with both...
Resolves #47 WIP, still cleaning some things up and considering introducing this as a feature flag and not as default behaviour.
With how often Zenity and Kdialog change their command line tools for creating dialogs, I've been wondering if instead using either Qt or GTK (or both depending on the env,...
This PR implements progress dialogs which may be updated and queried by the application. ```rust let progress = ProgressDialog::new() .set_title("Progress Example") .set_text("Doing complicated things...") .show()?; let mut handle = progress.borrow_mut();...
When using FileDialog it is appending /Untitled to a given location. let say I do: ``` let path = FileDialog::new() .remove_all_filters() .set_location(home_dir.to_str().unwrap()) .show_open_single_dir() .unwrap_or(home::home_dir()).unwrap_or(home_dir); ``` being `home_dir.to_str().unwrap() = /home/pianisimo` is...