use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
#[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!(
#[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>;
}
);