use crate::{JustifyMode, LengthUnit, PackDirection, WrapPolicy, ffi};
use glib::{
prelude::*,
signal::{SignalHandlerId, connect_raw},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "AdwWrapLayout")]
pub struct WrapLayout(Object<ffi::AdwWrapLayout, ffi::AdwWrapLayoutClass>) @extends gtk::LayoutManager, @implements gtk::Orientable;
match fn {
type_ => || ffi::adw_wrap_layout_get_type(),
}
}
impl WrapLayout {
#[doc(alias = "adw_wrap_layout_new")]
pub fn new() -> WrapLayout {
assert_initialized_main_thread!();
unsafe { gtk::LayoutManager::from_glib_full(ffi::adw_wrap_layout_new()).unsafe_cast() }
}
pub fn builder() -> WrapLayoutBuilder {
WrapLayoutBuilder::new()
}
#[doc(alias = "adw_wrap_layout_get_align")]
#[doc(alias = "get_align")]
pub fn align(&self) -> f32 {
unsafe { ffi::adw_wrap_layout_get_align(self.to_glib_none().0) }
}
#[doc(alias = "adw_wrap_layout_get_child_spacing")]
#[doc(alias = "get_child_spacing")]
#[doc(alias = "child-spacing")]
pub fn child_spacing(&self) -> i32 {
unsafe { ffi::adw_wrap_layout_get_child_spacing(self.to_glib_none().0) }
}
#[doc(alias = "adw_wrap_layout_get_child_spacing_unit")]
#[doc(alias = "get_child_spacing_unit")]
#[doc(alias = "child-spacing-unit")]
pub fn child_spacing_unit(&self) -> LengthUnit {
unsafe {
from_glib(ffi::adw_wrap_layout_get_child_spacing_unit(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_justify")]
#[doc(alias = "get_justify")]
pub fn justify(&self) -> JustifyMode {
unsafe { from_glib(ffi::adw_wrap_layout_get_justify(self.to_glib_none().0)) }
}
#[doc(alias = "adw_wrap_layout_get_justify_last_line")]
#[doc(alias = "get_justify_last_line")]
#[doc(alias = "justify-last-line")]
pub fn is_justify_last_line(&self) -> bool {
unsafe {
from_glib(ffi::adw_wrap_layout_get_justify_last_line(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_line_homogeneous")]
#[doc(alias = "get_line_homogeneous")]
#[doc(alias = "line-homogeneous")]
pub fn is_line_homogeneous(&self) -> bool {
unsafe {
from_glib(ffi::adw_wrap_layout_get_line_homogeneous(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_line_spacing")]
#[doc(alias = "get_line_spacing")]
#[doc(alias = "line-spacing")]
pub fn line_spacing(&self) -> i32 {
unsafe { ffi::adw_wrap_layout_get_line_spacing(self.to_glib_none().0) }
}
#[doc(alias = "adw_wrap_layout_get_line_spacing_unit")]
#[doc(alias = "get_line_spacing_unit")]
#[doc(alias = "line-spacing-unit")]
pub fn line_spacing_unit(&self) -> LengthUnit {
unsafe {
from_glib(ffi::adw_wrap_layout_get_line_spacing_unit(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_natural_line_length")]
#[doc(alias = "get_natural_line_length")]
#[doc(alias = "natural-line-length")]
pub fn natural_line_length(&self) -> i32 {
unsafe { ffi::adw_wrap_layout_get_natural_line_length(self.to_glib_none().0) }
}
#[doc(alias = "adw_wrap_layout_get_natural_line_length_unit")]
#[doc(alias = "get_natural_line_length_unit")]
#[doc(alias = "natural-line-length-unit")]
pub fn natural_line_length_unit(&self) -> LengthUnit {
unsafe {
from_glib(ffi::adw_wrap_layout_get_natural_line_length_unit(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_pack_direction")]
#[doc(alias = "get_pack_direction")]
#[doc(alias = "pack-direction")]
pub fn pack_direction(&self) -> PackDirection {
unsafe {
from_glib(ffi::adw_wrap_layout_get_pack_direction(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_wrap_layout_get_wrap_policy")]
#[doc(alias = "get_wrap_policy")]
#[doc(alias = "wrap-policy")]
pub fn wrap_policy(&self) -> WrapPolicy {
unsafe { from_glib(ffi::adw_wrap_layout_get_wrap_policy(self.to_glib_none().0)) }
}
#[doc(alias = "adw_wrap_layout_get_wrap_reverse")]
#[doc(alias = "get_wrap_reverse")]
#[doc(alias = "wrap-reverse")]
pub fn wraps_reverse(&self) -> bool {
unsafe { from_glib(ffi::adw_wrap_layout_get_wrap_reverse(self.to_glib_none().0)) }
}
#[doc(alias = "adw_wrap_layout_set_align")]
#[doc(alias = "align")]
pub fn set_align(&self, align: f32) {
unsafe {
ffi::adw_wrap_layout_set_align(self.to_glib_none().0, align);
}
}
#[doc(alias = "adw_wrap_layout_set_child_spacing")]
#[doc(alias = "child-spacing")]
pub fn set_child_spacing(&self, child_spacing: i32) {
unsafe {
ffi::adw_wrap_layout_set_child_spacing(self.to_glib_none().0, child_spacing);
}
}
#[doc(alias = "adw_wrap_layout_set_child_spacing_unit")]
#[doc(alias = "child-spacing-unit")]
pub fn set_child_spacing_unit(&self, unit: LengthUnit) {
unsafe {
ffi::adw_wrap_layout_set_child_spacing_unit(self.to_glib_none().0, unit.into_glib());
}
}
#[doc(alias = "adw_wrap_layout_set_justify")]
#[doc(alias = "justify")]
pub fn set_justify(&self, justify: JustifyMode) {
unsafe {
ffi::adw_wrap_layout_set_justify(self.to_glib_none().0, justify.into_glib());
}
}
#[doc(alias = "adw_wrap_layout_set_justify_last_line")]
#[doc(alias = "justify-last-line")]
pub fn set_justify_last_line(&self, justify_last_line: bool) {
unsafe {
ffi::adw_wrap_layout_set_justify_last_line(
self.to_glib_none().0,
justify_last_line.into_glib(),
);
}
}
#[doc(alias = "adw_wrap_layout_set_line_homogeneous")]
#[doc(alias = "line-homogeneous")]
pub fn set_line_homogeneous(&self, homogeneous: bool) {
unsafe {
ffi::adw_wrap_layout_set_line_homogeneous(
self.to_glib_none().0,
homogeneous.into_glib(),
);
}
}
#[doc(alias = "adw_wrap_layout_set_line_spacing")]
#[doc(alias = "line-spacing")]
pub fn set_line_spacing(&self, line_spacing: i32) {
unsafe {
ffi::adw_wrap_layout_set_line_spacing(self.to_glib_none().0, line_spacing);
}
}
#[doc(alias = "adw_wrap_layout_set_line_spacing_unit")]
#[doc(alias = "line-spacing-unit")]
pub fn set_line_spacing_unit(&self, unit: LengthUnit) {
unsafe {
ffi::adw_wrap_layout_set_line_spacing_unit(self.to_glib_none().0, unit.into_glib());
}
}
#[doc(alias = "adw_wrap_layout_set_natural_line_length")]
#[doc(alias = "natural-line-length")]
pub fn set_natural_line_length(&self, natural_line_length: i32) {
unsafe {
ffi::adw_wrap_layout_set_natural_line_length(
self.to_glib_none().0,
natural_line_length,
);
}
}
#[doc(alias = "adw_wrap_layout_set_natural_line_length_unit")]
#[doc(alias = "natural-line-length-unit")]
pub fn set_natural_line_length_unit(&self, unit: LengthUnit) {
unsafe {
ffi::adw_wrap_layout_set_natural_line_length_unit(
self.to_glib_none().0,
unit.into_glib(),
);
}
}
#[doc(alias = "adw_wrap_layout_set_pack_direction")]
#[doc(alias = "pack-direction")]
pub fn set_pack_direction(&self, pack_direction: PackDirection) {
unsafe {
ffi::adw_wrap_layout_set_pack_direction(
self.to_glib_none().0,
pack_direction.into_glib(),
);
}
}
#[doc(alias = "adw_wrap_layout_set_wrap_policy")]
#[doc(alias = "wrap-policy")]
pub fn set_wrap_policy(&self, wrap_policy: WrapPolicy) {
unsafe {
ffi::adw_wrap_layout_set_wrap_policy(self.to_glib_none().0, wrap_policy.into_glib());
}
}
#[doc(alias = "adw_wrap_layout_set_wrap_reverse")]
#[doc(alias = "wrap-reverse")]
pub fn set_wrap_reverse(&self, wrap_reverse: bool) {
unsafe {
ffi::adw_wrap_layout_set_wrap_reverse(self.to_glib_none().0, wrap_reverse.into_glib());
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "align")]
pub fn connect_align_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_align_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::align".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_align_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "child-spacing")]
pub fn connect_child_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_child_spacing_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::child-spacing".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_child_spacing_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "child-spacing-unit")]
pub fn connect_child_spacing_unit_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_child_spacing_unit_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::child-spacing-unit".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_child_spacing_unit_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "justify")]
pub fn connect_justify_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_justify_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::justify".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_justify_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "justify-last-line")]
pub fn connect_justify_last_line_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_justify_last_line_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::justify-last-line".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_justify_last_line_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "line-homogeneous")]
pub fn connect_line_homogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_line_homogeneous_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::line-homogeneous".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_line_homogeneous_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "line-spacing")]
pub fn connect_line_spacing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_line_spacing_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::line-spacing".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_line_spacing_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "line-spacing-unit")]
pub fn connect_line_spacing_unit_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_line_spacing_unit_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::line-spacing-unit".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_line_spacing_unit_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "natural-line-length")]
pub fn connect_natural_line_length_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_natural_line_length_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::natural-line-length".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_natural_line_length_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "natural-line-length-unit")]
pub fn connect_natural_line_length_unit_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_natural_line_length_unit_trampoline<
F: Fn(&WrapLayout) + 'static,
>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::natural-line-length-unit".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_natural_line_length_unit_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "pack-direction")]
pub fn connect_pack_direction_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_pack_direction_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::pack-direction".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_pack_direction_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "wrap-policy")]
pub fn connect_wrap_policy_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_wrap_policy_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::wrap-policy".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_wrap_policy_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
#[doc(alias = "wrap-reverse")]
pub fn connect_wrap_reverse_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_wrap_reverse_trampoline<F: Fn(&WrapLayout) + 'static>(
this: *mut ffi::AdwWrapLayout,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::wrap-reverse".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_wrap_reverse_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
impl Default for WrapLayout {
fn default() -> Self {
Self::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct WrapLayoutBuilder {
builder: glib::object::ObjectBuilder<'static, WrapLayout>,
}
impl WrapLayoutBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn align(self, align: f32) -> Self {
Self {
builder: self.builder.property("align", align),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn child_spacing(self, child_spacing: i32) -> Self {
Self {
builder: self.builder.property("child-spacing", child_spacing),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn child_spacing_unit(self, child_spacing_unit: LengthUnit) -> Self {
Self {
builder: self
.builder
.property("child-spacing-unit", child_spacing_unit),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn justify(self, justify: JustifyMode) -> Self {
Self {
builder: self.builder.property("justify", justify),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn justify_last_line(self, justify_last_line: bool) -> Self {
Self {
builder: self
.builder
.property("justify-last-line", justify_last_line),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn line_homogeneous(self, line_homogeneous: bool) -> Self {
Self {
builder: self.builder.property("line-homogeneous", line_homogeneous),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn line_spacing(self, line_spacing: i32) -> Self {
Self {
builder: self.builder.property("line-spacing", line_spacing),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn line_spacing_unit(self, line_spacing_unit: LengthUnit) -> Self {
Self {
builder: self
.builder
.property("line-spacing-unit", line_spacing_unit),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn natural_line_length(self, natural_line_length: i32) -> Self {
Self {
builder: self
.builder
.property("natural-line-length", natural_line_length),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn natural_line_length_unit(self, natural_line_length_unit: LengthUnit) -> Self {
Self {
builder: self
.builder
.property("natural-line-length-unit", natural_line_length_unit),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn pack_direction(self, pack_direction: PackDirection) -> Self {
Self {
builder: self.builder.property("pack-direction", pack_direction),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn wrap_policy(self, wrap_policy: WrapPolicy) -> Self {
Self {
builder: self.builder.property("wrap-policy", wrap_policy),
}
}
#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
pub fn wrap_reverse(self, wrap_reverse: bool) -> Self {
Self {
builder: self.builder.property("wrap-reverse", wrap_reverse),
}
}
pub fn orientation(self, orientation: gtk::Orientation) -> Self {
Self {
builder: self.builder.property("orientation", orientation),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> WrapLayout {
assert_initialized_main_thread!();
self.builder.build()
}
}