use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSLayoutGuide;
);
extern_conformance!(
unsafe impl NSCoding for NSLayoutGuide {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for NSLayoutGuide {}
);
#[cfg(feature = "NSUserInterfaceItemIdentification")]
extern_conformance!(
unsafe impl NSUserInterfaceItemIdentification for NSLayoutGuide {}
);
impl NSLayoutGuide {
extern_methods!(
#[unsafe(method(frame))]
#[unsafe(method_family = none)]
pub fn frame(&self) -> NSRect;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[unsafe(method(owningView))]
#[unsafe(method_family = none)]
pub fn owningView(&self, mtm: MainThreadMarker) -> Option<Retained<NSView>>;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[unsafe(method(setOwningView:))]
#[unsafe(method_family = none)]
pub fn setOwningView(&self, owning_view: Option<&NSView>);
#[cfg(feature = "NSUserInterfaceItemIdentification")]
#[unsafe(method(identifier))]
#[unsafe(method_family = none)]
pub fn identifier(&self) -> Retained<NSUserInterfaceItemIdentifier>;
#[cfg(feature = "NSUserInterfaceItemIdentification")]
#[unsafe(method(setIdentifier:))]
#[unsafe(method_family = none)]
pub fn setIdentifier(&self, identifier: &NSUserInterfaceItemIdentifier);
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(leadingAnchor))]
#[unsafe(method_family = none)]
pub fn leadingAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(trailingAnchor))]
#[unsafe(method_family = none)]
pub fn trailingAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(leftAnchor))]
#[unsafe(method_family = none)]
pub fn leftAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(rightAnchor))]
#[unsafe(method_family = none)]
pub fn rightAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(topAnchor))]
#[unsafe(method_family = none)]
pub fn topAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(bottomAnchor))]
#[unsafe(method_family = none)]
pub fn bottomAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(widthAnchor))]
#[unsafe(method_family = none)]
pub fn widthAnchor(&self) -> Retained<NSLayoutDimension>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(heightAnchor))]
#[unsafe(method_family = none)]
pub fn heightAnchor(&self) -> Retained<NSLayoutDimension>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(centerXAnchor))]
#[unsafe(method_family = none)]
pub fn centerXAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;
#[cfg(feature = "NSLayoutAnchor")]
#[unsafe(method(centerYAnchor))]
#[unsafe(method_family = none)]
pub fn centerYAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;
#[unsafe(method(hasAmbiguousLayout))]
#[unsafe(method_family = none)]
pub fn hasAmbiguousLayout(&self) -> bool;
#[cfg(feature = "NSLayoutConstraint")]
#[unsafe(method(constraintsAffectingLayoutForOrientation:))]
#[unsafe(method_family = none)]
pub fn constraintsAffectingLayoutForOrientation(
&self,
orientation: NSLayoutConstraintOrientation,
) -> Retained<NSArray<NSLayoutConstraint>>;
);
}
impl NSLayoutGuide {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new() -> Retained<Self>;
);
}
impl DefaultRetained for NSLayoutGuide {
#[inline]
fn default_retained() -> Retained<Self> {
Self::new()
}
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSView {
extern_methods!(
#[unsafe(method(addLayoutGuide:))]
#[unsafe(method_family = none)]
pub fn addLayoutGuide(&self, guide: &NSLayoutGuide);
#[unsafe(method(removeLayoutGuide:))]
#[unsafe(method_family = none)]
pub fn removeLayoutGuide(&self, guide: &NSLayoutGuide);
#[unsafe(method(layoutGuides))]
#[unsafe(method_family = none)]
pub fn layoutGuides(&self) -> Retained<NSArray<NSLayoutGuide>>;
);
}