use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSBrowserCell;
unsafe impl ClassType for NSBrowserCell {
#[inherits(NSObject)]
type Super = NSCell;
}
);
extern_methods!(
unsafe impl NSBrowserCell {
#[method_id(@__retain_semantics Init initTextCell:)]
pub unsafe fn initTextCell(
this: Option<Allocated<Self>>,
string: &NSString,
) -> Id<Self, Shared>;
#[method_id(@__retain_semantics Init initImageCell:)]
pub unsafe fn initImageCell(
this: Option<Allocated<Self>>,
image: Option<&NSImage>,
) -> Id<Self, Shared>;
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(
this: Option<Allocated<Self>>,
coder: &NSCoder,
) -> Id<Self, Shared>;
#[method_id(@__retain_semantics Other branchImage)]
pub unsafe fn branchImage() -> Option<Id<NSImage, Shared>>;
#[method_id(@__retain_semantics Other highlightedBranchImage)]
pub unsafe fn highlightedBranchImage() -> Option<Id<NSImage, Shared>>;
#[method_id(@__retain_semantics Other highlightColorInView:)]
pub unsafe fn highlightColorInView(
&self,
controlView: &NSView,
) -> Option<Id<NSColor, Shared>>;
#[method(isLeaf)]
pub unsafe fn isLeaf(&self) -> bool;
#[method(setLeaf:)]
pub unsafe fn setLeaf(&self, leaf: bool);
#[method(isLoaded)]
pub unsafe fn isLoaded(&self) -> bool;
#[method(setLoaded:)]
pub unsafe fn setLoaded(&self, loaded: bool);
#[method(reset)]
pub unsafe fn reset(&self);
#[method(set)]
pub unsafe fn set(&self);
#[method_id(@__retain_semantics Other image)]
pub unsafe fn image(&self) -> Option<Id<NSImage, Shared>>;
#[method(setImage:)]
pub unsafe fn setImage(&self, image: Option<&NSImage>);
#[method_id(@__retain_semantics Other alternateImage)]
pub unsafe fn alternateImage(&self) -> Option<Id<NSImage, Shared>>;
#[method(setAlternateImage:)]
pub unsafe fn setAlternateImage(&self, alternateImage: Option<&NSImage>);
}
);