mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 10:50:47 +00:00
Add methods for NSFontAssetRequest.
This commit is contained in:
parent
a761a01eb5
commit
8bdb4ffe16
2 changed files with 41 additions and 1 deletions
|
@ -26,5 +26,27 @@
|
|||
|
||||
@implementation NSFontAssetRequest
|
||||
|
||||
- (instancetype) initWithFontDescriptors: (NSArray *)fontDescriptors
|
||||
options: (NSFontAssetRequestOptions)options
|
||||
{
|
||||
return [super init];
|
||||
}
|
||||
|
||||
- (NSArray *) downloadedFontDescriptors
|
||||
{
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSProgress *) progress
|
||||
{
|
||||
return [NSProgress progressWithTotalUnitCount: 0.0];
|
||||
}
|
||||
|
||||
- (void)downloadFontAssetsWithCompletionHandler: (GSFontAssetCompletionHandler)completionHandler
|
||||
{
|
||||
NSError *error = nil;
|
||||
CALL_BLOCK(completionHandler, error);
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue