use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "UIBarAppearance")]
pub struct UIToolbarAppearance;
#[cfg(feature = "UIBarAppearance")]
unsafe impl ClassType for UIToolbarAppearance {
#[inherits(NSObject)]
type Super = UIBarAppearance;
type Mutability = MainThreadOnly;
}
);
#[cfg(feature = "UIBarAppearance")]
unsafe impl NSCoding for UIToolbarAppearance {}
#[cfg(feature = "UIBarAppearance")]
unsafe impl NSCopying for UIToolbarAppearance {}
#[cfg(feature = "UIBarAppearance")]
unsafe impl NSObjectProtocol for UIToolbarAppearance {}
#[cfg(feature = "UIBarAppearance")]
unsafe impl NSSecureCoding for UIToolbarAppearance {}
extern_methods!(
#[cfg(feature = "UIBarAppearance")]
unsafe impl UIToolbarAppearance {
#[cfg(feature = "UIBarButtonItemAppearance")]
#[method_id(@__retain_semantics Other buttonAppearance)]
pub unsafe fn buttonAppearance(&self) -> Retained<UIBarButtonItemAppearance>;
#[cfg(feature = "UIBarButtonItemAppearance")]
#[method(setButtonAppearance:)]
pub unsafe fn setButtonAppearance(&self, button_appearance: &UIBarButtonItemAppearance);
#[cfg(feature = "UIBarButtonItemAppearance")]
#[method_id(@__retain_semantics Other doneButtonAppearance)]
pub unsafe fn doneButtonAppearance(&self) -> Retained<UIBarButtonItemAppearance>;
#[cfg(feature = "UIBarButtonItemAppearance")]
#[method(setDoneButtonAppearance:)]
pub unsafe fn setDoneButtonAppearance(
&self,
done_button_appearance: &UIBarButtonItemAppearance,
);
}
);
extern_methods!(
#[cfg(feature = "UIBarAppearance")]
unsafe impl UIToolbarAppearance {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "UIDevice")]
#[method_id(@__retain_semantics Init initWithIdiom:)]
pub unsafe fn initWithIdiom(
this: Allocated<Self>,
idiom: UIUserInterfaceIdiom,
) -> Retained<Self>;
#[method_id(@__retain_semantics Init initWithBarAppearance:)]
pub unsafe fn initWithBarAppearance(
this: Allocated<Self>,
bar_appearance: &UIBarAppearance,
) -> Retained<Self>;
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Retained<Self>;
}
);
extern_methods!(
#[cfg(feature = "UIBarAppearance")]
unsafe impl UIToolbarAppearance {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
}
);