use crate::{ffi};
use glib::{object::ObjectType as _,prelude::*,signal::{connect_raw, SignalHandlerId},translate::*};
use std::{boxed::Box as Box_};
glib::wrapper! {
#[doc(alias = "PhoshStatusPage")]
pub struct StatusPage(Object<ffi::PhoshStatusPage, ffi::PhoshStatusPageClass>) @extends gtk::Bin, gtk::Container, gtk::Widget;
match fn {
type_ => || ffi::phosh_status_page_get_type(),
}
}
impl StatusPage {
pub const NONE: Option<&'static StatusPage> = None;
#[doc(alias = "phosh_status_page_new")]
pub fn new() -> StatusPage {
assert_initialized_main_thread!();
unsafe {
from_glib_none(ffi::phosh_status_page_new())
}
}
pub fn builder() -> StatusPageBuilder {
StatusPageBuilder::new()
}
}
impl Default for StatusPage {
fn default() -> Self {
Self::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct StatusPageBuilder {
builder: glib::object::ObjectBuilder<'static, StatusPage>,
}
impl StatusPageBuilder {
fn new() -> Self {
Self { builder: glib::object::Object::builder() }
}
pub fn content(self, content: &impl IsA<gtk::Widget>) -> Self {
Self { builder: self.builder.property("content", content.clone().upcast()), }
}
pub fn footer(self, footer: &impl IsA<gtk::Widget>) -> Self {
Self { builder: self.builder.property("footer", footer.clone().upcast()), }
}
pub fn header(self, header: &impl IsA<gtk::Widget>) -> Self {
Self { builder: self.builder.property("header", header.clone().upcast()), }
}
pub fn title(self, title: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("title", title.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<gtk::Widget>) -> Self {
Self { builder: self.builder.property("child", child.clone().upcast()), }
}
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), }
}
#[cfg(feature = "gtk_v2_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v2_18")))]
#[cfg_attr(feature = "v3_14", deprecated = "Since 3.14")]
pub fn double_buffered(self, double_buffered: bool) -> Self {
Self { builder: self.builder.property("double-buffered", double_buffered), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
pub fn expand(self, expand: bool) -> Self {
Self { builder: self.builder.property("expand", expand), }
}
#[cfg(feature = "gtk_v3_20")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3_20")))]
pub fn focus_on_click(self, focus_on_click: bool) -> Self {
Self { builder: self.builder.property("focus-on-click", focus_on_click), }
}
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
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), }
}
#[cfg(feature = "gtk_v2_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v2_12")))]
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), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
pub fn hexpand(self, hexpand: bool) -> Self {
Self { builder: self.builder.property("hexpand", hexpand), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
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), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
pub fn margin(self, margin: i32) -> Self {
Self { builder: self.builder.property("margin", margin), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
pub fn margin_bottom(self, margin_bottom: i32) -> Self {
Self { builder: self.builder.property("margin-bottom", margin_bottom), }
}
#[cfg(feature = "gtk_v3_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3_12")))]
pub fn margin_end(self, margin_end: i32) -> Self {
Self { builder: self.builder.property("margin-end", margin_end), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
#[cfg_attr(feature = "v3_12", deprecated = "Since 3.12")]
pub fn margin_left(self, margin_left: i32) -> Self {
Self { builder: self.builder.property("margin-left", margin_left), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
#[cfg_attr(feature = "v3_12", deprecated = "Since 3.12")]
pub fn margin_right(self, margin_right: i32) -> Self {
Self { builder: self.builder.property("margin-right", margin_right), }
}
#[cfg(feature = "gtk_v3_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3_12")))]
pub fn margin_start(self, margin_start: i32) -> Self {
Self { builder: self.builder.property("margin-start", margin_start), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
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), }
}
#[cfg(feature = "gtk_v3_8")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3_8")))]
pub fn opacity(self, opacity: f64) -> Self {
Self { builder: self.builder.property("opacity", opacity), }
}
pub fn parent(self, parent: &impl IsA<gtk::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), }
}
#[cfg(feature = "gtk_v2_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v2_12")))]
pub fn tooltip_markup(self, tooltip_markup: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("tooltip-markup", tooltip_markup.into()), }
}
#[cfg(feature = "gtk_v2_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v2_12")))]
pub fn tooltip_text(self, tooltip_text: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("tooltip-text", tooltip_text.into()), }
}
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
pub fn vexpand(self, vexpand: bool) -> Self {
Self { builder: self.builder.property("vexpand", vexpand), }
}
#[cfg(feature = "gtk_v3")]
#[cfg_attr(docsrs, doc(cfg(feature = "gtk_v3")))]
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) -> StatusPage {
assert_initialized_main_thread!();
self.builder.build() }
}
pub trait StatusPageExt: IsA<StatusPage> + 'static {
#[doc(alias = "phosh_status_page_get_content")]
#[doc(alias = "get_content")]
fn content(&self) -> gtk::Widget {
unsafe {
from_glib_none(ffi::phosh_status_page_get_content(self.as_ref().to_glib_none().0))
}
}
#[doc(alias = "phosh_status_page_get_footer")]
#[doc(alias = "get_footer")]
fn footer(&self) -> gtk::Widget {
unsafe {
from_glib_none(ffi::phosh_status_page_get_footer(self.as_ref().to_glib_none().0))
}
}
#[doc(alias = "phosh_status_page_get_header")]
#[doc(alias = "get_header")]
fn header(&self) -> gtk::Widget {
unsafe {
from_glib_none(ffi::phosh_status_page_get_header(self.as_ref().to_glib_none().0))
}
}
#[doc(alias = "phosh_status_page_get_title")]
#[doc(alias = "get_title")]
fn title(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::phosh_status_page_get_title(self.as_ref().to_glib_none().0))
}
}
#[doc(alias = "phosh_status_page_set_content")]
#[doc(alias = "content")]
fn set_content(&self, content: &impl IsA<gtk::Widget>) {
unsafe {
ffi::phosh_status_page_set_content(self.as_ref().to_glib_none().0, content.as_ref().to_glib_none().0);
}
}
#[doc(alias = "phosh_status_page_set_footer")]
#[doc(alias = "footer")]
fn set_footer(&self, footer: &impl IsA<gtk::Widget>) {
unsafe {
ffi::phosh_status_page_set_footer(self.as_ref().to_glib_none().0, footer.as_ref().to_glib_none().0);
}
}
#[doc(alias = "phosh_status_page_set_header")]
#[doc(alias = "header")]
fn set_header(&self, header: &impl IsA<gtk::Widget>) {
unsafe {
ffi::phosh_status_page_set_header(self.as_ref().to_glib_none().0, header.as_ref().to_glib_none().0);
}
}
#[doc(alias = "phosh_status_page_set_title")]
#[doc(alias = "title")]
fn set_title(&self, title: &str) {
unsafe {
ffi::phosh_status_page_set_title(self.as_ref().to_glib_none().0, title.to_glib_none().0);
}
}
#[doc(alias = "done")]
fn connect_done<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn done_trampoline<P: IsA<StatusPage>, F: Fn(&P) + 'static>(this: *mut ffi::PhoshStatusPage, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(StatusPage::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"done".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(done_trampoline::<Self, F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "content")]
fn connect_content_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_content_trampoline<P: IsA<StatusPage>, F: Fn(&P) + 'static>(this: *mut ffi::PhoshStatusPage, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(StatusPage::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::content".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_content_trampoline::<Self, F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "footer")]
fn connect_footer_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_footer_trampoline<P: IsA<StatusPage>, F: Fn(&P) + 'static>(this: *mut ffi::PhoshStatusPage, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(StatusPage::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::footer".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_footer_trampoline::<Self, F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "header")]
fn connect_header_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_header_trampoline<P: IsA<StatusPage>, F: Fn(&P) + 'static>(this: *mut ffi::PhoshStatusPage, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(StatusPage::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::header".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_header_trampoline::<Self, F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "title")]
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_title_trampoline<P: IsA<StatusPage>, F: Fn(&P) + 'static>(this: *mut ffi::PhoshStatusPage, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(StatusPage::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::title".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_title_trampoline::<Self, F> as *const ())), Box_::into_raw(f))
}
}
}
impl<O: IsA<StatusPage>> StatusPageExt for O {}