-
-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #612 from gtk-rs/bilelmoussaoui/gtk-file-chooser
gtk: manually implement FileChooser::add_choice
- Loading branch information
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Take a look at the license at the top of the repository in the LICENSE file. | ||
|
||
use crate::FileChooser; | ||
use glib::translate::*; | ||
use glib::IsA; | ||
|
||
pub trait FileChooserExtManual: 'static { | ||
#[doc(alias = "gtk_file_chooser_add_choice")] | ||
fn add_choice(&self, id: &str, label: &str, options: &[(&str, &str)]); | ||
} | ||
|
||
impl<O: IsA<FileChooser>> FileChooserExtManual for O { | ||
fn add_choice(&self, id: &str, label: &str, options: &[(&str, &str)]) { | ||
unsafe { | ||
let stashes_ids = options | ||
.iter() | ||
.map(|o| o.0.to_glib_none()) | ||
.collect::<Vec<_>>(); | ||
let stashes_labels = options | ||
.iter() | ||
.map(|o| o.1.to_glib_none()) | ||
.collect::<Vec<_>>(); | ||
let (options_ids, options_labels) = ( | ||
stashes_ids | ||
.iter() | ||
.map(|o| o.0) | ||
.collect::<Vec<*const libc::c_char>>() | ||
.as_ptr(), | ||
stashes_labels | ||
.iter() | ||
.map(|o| o.0) | ||
.collect::<Vec<*const libc::c_char>>() | ||
.as_ptr(), | ||
); | ||
|
||
ffi::gtk_file_chooser_add_choice( | ||
self.as_ref().to_glib_none().0, | ||
id.to_glib_none().0, | ||
label.to_glib_none().0, | ||
mut_override(options_ids), | ||
mut_override(options_labels), | ||
); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters