use crate::common::*;
use crate::AppKit::*;
use crate::Foundation::*;
use crate::LinkPresentation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "LinkPresentation_LPLinkView")]
pub struct LPLinkView;
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl ClassType for LPLinkView {
#[inherits(NSResponder, NSObject)]
type Super = NSView;
type Mutability = MainThreadOnly;
}
);
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSAccessibility for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSAccessibilityElementProtocol for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSAnimatablePropertyContainer for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSAppearanceCustomization for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSCoding for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSDraggingDestination for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSObjectProtocol for LPLinkView {}
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl NSUserInterfaceItemIdentification for LPLinkView {}
extern_methods!(
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl LPLinkView {
#[cfg(feature = "Foundation_NSCoder")]
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Id<Self>;
#[cfg(feature = "Foundation_NSCoder")]
#[method(encodeWithCoder:)]
pub unsafe fn encodeWithCoder(&self, coder: &NSCoder);
#[cfg(feature = "Foundation_NSURL")]
#[method_id(@__retain_semantics Init initWithURL:)]
pub unsafe fn initWithURL(this: Allocated<Self>, url: &NSURL) -> Id<Self>;
#[cfg(feature = "LinkPresentation_LPLinkMetadata")]
#[method_id(@__retain_semantics Init initWithMetadata:)]
pub unsafe fn initWithMetadata(
this: Allocated<Self>,
metadata: &LPLinkMetadata,
) -> Id<Self>;
#[cfg(feature = "LinkPresentation_LPLinkMetadata")]
#[method_id(@__retain_semantics Other metadata)]
pub unsafe fn metadata(&self) -> Id<LPLinkMetadata>;
#[cfg(feature = "LinkPresentation_LPLinkMetadata")]
#[method(setMetadata:)]
pub unsafe fn setMetadata(&self, metadata: &LPLinkMetadata);
}
);
extern_methods!(
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl LPLinkView {
#[method_id(@__retain_semantics Init initWithFrame:)]
pub unsafe fn initWithFrame(this: Allocated<Self>, frame_rect: NSRect) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl LPLinkView {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "LinkPresentation_LPLinkView")]
unsafe impl LPLinkView {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Id<Self>;
}
);