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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::TabAlign;
use glib::translate::*;
use std::mem;

glib::wrapper! {
    /// A [`TabArray`][crate::TabArray] struct contains an array
    /// of tab stops. Each tab stop has an alignment and a position.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct TabArray(Boxed<ffi::PangoTabArray>);

    match fn {
        copy => |ptr| ffi::pango_tab_array_copy(mut_override(ptr)),
        free => |ptr| ffi::pango_tab_array_free(ptr),
        type_ => || ffi::pango_tab_array_get_type(),
    }
}

impl TabArray {
    /// Creates an array of `initial_size` tab stops. Tab stops are specified in
    /// pixel units if `positions_in_pixels` is [`true`], otherwise in Pango
    /// units. All stops are initially at position 0.
    /// ## `initial_size`
    /// Initial number of tab stops to allocate, can be 0
    /// ## `positions_in_pixels`
    /// whether positions are in pixel units
    ///
    /// # Returns
    ///
    /// the newly allocated [`TabArray`][crate::TabArray], which should
    ///  be freed with `pango_tab_array_free()`.
    #[doc(alias = "pango_tab_array_new")]
    pub fn new(initial_size: i32, positions_in_pixels: bool) -> TabArray {
        unsafe {
            from_glib_full(ffi::pango_tab_array_new(
                initial_size,
                positions_in_pixels.into_glib(),
            ))
        }
    }

    //#[doc(alias = "pango_tab_array_new_with_positions")]
    //#[doc(alias = "new_with_positions")]
    //pub fn with_positions(size: i32, positions_in_pixels: bool, first_alignment: TabAlign, first_position: i32, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) -> TabArray {
    //    unsafe { TODO: call ffi:pango_tab_array_new_with_positions() }
    //}

    /// Returns [`true`] if the tab positions are in pixels, [`false`] if they are
    /// in Pango units.
    ///
    /// # Returns
    ///
    /// whether positions are in pixels.
    #[doc(alias = "pango_tab_array_get_positions_in_pixels")]
    #[doc(alias = "get_positions_in_pixels")]
    pub fn is_positions_in_pixels(&mut self) -> bool {
        unsafe {
            from_glib(ffi::pango_tab_array_get_positions_in_pixels(
                self.to_glib_none_mut().0,
            ))
        }
    }

    /// Gets the number of tab stops in `self`.
    ///
    /// # Returns
    ///
    /// the number of tab stops in the array.
    #[doc(alias = "pango_tab_array_get_size")]
    #[doc(alias = "get_size")]
    pub fn size(&mut self) -> i32 {
        unsafe { ffi::pango_tab_array_get_size(self.to_glib_none_mut().0) }
    }

    /// Gets the alignment and position of a tab stop.
    /// ## `tab_index`
    /// tab stop index
    ///
    /// # Returns
    ///
    ///
    /// ## `alignment`
    /// location to store alignment, or [`None`]
    ///
    /// ## `location`
    /// location to store tab position, or [`None`]
    #[doc(alias = "pango_tab_array_get_tab")]
    #[doc(alias = "get_tab")]
    pub fn tab(&mut self, tab_index: i32) -> (TabAlign, i32) {
        unsafe {
            let mut alignment = mem::MaybeUninit::uninit();
            let mut location = mem::MaybeUninit::uninit();
            ffi::pango_tab_array_get_tab(
                self.to_glib_none_mut().0,
                tab_index,
                alignment.as_mut_ptr(),
                location.as_mut_ptr(),
            );
            let alignment = alignment.assume_init();
            let location = location.assume_init();
            (from_glib(alignment), location)
        }
    }

    //#[doc(alias = "pango_tab_array_get_tabs")]
    //#[doc(alias = "get_tabs")]
    //pub fn tabs(&mut self, locations: Vec<i32>) -> TabAlign {
    //    unsafe { TODO: call ffi:pango_tab_array_get_tabs() }
    //}

    /// Resizes a tab array. You must subsequently initialize any tabs that
    /// were added as a result of growing the array.
    /// ## `new_size`
    /// new size of the array
    #[doc(alias = "pango_tab_array_resize")]
    pub fn resize(&mut self, new_size: i32) {
        unsafe {
            ffi::pango_tab_array_resize(self.to_glib_none_mut().0, new_size);
        }
    }

    /// Sets the alignment and location of a tab stop.
    /// `alignment` must always be [`TabAlign::Left`][crate::TabAlign::Left] in the current
    /// implementation.
    /// ## `tab_index`
    /// the index of a tab stop
    /// ## `alignment`
    /// tab alignment
    /// ## `location`
    /// tab location in Pango units
    #[doc(alias = "pango_tab_array_set_tab")]
    pub fn set_tab(&mut self, tab_index: i32, alignment: TabAlign, location: i32) {
        unsafe {
            ffi::pango_tab_array_set_tab(
                self.to_glib_none_mut().0,
                tab_index,
                alignment.into_glib(),
                location,
            );
        }
    }
}