diff options
author | dynaflash <[email protected]> | 2011-09-02 22:35:04 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2011-09-02 22:35:04 +0000 |
commit | bda88d1a98a98a5ddac7087ea8b37889dd14bc7b (patch) | |
tree | 54eadd163ceb26f831cae0e8da6718a1ea299fbb /macosx/Controller.h | |
parent | 1423d3020bc950b81c2993387958e78103bdaaad (diff) |
MacGui: Behold that which is hidden ... Batch Queueing Support.
- Add batch queueing support to the macgui.
- Currently accessed under File > Add All Titles To Queue
- No toolbar button yet since it needs to soak for a while and needs refinement.
- Applies all current settings to all titles.
- Best used with batch scanning flat files.
- Works with a dvd scan where the dvd titles are in the title structure ... but not recommended.
- Use at your own peril!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4201 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index 9f411a5a3..58a8e2e00 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -266,6 +266,8 @@ BOOL fIsDragging; - (void) updateUI: (NSTimer *) timer; - (void) enableUI: (bool) enable; - (IBAction) encodeStartStopPopUpChanged: (id) sender; + + - (IBAction) titlePopUpChanged: (id) sender; - (IBAction) chapterPopUpChanged: (id) sender; - (IBAction) startEndSecValueChanged: (id) sender; @@ -298,6 +300,12 @@ BOOL fIsDragging; - (IBAction) calculatePictureSizing: (id) sender; - (IBAction) openMainWindow: (id) sender; +/* Add All titles to the queue */ +- (IBAction) addAllTitlesToQueue: (id) sender; +- (void) addAllTitlesToQueueAlertDone: (NSWindow *) sheet + returnCode: (int) returnCode contextInfo: (void *) contextInfo; +- (void) doAddAllTitlesToQueue; + /* Queue File Stuff */ - (void) loadQueueFile; - (NSDictionary *)createQueueFileItem; |