use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;
ns_options!(
#[underlying(NSUInteger)]
pub enum NSMediaLibrary {
NSMediaLibraryAudio = 1 << 0,
NSMediaLibraryImage = 1 << 1,
NSMediaLibraryMovie = 1 << 2,
}
);
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "AppKit_NSMediaLibraryBrowserController")]
pub struct NSMediaLibraryBrowserController;
#[cfg(feature = "AppKit_NSMediaLibraryBrowserController")]
unsafe impl ClassType for NSMediaLibraryBrowserController {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "AppKit_NSMediaLibraryBrowserController")]
unsafe impl NSObjectProtocol for NSMediaLibraryBrowserController {}
extern_methods!(
#[cfg(feature = "AppKit_NSMediaLibraryBrowserController")]
unsafe impl NSMediaLibraryBrowserController {
#[method_id(@__retain_semantics Other sharedMediaLibraryBrowserController)]
pub unsafe fn sharedMediaLibraryBrowserController() -> Id<NSMediaLibraryBrowserController>;
#[method(isVisible)]
pub unsafe fn isVisible(&self) -> bool;
#[method(setVisible:)]
pub unsafe fn setVisible(&self, visible: bool);
#[method(frame)]
pub unsafe fn frame(&self) -> NSRect;
#[method(setFrame:)]
pub unsafe fn setFrame(&self, frame: NSRect);
#[method(mediaLibraries)]
pub unsafe fn mediaLibraries(&self) -> NSMediaLibrary;
#[method(setMediaLibraries:)]
pub unsafe fn setMediaLibraries(&self, media_libraries: NSMediaLibrary);
#[method(togglePanel:)]
pub unsafe fn togglePanel(&self, sender: Option<&AnyObject>);
}
);
extern_methods!(
#[cfg(feature = "AppKit_NSMediaLibraryBrowserController")]
unsafe impl NSMediaLibraryBrowserController {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);