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
|
/* HBQueueJobItem.m $
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 <Cocoa/Cocoa.h>
#import "HBQueueItem.h"
@import HandBrakeKit;
NS_ASSUME_NONNULL_BEGIN
@interface HBQueueJobItem : NSObject<HBQueueItem>
- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithJob:(HBJob *)job;
@property (nonatomic, readonly) HBJob *job;
/// Current state of the job.
@property (nonatomic) HBQueueItemState state;
/// The file URL of the source.
@property (nonatomic, readonly) NSURL *fileURL;
/// The directory URL at which the new file will be created.
@property (nonatomic, readonly, copy) NSURL *outputURL;
/// The name of the new file that will be created.
@property (nonatomic, readonly, copy) NSString *outputFileName;
/// The file URL at which the new file will be created.
@property (nonatomic, readonly, copy) NSURL *completeOutputURL;
/// The file URL at which the new file will be created.
@property (nonatomic, copy, nullable) NSURL *activityLogURL;
@property (nonatomic) NSTimeInterval encodeDuration;
@property (nonatomic) NSTimeInterval pauseDuration;
@property (nonatomic, nullable) NSDate *startedDate;
@property (nonatomic, nullable) NSDate *endedDate;
- (void)pausedAtDate:(NSDate *)date;
- (void)resumedAtDate:(NSDate *)date;
@property (nonatomic, readonly) NSUInteger fileSize;
@property (nonatomic, readonly) NSAttributedString *attributedDescription;
@property (nonatomic, readonly, nullable) NSAttributedString *attributedStatistics;
@end
NS_ASSUME_NONNULL_END
|