objc2-ui-kit 0.3.2

Bindings to the UIKit framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use objc2::__framework_prelude::*;

use crate::*;

/// Behavioral Styles are values that determine how a class — such as a view or control — behaves. This includes how the control is drawn, and what behaviors it supports. For example, handling certain customizations in one style, but not another.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/uikit/uibehavioralstyle?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIBehavioralStyle(pub NSUInteger);
impl UIBehavioralStyle {
    /// The system will choose the most appropriate style for the targetted platform.
    #[doc(alias = "UIBehavioralStyleAutomatic")]
    pub const Automatic: Self = Self(0);
    /// A style and set of behaviors best for iOS/iPadOS applications
    #[doc(alias = "UIBehavioralStylePad")]
    pub const Pad: Self = Self(1);
    /// A style and set of behaviors best for macOS applications
    #[doc(alias = "UIBehavioralStyleMac")]
    pub const Mac: Self = Self(2);
}

unsafe impl Encode for UIBehavioralStyle {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for UIBehavioralStyle {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// UIBehavioralStyle.
#[cfg(all(
    feature = "UIButton",
    feature = "UIControl",
    feature = "UIResponder",
    feature = "UIView"
))]
impl UIButton {
    extern_methods!(
        /// The button's behavioral style. This property always returns a concrete, resolved style (never UIBehavioralStyleAutomatic).
        #[unsafe(method(behavioralStyle))]
        #[unsafe(method_family = none)]
        pub fn behavioralStyle(&self) -> UIBehavioralStyle;

        /// Request a style for the button. If the style changed, the button will redraw and its metrics may change.
        #[unsafe(method(preferredBehavioralStyle))]
        #[unsafe(method_family = none)]
        pub fn preferredBehavioralStyle(&self) -> UIBehavioralStyle;

        /// Setter for [`preferredBehavioralStyle`][Self::preferredBehavioralStyle].
        #[unsafe(method(setPreferredBehavioralStyle:))]
        #[unsafe(method_family = none)]
        pub fn setPreferredBehavioralStyle(&self, preferred_behavioral_style: UIBehavioralStyle);
    );
}

/// UIBehavioralStyle.
#[cfg(all(
    feature = "UIControl",
    feature = "UIResponder",
    feature = "UISlider",
    feature = "UIView"
))]
impl UISlider {
    extern_methods!(
        /// The slider's behavioral style. This property always returns a concrete, resolved style (never UIBehavioralStyleAutomatic).
        #[unsafe(method(behavioralStyle))]
        #[unsafe(method_family = none)]
        pub fn behavioralStyle(&self) -> UIBehavioralStyle;

        /// Request a style for the slider. If the style changes, the slider will redraw and its metrics may change.
        #[unsafe(method(preferredBehavioralStyle))]
        #[unsafe(method_family = none)]
        pub fn preferredBehavioralStyle(&self) -> UIBehavioralStyle;

        /// Setter for [`preferredBehavioralStyle`][Self::preferredBehavioralStyle].
        #[unsafe(method(setPreferredBehavioralStyle:))]
        #[unsafe(method_family = none)]
        pub fn setPreferredBehavioralStyle(&self, preferred_behavioral_style: UIBehavioralStyle);
    );
}