use crate::{Align, Buildable, Container, ResizeMode, StackTransitionType, Widget};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, fmt, mem::transmute};
glib::wrapper! {
#[doc(alias = "GtkStack")]
pub struct Stack(Object<ffi::GtkStack, ffi::GtkStackClass>) @extends Container, Widget, @implements Buildable;
match fn {
type_ => || ffi::gtk_stack_get_type(),
}
}
impl Stack {
pub const NONE: Option<&'static Stack> = None;
#[doc(alias = "gtk_stack_new")]
pub fn new() -> Stack {
assert_initialized_main_thread!();
unsafe { Widget::from_glib_none(ffi::gtk_stack_new()).unsafe_cast() }
}
pub fn builder() -> StackBuilder {
StackBuilder::new()
}
}
impl Default for Stack {
fn default() -> Self {
Self::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct StackBuilder {
builder: glib::object::ObjectBuilder<'static, Stack>,
}
impl StackBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn hhomogeneous(self, hhomogeneous: bool) -> Self {
Self {
builder: self.builder.property("hhomogeneous", hhomogeneous),
}
}
pub fn homogeneous(self, homogeneous: bool) -> Self {
Self {
builder: self.builder.property("homogeneous", homogeneous),
}
}
pub fn interpolate_size(self, interpolate_size: bool) -> Self {
Self {
builder: self.builder.property("interpolate-size", interpolate_size),
}
}
pub fn transition_duration(self, transition_duration: u32) -> Self {
Self {
builder: self
.builder
.property("transition-duration", transition_duration),
}
}
pub fn transition_type(self, transition_type: StackTransitionType) -> Self {
Self {
builder: self.builder.property("transition-type", transition_type),
}
}
pub fn vhomogeneous(self, vhomogeneous: bool) -> Self {
Self {
builder: self.builder.property("vhomogeneous", vhomogeneous),
}
}
pub fn visible_child(self, visible_child: &impl IsA<Widget>) -> Self {
Self {
builder: self
.builder
.property("visible-child", visible_child.clone().upcast()),
}
}
pub fn visible_child_name(self, visible_child_name: impl Into<glib::GString>) -> Self {
Self {
builder: self
.builder
.property("visible-child-name", visible_child_name.into()),
}
}
pub fn border_width(self, border_width: u32) -> Self {
Self {
builder: self.builder.property("border-width", border_width),
}
}
pub fn child(self, child: &impl IsA<Widget>) -> Self {
Self {
builder: self.builder.property("child", child.clone().upcast()),
}
}
pub fn resize_mode(self, resize_mode: ResizeMode) -> Self {
Self {
builder: self.builder.property("resize-mode", resize_mode),
}
}
pub fn app_paintable(self, app_paintable: bool) -> Self {
Self {
builder: self.builder.property("app-paintable", app_paintable),
}
}
pub fn can_default(self, can_default: bool) -> Self {
Self {
builder: self.builder.property("can-default", can_default),
}
}
pub fn can_focus(self, can_focus: bool) -> Self {
Self {
builder: self.builder.property("can-focus", can_focus),
}
}
pub fn events(self, events: gdk::EventMask) -> Self {
Self {
builder: self.builder.property("events", events),
}
}
pub fn expand(self, expand: bool) -> Self {
Self {
builder: self.builder.property("expand", expand),
}
}
pub fn focus_on_click(self, focus_on_click: bool) -> Self {
Self {
builder: self.builder.property("focus-on-click", focus_on_click),
}
}
pub fn halign(self, halign: Align) -> Self {
Self {
builder: self.builder.property("halign", halign),
}
}
pub fn has_default(self, has_default: bool) -> Self {
Self {
builder: self.builder.property("has-default", has_default),
}
}
pub fn has_focus(self, has_focus: bool) -> Self {
Self {
builder: self.builder.property("has-focus", has_focus),
}
}
pub fn has_tooltip(self, has_tooltip: bool) -> Self {
Self {
builder: self.builder.property("has-tooltip", has_tooltip),
}
}
pub fn height_request(self, height_request: i32) -> Self {
Self {
builder: self.builder.property("height-request", height_request),
}
}
pub fn hexpand(self, hexpand: bool) -> Self {
Self {
builder: self.builder.property("hexpand", hexpand),
}
}
pub fn hexpand_set(self, hexpand_set: bool) -> Self {
Self {
builder: self.builder.property("hexpand-set", hexpand_set),
}
}
pub fn is_focus(self, is_focus: bool) -> Self {
Self {
builder: self.builder.property("is-focus", is_focus),
}
}
pub fn margin(self, margin: i32) -> Self {
Self {
builder: self.builder.property("margin", margin),
}
}
pub fn margin_bottom(self, margin_bottom: i32) -> Self {
Self {
builder: self.builder.property("margin-bottom", margin_bottom),
}
}
pub fn margin_end(self, margin_end: i32) -> Self {
Self {
builder: self.builder.property("margin-end", margin_end),
}
}
pub fn margin_start(self, margin_start: i32) -> Self {
Self {
builder: self.builder.property("margin-start", margin_start),
}
}
pub fn margin_top(self, margin_top: i32) -> Self {
Self {
builder: self.builder.property("margin-top", margin_top),
}
}
pub fn name(self, name: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("name", name.into()),
}
}
pub fn no_show_all(self, no_show_all: bool) -> Self {
Self {
builder: self.builder.property("no-show-all", no_show_all),
}
}
pub fn opacity(self, opacity: f64) -> Self {
Self {
builder: self.builder.property("opacity", opacity),
}
}
pub fn parent(self, parent: &impl IsA<Container>) -> Self {
Self {
builder: self.builder.property("parent", parent.clone().upcast()),
}
}
pub fn receives_default(self, receives_default: bool) -> Self {
Self {
builder: self.builder.property("receives-default", receives_default),
}
}
pub fn sensitive(self, sensitive: bool) -> Self {
Self {
builder: self.builder.property("sensitive", sensitive),
}
}
pub fn tooltip_markup(self, tooltip_markup: impl Into<glib::GString>) -> Self {
Self {
builder: self
.builder
.property("tooltip-markup", tooltip_markup.into()),
}
}
pub fn tooltip_text(self, tooltip_text: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("tooltip-text", tooltip_text.into()),
}
}
pub fn valign(self, valign: Align) -> Self {
Self {
builder: self.builder.property("valign", valign),
}
}
pub fn vexpand(self, vexpand: bool) -> Self {
Self {
builder: self.builder.property("vexpand", vexpand),
}
}
pub fn vexpand_set(self, vexpand_set: bool) -> Self {
Self {
builder: self.builder.property("vexpand-set", vexpand_set),
}
}
pub fn visible(self, visible: bool) -> Self {
Self {
builder: self.builder.property("visible", visible),
}
}
pub fn width_request(self, width_request: i32) -> Self {
Self {
builder: self.builder.property("width-request", width_request),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> Stack {
self.builder.build()
}
}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::Stack>> Sealed for T {}
}
pub trait StackExt: IsA<Stack> + sealed::Sealed + 'static {
#[doc(alias = "gtk_stack_add_named")]
fn add_named(&self, child: &impl IsA<Widget>, name: &str) {
unsafe {
ffi::gtk_stack_add_named(
self.as_ref().to_glib_none().0,
child.as_ref().to_glib_none().0,
name.to_glib_none().0,
);
}
}
#[doc(alias = "gtk_stack_add_titled")]
fn add_titled(&self, child: &impl IsA<Widget>, name: &str, title: &str) {
unsafe {
ffi::gtk_stack_add_titled(
self.as_ref().to_glib_none().0,
child.as_ref().to_glib_none().0,
name.to_glib_none().0,
title.to_glib_none().0,
);
}
}
#[doc(alias = "gtk_stack_get_child_by_name")]
#[doc(alias = "get_child_by_name")]
fn child_by_name(&self, name: &str) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_stack_get_child_by_name(
self.as_ref().to_glib_none().0,
name.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_hhomogeneous")]
#[doc(alias = "get_hhomogeneous")]
fn is_hhomogeneous(&self) -> bool {
unsafe {
from_glib(ffi::gtk_stack_get_hhomogeneous(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_homogeneous")]
#[doc(alias = "get_homogeneous")]
fn is_homogeneous(&self) -> bool {
unsafe {
from_glib(ffi::gtk_stack_get_homogeneous(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_interpolate_size")]
#[doc(alias = "get_interpolate_size")]
fn interpolates_size(&self) -> bool {
unsafe {
from_glib(ffi::gtk_stack_get_interpolate_size(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_transition_duration")]
#[doc(alias = "get_transition_duration")]
fn transition_duration(&self) -> u32 {
unsafe { ffi::gtk_stack_get_transition_duration(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gtk_stack_get_transition_running")]
#[doc(alias = "get_transition_running")]
fn is_transition_running(&self) -> bool {
unsafe {
from_glib(ffi::gtk_stack_get_transition_running(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_transition_type")]
#[doc(alias = "get_transition_type")]
fn transition_type(&self) -> StackTransitionType {
unsafe {
from_glib(ffi::gtk_stack_get_transition_type(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_vhomogeneous")]
#[doc(alias = "get_vhomogeneous")]
fn is_vhomogeneous(&self) -> bool {
unsafe {
from_glib(ffi::gtk_stack_get_vhomogeneous(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_visible_child")]
#[doc(alias = "get_visible_child")]
fn visible_child(&self) -> Option<Widget> {
unsafe {
from_glib_none(ffi::gtk_stack_get_visible_child(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_get_visible_child_name")]
#[doc(alias = "get_visible_child_name")]
fn visible_child_name(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::gtk_stack_get_visible_child_name(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_stack_set_hhomogeneous")]
fn set_hhomogeneous(&self, hhomogeneous: bool) {
unsafe {
ffi::gtk_stack_set_hhomogeneous(
self.as_ref().to_glib_none().0,
hhomogeneous.into_glib(),
);
}
}
#[doc(alias = "gtk_stack_set_homogeneous")]
fn set_homogeneous(&self, homogeneous: bool) {
unsafe {
ffi::gtk_stack_set_homogeneous(self.as_ref().to_glib_none().0, homogeneous.into_glib());
}
}
#[doc(alias = "gtk_stack_set_interpolate_size")]
fn set_interpolate_size(&self, interpolate_size: bool) {
unsafe {
ffi::gtk_stack_set_interpolate_size(
self.as_ref().to_glib_none().0,
interpolate_size.into_glib(),
);
}
}
#[doc(alias = "gtk_stack_set_transition_duration")]
fn set_transition_duration(&self, duration: u32) {
unsafe {
ffi::gtk_stack_set_transition_duration(self.as_ref().to_glib_none().0, duration);
}
}
#[doc(alias = "gtk_stack_set_transition_type")]
fn set_transition_type(&self, transition: StackTransitionType) {
unsafe {
ffi::gtk_stack_set_transition_type(
self.as_ref().to_glib_none().0,
transition.into_glib(),
);
}
}
#[doc(alias = "gtk_stack_set_vhomogeneous")]
fn set_vhomogeneous(&self, vhomogeneous: bool) {
unsafe {
ffi::gtk_stack_set_vhomogeneous(
self.as_ref().to_glib_none().0,
vhomogeneous.into_glib(),
);
}
}
#[doc(alias = "gtk_stack_set_visible_child")]
fn set_visible_child(&self, child: &impl IsA<Widget>) {
unsafe {
ffi::gtk_stack_set_visible_child(
self.as_ref().to_glib_none().0,
child.as_ref().to_glib_none().0,
);
}
}
#[doc(alias = "gtk_stack_set_visible_child_full")]
fn set_visible_child_full(&self, name: &str, transition: StackTransitionType) {
unsafe {
ffi::gtk_stack_set_visible_child_full(
self.as_ref().to_glib_none().0,
name.to_glib_none().0,
transition.into_glib(),
);
}
}
#[doc(alias = "gtk_stack_set_visible_child_name")]
fn set_visible_child_name(&self, name: &str) {
unsafe {
ffi::gtk_stack_set_visible_child_name(
self.as_ref().to_glib_none().0,
name.to_glib_none().0,
);
}
}
#[doc(alias = "child.icon-name")]
fn child_icon_name<T: IsA<crate::Widget>>(&self, item: &T) -> Option<glib::GString> {
crate::prelude::ContainerExtManual::child_property(
self.as_ref(),
&item.clone().upcast(),
"icon-name",
)
}
#[doc(alias = "child.icon-name")]
fn set_child_icon_name<T: IsA<crate::Widget>>(&self, item: &T, icon_name: Option<&str>) {
crate::prelude::ContainerExtManual::child_set_property(
self.as_ref(),
&item.clone().upcast(),
"icon-name",
&icon_name,
)
}
fn child_name<T: IsA<crate::Widget>>(&self, item: &T) -> Option<glib::GString> {
crate::prelude::ContainerExtManual::child_property(
self.as_ref(),
&item.clone().upcast(),
"name",
)
}
fn set_child_name<T: IsA<crate::Widget>>(&self, item: &T, name: Option<&str>) {
crate::prelude::ContainerExtManual::child_set_property(
self.as_ref(),
&item.clone().upcast(),
"name",
&name,
)
}
#[doc(alias = "child.needs-attention")]
fn child_needs_attention<T: IsA<crate::Widget>>(&self, item: &T) -> bool {
crate::prelude::ContainerExtManual::child_property(
self.as_ref(),
&item.clone().upcast(),
"needs-attention",
)
}
#[doc(alias = "child.needs-attention")]
fn set_child_needs_attention<T: IsA<crate::Widget>>(&self, item: &T, needs_attention: bool) {
crate::prelude::ContainerExtManual::child_set_property(
self.as_ref(),
&item.clone().upcast(),
"needs-attention",
&needs_attention,
)
}
fn child_position<T: IsA<crate::Widget>>(&self, item: &T) -> i32 {
crate::prelude::ContainerExtManual::child_property(
self.as_ref(),
&item.clone().upcast(),
"position",
)
}
fn set_child_position<T: IsA<crate::Widget>>(&self, item: &T, position: i32) {
crate::prelude::ContainerExtManual::child_set_property(
self.as_ref(),
&item.clone().upcast(),
"position",
&position,
)
}
fn child_title<T: IsA<crate::Widget>>(&self, item: &T) -> Option<glib::GString> {
crate::prelude::ContainerExtManual::child_property(
self.as_ref(),
&item.clone().upcast(),
"title",
)
}
fn set_child_title<T: IsA<crate::Widget>>(&self, item: &T, title: Option<&str>) {
crate::prelude::ContainerExtManual::child_set_property(
self.as_ref(),
&item.clone().upcast(),
"title",
&title,
)
}
#[doc(alias = "hhomogeneous")]
fn connect_hhomogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_hhomogeneous_trampoline<P: IsA<Stack>, F: Fn(&P) + 'static>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::hhomogeneous\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_hhomogeneous_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "homogeneous")]
fn connect_homogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_homogeneous_trampoline<P: IsA<Stack>, F: Fn(&P) + 'static>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::homogeneous\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_homogeneous_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "interpolate-size")]
fn connect_interpolate_size_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_interpolate_size_trampoline<
P: IsA<Stack>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::interpolate-size\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_interpolate_size_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "transition-duration")]
fn connect_transition_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_transition_duration_trampoline<
P: IsA<Stack>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::transition-duration\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_transition_duration_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "transition-running")]
fn connect_transition_running_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_transition_running_trampoline<
P: IsA<Stack>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::transition-running\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_transition_running_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "transition-type")]
fn connect_transition_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_transition_type_trampoline<
P: IsA<Stack>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::transition-type\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_transition_type_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "vhomogeneous")]
fn connect_vhomogeneous_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_vhomogeneous_trampoline<P: IsA<Stack>, F: Fn(&P) + 'static>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::vhomogeneous\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_vhomogeneous_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "visible-child")]
fn connect_visible_child_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_visible_child_trampoline<P: IsA<Stack>, F: Fn(&P) + 'static>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::visible-child\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_visible_child_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "visible-child-name")]
fn connect_visible_child_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_visible_child_name_trampoline<
P: IsA<Stack>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkStack,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Stack::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::visible-child-name\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_visible_child_name_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<Stack>> StackExt for O {}
impl fmt::Display for Stack {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Stack")
}
}