/* HBQueueController.h This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ #import NS_ASSUME_NONNULL_BEGIN @class HBAppDelegate; @class HBController; @class HBQueue; @interface HBQueueController : NSWindowController - (instancetype)initWithQueue:(HBQueue *)queue; @property (nonatomic, weak, readonly) HBQueue *queue; @property (nonatomic, weak, nullable) HBAppDelegate *delegate; - (IBAction)toggleStartCancel:(id)sender; - (IBAction)togglePauseResume:(id)sender; @end NS_ASSUME_NONNULL_END