diff options
author | ritsuka <[email protected]> | 2014-12-27 10:46:04 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-27 10:46:04 +0000 |
commit | df8b2ff3e109699e3dadd88404911f8dfc7b210a (patch) | |
tree | 8489fee4edaf57adf55f69d0c0d28f61a5757057 /macosx/HBQueueController.h | |
parent | 8df584534c0c39f5c2f298d8ba480cc906743bbf (diff) |
MacGui: change the queue to work with serialized HBJob objects, remove the NSDictionary job representation and the duplicate prepareJob method. Implement NSCopying protocol in HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6655 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.h')
-rw-r--r-- | macosx/HBQueueController.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h index 4a366224f..41f76698b 100644 --- a/macosx/HBQueueController.h +++ b/macosx/HBQueueController.h @@ -1,27 +1,21 @@ -/* HBQueueController +/* 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> -#include "hb.h" @class HBController; +@class HBCore; @interface HBQueueController : NSWindowController <NSToolbarDelegate, NSWindowDelegate> - (void)setPidNum: (int)myPidnum; -- (void)setHandle: (hb_handle_t *)handle; +- (void)setCore: (HBCore *)core; - (void)setHBController: (HBController *)controller; - (void)setQueueArray: (NSMutableArray *)QueueFileArray; - -/* Animate the icon for the current encode */ -- (void) animateWorkingEncodeIconInQueue; -- (void) startAnimatingCurrentWorkingEncodeInQueue; -- (void) stopAnimatingCurrentJobGroupInQueue; - (void)setQueueStatusString: (NSString *)statusString; - (IBAction)showQueueWindow: (id)sender; |