use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-app-kit")]
#[cfg(target_os = "macos")]
use objc2_app_kit::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(PDFAnnotation, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "PDFAnnotation")]
#[deprecated]
pub struct PDFAnnotationCircle;
);
#[cfg(feature = "PDFAnnotation")]
extern_conformance!(
unsafe impl NSCoding for PDFAnnotationCircle {}
);
#[cfg(feature = "PDFAnnotation")]
extern_conformance!(
unsafe impl NSCopying for PDFAnnotationCircle {}
);
#[cfg(feature = "PDFAnnotation")]
unsafe impl CopyingHelper for PDFAnnotationCircle {
type Result = Self;
}
#[cfg(feature = "PDFAnnotation")]
extern_conformance!(
unsafe impl NSObjectProtocol for PDFAnnotationCircle {}
);
#[cfg(feature = "PDFAnnotation")]
impl PDFAnnotationCircle {
extern_methods!(
#[cfg(feature = "objc2-app-kit")]
#[cfg(target_os = "macos")]
#[deprecated]
#[unsafe(method(interiorColor))]
#[unsafe(method_family = none)]
pub unsafe fn interiorColor(&self) -> Option<Retained<NSColor>>;
#[cfg(feature = "objc2-app-kit")]
#[cfg(target_os = "macos")]
#[deprecated]
#[unsafe(method(setInteriorColor:))]
#[unsafe(method_family = none)]
pub unsafe fn setInteriorColor(&self, color: Option<&NSColor>);
);
}
#[cfg(feature = "PDFAnnotation")]
impl PDFAnnotationCircle {
extern_methods!(
#[unsafe(method(initWithBounds:forType:withProperties:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithBounds_forType_withProperties(
this: Allocated<Self>,
bounds: NSRect,
annotation_type: &PDFAnnotationSubtype,
properties: Option<&NSDictionary>,
) -> Retained<Self>;
);
}
#[cfg(feature = "PDFAnnotation")]
impl PDFAnnotationCircle {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}