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

use std::mem::MaybeUninit;

use glib::translate::*;

use crate::ConstraintGuide;

impl ConstraintGuide {
    /// Gets the maximum size of @self.
    ///
    /// # Returns
    ///
    ///
    /// ## `width`
    /// return location for the maximum width
    ///
    /// ## `height`
    /// return location for the maximum height
    #[doc(alias = "gtk_constraint_guide_get_max_size")]
    #[doc(alias = "get_max_size")]
    pub fn max_size(&self) -> (i32, i32) {
        unsafe {
            let mut width = MaybeUninit::uninit();
            let mut height = MaybeUninit::uninit();
            ffi::gtk_constraint_guide_get_max_size(
                self.to_glib_none().0,
                width.as_mut_ptr(),
                height.as_mut_ptr(),
            );
            (width.assume_init(), height.assume_init())
        }
    }

    /// Gets the minimum size of @self.
    ///
    /// # Returns
    ///
    ///
    /// ## `width`
    /// return location for the minimum width
    ///
    /// ## `height`
    /// return location for the minimum height
    #[doc(alias = "gtk_constraint_guide_get_min_size")]
    #[doc(alias = "get_min_size")]
    pub fn min_size(&self) -> (i32, i32) {
        unsafe {
            let mut width = MaybeUninit::uninit();
            let mut height = MaybeUninit::uninit();
            ffi::gtk_constraint_guide_get_min_size(
                self.to_glib_none().0,
                width.as_mut_ptr(),
                height.as_mut_ptr(),
            );
            (width.assume_init(), height.assume_init())
        }
    }

    /// Gets the natural size of @self.
    ///
    /// # Returns
    ///
    ///
    /// ## `width`
    /// return location for the natural width
    ///
    /// ## `height`
    /// return location for the natural height
    #[doc(alias = "gtk_constraint_guide_get_nat_size")]
    #[doc(alias = "get_nat_size")]
    pub fn nat_size(&self) -> (i32, i32) {
        unsafe {
            let mut width = MaybeUninit::uninit();
            let mut height = MaybeUninit::uninit();
            ffi::gtk_constraint_guide_get_nat_size(
                self.to_glib_none().0,
                width.as_mut_ptr(),
                height.as_mut_ptr(),
            );
            (width.assume_init(), height.assume_init())
        }
    }
}