atk 0.18.2

UNMAINTAINED Rust bindings for the ATK library
Documentation
// 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::Object;
use glib::{prelude::*, translate::*};
use std::fmt;

glib::wrapper! {
    #[doc(alias = "AtkGObjectAccessible")]
    pub struct GObjectAccessible(Object<ffi::AtkGObjectAccessible, ffi::AtkGObjectAccessibleClass>) @extends Object;

    match fn {
        type_ => || ffi::atk_gobject_accessible_get_type(),
    }
}

impl GObjectAccessible {
    pub const NONE: Option<&'static GObjectAccessible> = None;

    #[doc(alias = "atk_gobject_accessible_for_object")]
    pub fn for_object(obj: &impl IsA<glib::Object>) -> Option<Object> {
        assert_initialized_main_thread!();
        unsafe {
            from_glib_none(ffi::atk_gobject_accessible_for_object(
                obj.as_ref().to_glib_none().0,
            ))
        }
    }
}

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::GObjectAccessible>> Sealed for T {}
}

pub trait GObjectAccessibleExt: IsA<GObjectAccessible> + sealed::Sealed + 'static {
    #[doc(alias = "atk_gobject_accessible_get_object")]
    #[doc(alias = "get_object")]
    fn object(&self) -> Option<glib::Object> {
        unsafe {
            from_glib_none(ffi::atk_gobject_accessible_get_object(
                self.as_ref().to_glib_none().0,
            ))
        }
    }
}

impl<O: IsA<GObjectAccessible>> GObjectAccessibleExt for O {}

impl fmt::Display for GObjectAccessible {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("GObjectAccessible")
    }
}