1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Take a look at the license at the top of the repository in the LICENSE file.

use std::path::Path;

use glib::translate::*;

use crate::IMContextSimple;

impl IMContextSimple {
    #[doc(alias = "gtk_im_context_simple_add_compose_file")]
    pub fn add_compose_file(&self, compose_file: impl AsRef<Path>) {
        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,
            );
        }
    }
}