1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Copyright 2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>

use glib::translate::*;
use glib::GString;
use pango_sys;
use Script;

pub struct Language(*mut pango_sys::PangoLanguage);

#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *mut pango_sys::PangoLanguage> for &'a Language {
    type Storage = &'a Language;

    fn to_glib_none(&self) -> Stash<'a, *mut pango_sys::PangoLanguage, Self> {
        Stash(self.0, *self)
    }
}

#[doc(hidden)]
impl<'a> ToGlibPtrMut<'a, *mut pango_sys::PangoLanguage> for Language {
    type Storage = &'a mut Self;

    #[inline]
    fn to_glib_none_mut(&'a mut self) -> StashMut<'a, *mut pango_sys::PangoLanguage, Self> {
        StashMut(self.0, self)
    }
}

#[doc(hidden)]
impl FromGlibPtrNone<*mut pango_sys::PangoLanguage> for Language {
    unsafe fn from_glib_none(ptr: *mut pango_sys::PangoLanguage) -> Self {
        assert!(!ptr.is_null());
        Language(ptr)
    }
}

#[doc(hidden)]
impl FromGlibPtrFull<*mut pango_sys::PangoLanguage> for Language {
    unsafe fn from_glib_full(ptr: *mut pango_sys::PangoLanguage) -> Self {
        assert!(!ptr.is_null());
        Language(ptr)
    }
}

#[doc(hidden)]
impl FromGlibPtrNone<*const pango_sys::PangoLanguage> for Language {
    unsafe fn from_glib_none(ptr: *const pango_sys::PangoLanguage) -> Self {
        assert!(!ptr.is_null());
        Language(ptr as *mut _)
    }
}

#[doc(hidden)]
impl FromGlibPtrFull<*const pango_sys::PangoLanguage> for Language {
    unsafe fn from_glib_full(ptr: *const pango_sys::PangoLanguage) -> Self {
        assert!(!ptr.is_null());
        Language(ptr as *mut _)
    }
}

impl Default for Language {
    fn default() -> Language {
        unsafe { from_glib_full(pango_sys::pango_language_get_default()) }
    }
}

impl Language {
    pub fn from_string(language: &str) -> Language {
        unsafe {
            from_glib_full(pango_sys::pango_language_from_string(
                language.to_glib_none().0,
            ))
        }
    }

    pub fn to_string(&self) -> GString {
        unsafe { from_glib_none(pango_sys::pango_language_to_string(self.to_glib_none().0)) }
    }

    pub fn matches(&self, range_list: &str) -> bool {
        unsafe {
            pango_sys::pango_language_matches(self.to_glib_none().0, range_list.to_glib_none().0)
                .to_bool()
        }
    }

    pub fn includes_script(&self, script: Script) -> bool {
        unsafe {
            pango_sys::pango_language_includes_script(self.to_glib_none().0, script.to_glib())
                .to_bool()
        }
    }

    pub fn get_scripts(&self) -> Vec<Script> {
        let mut num_scripts = 0;
        let mut ret = Vec::new();

        unsafe {
            let scripts: *const pango_sys::PangoScript =
                pango_sys::pango_language_get_scripts(self.to_glib_none().0, &mut num_scripts);
            if num_scripts > 0 {
                for x in 0..num_scripts {
                    ret.push(from_glib(
                        *(scripts.offset(x as isize) as *const pango_sys::PangoScript),
                    ));
                }
            }
            ret
        }
    }

    pub fn get_sample_string(&self) -> GString {
        unsafe {
            from_glib_none(pango_sys::pango_language_get_sample_string(
                self.to_glib_none().0,
            ))
        }
    }
}