use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(NSImageRep, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "NSImageRep")]
pub struct NSCustomImageRep;
);
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSCoding for NSCustomImageRep {}
);
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSCopying for NSCustomImageRep {}
);
#[cfg(feature = "NSImageRep")]
unsafe impl CopyingHelper for NSCustomImageRep {
type Result = Self;
}
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSObjectProtocol for NSCustomImageRep {}
);
#[cfg(feature = "NSImageRep")]
impl NSCustomImageRep {
extern_methods!(
#[cfg(feature = "block2")]
#[unsafe(method(initWithSize:flipped:drawingHandler:))]
#[unsafe(method_family = init)]
pub fn initWithSize_flipped_drawingHandler(
this: Allocated<Self>,
size: NSSize,
drawing_handler_should_be_called_with_flipped_context: bool,
drawing_handler: &block2::DynBlock<dyn Fn(NSRect) -> Bool>,
) -> Retained<Self>;
#[cfg(feature = "block2")]
#[unsafe(method(drawingHandler))]
#[unsafe(method_family = none)]
pub fn drawingHandler(&self) -> *mut block2::DynBlock<dyn Fn(NSRect) -> Bool>;
#[unsafe(method(initWithDrawSelector:delegate:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithDrawSelector_delegate(
this: Allocated<Self>,
selector: Sel,
delegate: &AnyObject,
) -> Retained<Self>;
#[unsafe(method(drawSelector))]
#[unsafe(method_family = none)]
pub fn drawSelector(&self) -> Option<Sel>;
#[unsafe(method(delegate))]
#[unsafe(method_family = none)]
pub fn delegate(&self) -> Option<Retained<AnyObject>>;
);
}
#[cfg(feature = "NSImageRep")]
impl NSCustomImageRep {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>;
);
}
#[cfg(feature = "NSImageRep")]
impl NSCustomImageRep {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new() -> Retained<Self>;
);
}
#[cfg(feature = "NSImageRep")]
impl DefaultRetained for NSCustomImageRep {
#[inline]
fn default_retained() -> Retained<Self> {
Self::new()
}
}