1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//! 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);
);
}