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
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::translate::*;

/// Represents a location in a file or other source of data parsed
/// by the CSS engine.
///
/// The `bytes` and `line_bytes` offsets are meant to be used to
/// programmatically match data. The `lines` and `line_chars` offsets
/// can be used for printing the location in a file.
///
/// Note that the `lines` parameter starts from 0 and is increased
/// whenever a CSS line break is encountered. (CSS defines the C character
/// sequences "\r\n", "\r", "\n" and "\f" as newlines.)
/// If your document uses different rules for line breaking, you might want
/// run into problems here.
#[repr(C)]
#[derive(Clone)]
#[doc(alias = "GtkCssLocation")]
pub struct CssLocation(ffi::GtkCssLocation);

impl CssLocation {
    pub fn new(
        bytes: usize,
        chars: usize,
        lines: usize,
        line_bytes: usize,
        line_chars: usize,
    ) -> Self {
        assert_initialized_main_thread!();
        Self(ffi::GtkCssLocation {
            bytes,
            chars,
            lines,
            line_bytes,
            line_chars,
        })
    }

    pub fn bytes(&self) -> usize {
        self.0.bytes
    }

    pub fn chars(&self) -> usize {
        self.0.chars
    }

    pub fn lines(&self) -> usize {
        self.0.lines
    }

    pub fn line_bytes(&self) -> usize {
        self.0.line_bytes
    }

    pub fn line_chars(&self) -> usize {
        self.0.line_chars
    }
}

#[doc(hidden)]
impl FromGlibPtrNone<*const ffi::GtkCssLocation> for CssLocation {
    unsafe fn from_glib_none(ptr: *const ffi::GtkCssLocation) -> Self {
        Self(*ptr)
    }
}

#[doc(hidden)]
impl<'a> ToGlibPtr<'a, *const ffi::GtkCssLocation> for CssLocation {
    type Storage = &'a Self;

    fn to_glib_none(&'a self) -> Stash<*const ffi::GtkCssLocation, Self> {
        Stash(&self.0, self)
    }
}