1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::IMContextSimple;
use glib::translate::*;
use std::path::Path;
impl IMContextSimple {
#[doc(alias = "gtk_im_context_simple_add_compose_file")]
pub fn add_compose_file<P: AsRef<Path>>(&self, compose_file: P) {
unsafe {
let compose_file = compose_file.as_ref();
ffi::gtk_im_context_simple_add_compose_file(
self.to_glib_none().0,
compose_file.to_glib_none().0,
);
}
}
}