use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;
ns_options!(
#[underlying(NSUInteger)]
pub enum NSFontAssetRequestOptions {
NSFontAssetRequestOptionUsesStandardUI = 1 << 0,
}
);
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSFontAssetRequest;
unsafe impl ClassType for NSFontAssetRequest {
type Super = NSObject;
}
);
extern_methods!(
unsafe impl NSFontAssetRequest {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Option<Allocated<Self>>) -> Id<Self, Shared>;
#[method_id(@__retain_semantics Init initWithFontDescriptors:options:)]
pub unsafe fn initWithFontDescriptors_options(
this: Option<Allocated<Self>>,
fontDescriptors: &NSArray<NSFontDescriptor>,
options: NSFontAssetRequestOptions,
) -> Id<Self, Shared>;
#[method_id(@__retain_semantics Other downloadedFontDescriptors)]
pub unsafe fn downloadedFontDescriptors(&self) -> Id<NSArray<NSFontDescriptor>, Shared>;
#[method_id(@__retain_semantics Other progress)]
pub unsafe fn progress(&self) -> Id<NSProgress, Shared>;
#[method(downloadFontAssetsWithCompletionHandler:)]
pub unsafe fn downloadFontAssetsWithCompletionHandler(
&self,
completionHandler: &Block<(*mut NSError,), Bool>,
);
}
);