We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9703c49 + 66363aa commit cdb19a7Copy full SHA for cdb19a7
pango/src/glyph_item_iter.rs
@@ -41,4 +41,23 @@ impl GlyphItemIter {
41
}
42
43
44
+
45
+ pub fn start_char(&self) -> i32 {
46
+ unsafe { (*self.to_glib_none().0).start_char }
47
+ }
48
+ pub fn end_char(&self) -> i32 {
49
+ unsafe { (*self.to_glib_none().0).end_char }
50
51
+ pub fn start_glyph(&self) -> i32 {
52
+ unsafe { (*self.to_glib_none().0).start_glyph }
53
54
+ pub fn end_glyph(&self) -> i32 {
55
+ unsafe { (*self.to_glib_none().0).end_glyph }
56
57
+ pub fn start_index(&self) -> i32 {
58
+ unsafe { (*self.to_glib_none().0).start_index }
59
60
+ pub fn end_index(&self) -> i32 {
61
62
63
0 commit comments