pub fn get_open_file_name(
    parent: *mut u32,
    caption: &String,
    dir: &String,
    filter: &String,
    selected_suffix_out: *mut String
) -> String
Expand description

| Get open filename, convenience wrapper | for QFileDialog::getOpenFileName. | | ———– | @param[in] parent | | Parent window (or 0) | ––––– | @param[in] caption | | Window caption (or empty, for default) | ––––– | @param[in] dir | | Starting directory (or empty, to default | to documents directory) | ––––– | @param[in] filter | | Filter specification such as “Comma | Separated Files (*.csv)” | ––––– | @param[out] selectedSuffixOut | | Pointer to return the suffix (file type) | that was selected (or 0). | | Can be useful when choosing the save | file format based on suffix. |