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 NSPICTImageRep;
);
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSCoding for NSPICTImageRep {}
);
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSCopying for NSPICTImageRep {}
);
#[cfg(feature = "NSImageRep")]
unsafe impl CopyingHelper for NSPICTImageRep {
type Result = Self;
}
#[cfg(feature = "NSImageRep")]
extern_conformance!(
unsafe impl NSObjectProtocol for NSPICTImageRep {}
);
#[cfg(feature = "NSImageRep")]
impl NSPICTImageRep {
extern_methods!(
#[unsafe(method(imageRepWithData:))]
#[unsafe(method_family = none)]
pub fn imageRepWithData(pict_data: &NSData) -> Option<Retained<Self>>;
#[unsafe(method(initWithData:))]
#[unsafe(method_family = init)]
pub fn initWithData(this: Allocated<Self>, pict_data: &NSData) -> Option<Retained<Self>>;
#[unsafe(method(PICTRepresentation))]
#[unsafe(method_family = none)]
pub fn PICTRepresentation(&self) -> Retained<NSData>;
#[unsafe(method(boundingBox))]
#[unsafe(method_family = none)]
pub fn boundingBox(&self) -> NSRect;
);
}
#[cfg(feature = "NSImageRep")]
impl NSPICTImageRep {
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 NSPICTImageRep {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new() -> Retained<Self>;
);
}
#[cfg(feature = "NSImageRep")]
impl DefaultRetained for NSPICTImageRep {
#[inline]
fn default_retained() -> Retained<Self> {
Self::new()
}
}