blob: fc99914f02292dd09038c4dc63f54bbc9b7d5fb8 (
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
|
/* HBQueueController.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 <Cocoa/Cocoa.h>
#import <Growl/Growl.h>
NS_ASSUME_NONNULL_BEGIN
@class HBAppDelegate;
@class HBController;
@class HBOutputPanelController;
@class HBCore;
@class HBJob;
@interface HBQueueController : NSWindowController <NSToolbarDelegate, NSWindowDelegate, GrowlApplicationBridgeDelegate>
/// The HBCore used for encoding.
@property (nonatomic, readonly) HBCore *core;
@property (nonatomic, weak, nullable) HBController *controller;
@property (nonatomic, weak, nullable) HBAppDelegate *delegate;
@property (nonatomic, readonly) NSUInteger count;
@property (nonatomic, readonly) NSUInteger pendingItemsCount;
- (void)addJob:(HBJob *)item;
- (void)addJobsFromArray:(NSArray *)items;
- (BOOL)jobExistAtURL:(NSURL *)url;
- (void)removeAllJobs;
- (void)removeCompletedJobs;
- (void)setEncodingJobsAsPending;
- (IBAction)rip:(id)sender;
- (IBAction)cancelRip:(id)sender;
- (IBAction)togglePauseResume:(id)sender;
@end
NS_ASSUME_NONNULL_END
|