summaryrefslogtreecommitdiffstats
path: root/macosx/HBQueueController.h
blob: 3584f7737a466f9826db51d9cca6f95eaebbbb76 (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
/* 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>

- (instancetype)initWithURL:(NSURL *)queueURL;

/// The HBCore used for encoding.
@property (nonatomic, readonly) HBCore *core;

@property (nonatomic, assign, 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<HBJob *> *)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