icrate 0.1.2

Bindings to Apple's frameworks
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(feature = "AppKit_NSCustomImageRep")]
    pub struct NSCustomImageRep;

    #[cfg(feature = "AppKit_NSCustomImageRep")]
    unsafe impl ClassType for NSCustomImageRep {
        #[inherits(NSObject)]
        type Super = NSImageRep;
        type Mutability = InteriorMutable;
    }
);

#[cfg(feature = "AppKit_NSCustomImageRep")]
unsafe impl NSCoding for NSCustomImageRep {}

#[cfg(feature = "AppKit_NSCustomImageRep")]
unsafe impl NSCopying for NSCustomImageRep {}

#[cfg(feature = "AppKit_NSCustomImageRep")]
unsafe impl NSObjectProtocol for NSCustomImageRep {}

extern_methods!(
    #[cfg(feature = "AppKit_NSCustomImageRep")]
    unsafe impl NSCustomImageRep {
        #[method_id(@__retain_semantics Init initWithSize:flipped:drawingHandler:)]
        pub unsafe fn initWithSize_flipped_drawingHandler(
            this: Allocated<Self>,
            size: NSSize,
            drawing_handler_should_be_called_with_flipped_context: bool,
            drawing_handler: &Block<(NSRect,), Bool>,
        ) -> Id<Self>;

        #[method(drawingHandler)]
        pub unsafe fn drawingHandler(&self) -> *mut Block<(NSRect,), Bool>;

        #[method_id(@__retain_semantics Init initWithDrawSelector:delegate:)]
        pub unsafe fn initWithDrawSelector_delegate(
            this: Allocated<Self>,
            selector: Sel,
            delegate: &AnyObject,
        ) -> Id<Self>;

        #[method(drawSelector)]
        pub unsafe fn drawSelector(&self) -> Option<Sel>;

        #[method_id(@__retain_semantics Other delegate)]
        pub unsafe fn delegate(&self) -> Option<Id<AnyObject>>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSImageRep`
    #[cfg(feature = "AppKit_NSCustomImageRep")]
    unsafe impl NSCustomImageRep {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;

        #[cfg(feature = "Foundation_NSCoder")]
        #[method_id(@__retain_semantics Init initWithCoder:)]
        pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Option<Id<Self>>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(feature = "AppKit_NSCustomImageRep")]
    unsafe impl NSCustomImageRep {
        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Id<Self>;
    }
);