use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTextFieldBezelStyle(pub NSUInteger);
impl NSTextFieldBezelStyle {
#[doc(alias = "NSTextFieldSquareBezel")]
pub const SquareBezel: Self = Self(0);
#[doc(alias = "NSTextFieldRoundedBezel")]
pub const RoundedBezel: Self = Self(1);
}
unsafe impl Encode for NSTextFieldBezelStyle {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for NSTextFieldBezelStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(NSActionCell, NSCell, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
pub struct NSTextFieldCell;
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSActionCell",
feature = "NSCell"
))]
extern_conformance!(
unsafe impl NSAccessibility for NSTextFieldCell {}
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSActionCell",
feature = "NSCell"
))]
extern_conformance!(
unsafe impl NSAccessibilityElementProtocol for NSTextFieldCell {}
);
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
extern_conformance!(
unsafe impl NSCoding for NSTextFieldCell {}
);
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
extern_conformance!(
unsafe impl NSCopying for NSTextFieldCell {}
);
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
unsafe impl CopyingHelper for NSTextFieldCell {
type Result = Self;
}
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
extern_conformance!(
unsafe impl NSObjectProtocol for NSTextFieldCell {}
);
#[cfg(all(
feature = "NSActionCell",
feature = "NSCell",
feature = "NSUserInterfaceItemIdentification"
))]
extern_conformance!(
unsafe impl NSUserInterfaceItemIdentification for NSTextFieldCell {}
);
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
impl NSTextFieldCell {
extern_methods!(
#[unsafe(method(initTextCell:))]
#[unsafe(method_family = init)]
pub fn initTextCell(this: Allocated<Self>, string: &NSString) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Retained<Self>;
#[cfg(feature = "NSImage")]
#[unsafe(method(initImageCell:))]
#[unsafe(method_family = init)]
pub unsafe fn initImageCell(
this: Allocated<Self>,
image: Option<&NSImage>,
) -> Retained<Self>;
#[cfg(feature = "NSColor")]
#[unsafe(method(backgroundColor))]
#[unsafe(method_family = none)]
pub fn backgroundColor(&self) -> Option<Retained<NSColor>>;
#[cfg(feature = "NSColor")]
#[unsafe(method(setBackgroundColor:))]
#[unsafe(method_family = none)]
pub fn setBackgroundColor(&self, background_color: Option<&NSColor>);
#[unsafe(method(drawsBackground))]
#[unsafe(method_family = none)]
pub fn drawsBackground(&self) -> bool;
#[unsafe(method(setDrawsBackground:))]
#[unsafe(method_family = none)]
pub fn setDrawsBackground(&self, draws_background: bool);
#[cfg(feature = "NSColor")]
#[unsafe(method(textColor))]
#[unsafe(method_family = none)]
pub fn textColor(&self) -> Option<Retained<NSColor>>;
#[cfg(feature = "NSColor")]
#[unsafe(method(setTextColor:))]
#[unsafe(method_family = none)]
pub fn setTextColor(&self, text_color: Option<&NSColor>);
#[cfg(all(feature = "NSResponder", feature = "NSText", feature = "NSView"))]
#[unsafe(method(setUpFieldEditorAttributes:))]
#[unsafe(method_family = none)]
pub fn setUpFieldEditorAttributes(&self, text_obj: &NSText) -> Retained<NSText>;
#[unsafe(method(bezelStyle))]
#[unsafe(method_family = none)]
pub fn bezelStyle(&self) -> NSTextFieldBezelStyle;
#[unsafe(method(setBezelStyle:))]
#[unsafe(method_family = none)]
pub fn setBezelStyle(&self, bezel_style: NSTextFieldBezelStyle);
#[unsafe(method(placeholderString))]
#[unsafe(method_family = none)]
pub fn placeholderString(&self) -> Option<Retained<NSString>>;
#[unsafe(method(setPlaceholderString:))]
#[unsafe(method_family = none)]
pub fn setPlaceholderString(&self, placeholder_string: Option<&NSString>);
#[unsafe(method(placeholderAttributedString))]
#[unsafe(method_family = none)]
pub fn placeholderAttributedString(&self) -> Option<Retained<NSAttributedString>>;
#[unsafe(method(setPlaceholderAttributedString:))]
#[unsafe(method_family = none)]
pub fn setPlaceholderAttributedString(
&self,
placeholder_attributed_string: Option<&NSAttributedString>,
);
#[unsafe(method(setWantsNotificationForMarkedText:))]
#[unsafe(method_family = none)]
pub fn setWantsNotificationForMarkedText(&self, flag: bool);
#[unsafe(method(allowedInputSourceLocales))]
#[unsafe(method_family = none)]
pub fn allowedInputSourceLocales(&self) -> Option<Retained<NSArray<NSString>>>;
#[unsafe(method(setAllowedInputSourceLocales:))]
#[unsafe(method_family = none)]
pub fn setAllowedInputSourceLocales(
&self,
allowed_input_source_locales: Option<&NSArray<NSString>>,
);
);
}
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
impl NSTextFieldCell {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(feature = "NSActionCell", feature = "NSCell"))]
impl NSTextFieldCell {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}