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 objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct CLSBinaryValueType(pub NSInteger);
impl CLSBinaryValueType {
    #[doc(alias = "CLSBinaryValueTypeTrueFalse")]
    pub const TrueFalse: Self = Self(0);
    #[doc(alias = "CLSBinaryValueTypePassFail")]
    pub const PassFail: Self = Self(1);
    #[doc(alias = "CLSBinaryValueTypeYesNo")]
    pub const YesNo: Self = Self(2);
    #[doc(alias = "CLSBinaryValueTypeCorrectIncorrect")]
    pub const CorrectIncorrect: Self = Self(3);
}

unsafe impl Encode for CLSBinaryValueType {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

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

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
    pub struct CLSBinaryItem;

    #[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
    unsafe impl ClassType for CLSBinaryItem {
        #[inherits(CLSObject, NSObject)]
        type Super = CLSActivityItem;
        type Mutability = InteriorMutable;
    }
);

#[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
unsafe impl NSCoding for CLSBinaryItem {}

#[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
unsafe impl NSObjectProtocol for CLSBinaryItem {}

#[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
unsafe impl NSSecureCoding for CLSBinaryItem {}

extern_methods!(
    #[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
    unsafe impl CLSBinaryItem {
        #[method(value)]
        pub unsafe fn value(&self) -> bool;

        #[method(setValue:)]
        pub unsafe fn setValue(&self, value: bool);

        #[method(valueType)]
        pub unsafe fn valueType(&self) -> CLSBinaryValueType;

        #[method_id(@__retain_semantics Init initWithIdentifier:title:type:)]
        pub unsafe fn initWithIdentifier_title_type(
            this: Allocated<Self>,
            identifier: &NSString,
            title: &NSString,
            value_type: CLSBinaryValueType,
        ) -> Retained<Self>;
    }
);

extern_methods!(
    /// Methods declared on superclass `CLSActivityItem`
    #[cfg(all(feature = "CLSActivityItem", feature = "CLSObject"))]
    unsafe impl CLSBinaryItem {
        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Retained<Self>;

        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
    }
);