diff options
author | ritsuka <[email protected]> | 2015-01-22 10:30:26 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-22 10:30:26 +0000 |
commit | dfa1f8dd4bbaed3fba144a5afead99a1ea102c44 (patch) | |
tree | 9a487f570a21d91cd6d8beeb7ada67e5b99002e8 /macosx/HBQueueController.h | |
parent | 1784a808ebe642b54bff0d06abc147226d0287fe (diff) |
MacGui: move the application delegate to its own class. Removed the "Open Source (Title Specific)" menu item, now integrated in the standard open panel.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6784 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.h')
-rw-r--r-- | macosx/HBQueueController.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h index 73cdc2a21..0a48dff66 100644 --- a/macosx/HBQueueController.h +++ b/macosx/HBQueueController.h @@ -7,6 +7,7 @@ #import <Cocoa/Cocoa.h> #import <Growl/Growl.h> +@class HBAppDelegate; @class HBController; @class HBOutputPanelController; @class HBCore; @@ -18,6 +19,7 @@ @property (nonatomic, readonly) HBCore *core; @property (nonatomic, assign) HBController *controller; +@property (nonatomic, assign) HBAppDelegate *delegate; @property (nonatomic, assign) HBOutputPanelController *outputPanel; @property (nonatomic, readonly) NSUInteger count; @@ -35,4 +37,6 @@ - (IBAction)rip:(id)sender; - (IBAction)cancelRip:(id)sender; +- (IBAction)togglePauseResume:(id)sender; + @end |