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
// Copyright 2013-2017, 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::from_glib_none;
use glib::translate::ToGlibPtr;
use gtk_source_sys;
use MarkAttributes;
use View;

impl View {
    #[cfg(any(feature = "v2_2", feature = "dox"))]
    pub fn get_mark_attributes(
        &self,
        category: &str,
        priority: &mut i32,
    ) -> Option<MarkAttributes> {
        unsafe {
            from_glib_none(gtk_source_sys::gtk_source_view_get_mark_attributes(
                self.to_glib_none().0,
                category.to_glib_none().0,
                priority,
            ))
        }
    }
}