blob: 10cf192d58d79e1b98d74b32a19f9d616c8bafd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* HBPreset.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Foundation/Foundation.h>
#import "HBTreeNode.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSUInteger, HBPresetFormat) {
HBPresetFormatPlist,
HBPresetFormatJson,
};
/**
* HBPreset
* Stores a preset dictionary.
*
* An instance of HBPreset can be an actual preset or a folder.
*/
@interface HBPreset : HBTreeNode <NSCopying>
- (instancetype)initWithFolderName:(NSString *)title builtIn:(BOOL)builtIn;
- (instancetype)initWithName:(NSString *)title content:(NSDictionary *)content builtIn:(BOOL)builtIn;
- (instancetype)initWithDictionary:(NSDictionary *)dict;
/**
* Initializes a newly allocated preset object initialized with the data found at a given URL.
*
* @param url An URL that identifies a resource containing a string representation of a property list or json in the HandBrake preset format.
*
* @return An initialized preset—which might be different than the original receiver—that contains the preset at URL,
* or nil if there is an error or if the contents of the resource are not and HandBrake preset.
*/
- (instancetype)initWithContentsOfURL:(NSURL *)url;
/**
* Writes a property list or json representation of the contents of the preset to a given URL.
*
* @param url The URL to which to write the preset.
* @param atomically A flag that specifies whether the output should be written atomically.
* @param format the format of the file to write.
* @param removeRoot whether the root preset should be written or not.
*
* @return YES if the location is written successfully, otherwise NO.
*/
- (BOOL)writeToURL:(NSURL *)url atomically:(BOOL)atomically format:(HBPresetFormat)format removeRoot:(BOOL)removeRoot;
/**
* Removes unknown keys and normalizes values.
*/
- (void)cleanUp;
/**
* The name of the preset.
*/
@property (nonatomic, copy) NSString *name;
/**
* A long textual description of the preset.
*/
@property (nonatomic, copy, nullable) NSString *presetDescription;
/**
* Whether the preset is one of the HandBrake built-in ones or not.
*/
@property (nonatomic, readonly) BOOL isBuiltIn;
/**
* Whether the preset is the default one or not. Only one preset can be the default.
*/
@property (nonatomic) BOOL isDefault;
/**
* The actual content of the preset.
*/
@property (nonatomic, strong, nullable) NSDictionary *content;
/**
* A dictionary representation of the preset.
*/
@property (readonly, copy) NSDictionary *dictionary;
@end
NS_ASSUME_NONNULL_END
|