diff options
author | dynaflash <dynaflashtech@gmail.com> | 2007-07-16 16:47:45 +0000 |
---|---|---|
committer | dynaflash <dynaflashtech@gmail.com> | 2007-07-16 16:47:45 +0000 |
commit | 5e8776b2f2e87120efaae2ed509bce845c5de94c (patch) | |
tree | 4195bc8359ea8737f13201d7be1982dabb4261e4 /macosx/Controller.h | |
parent | ec47c624557962fe6cb38499644b40b681f324fb (diff) |
MacGui: Active Queue Initial Implementation
- Warning: currently, when adding jobs during encoding, the main window progress bar and task info gets hosed, if a workaround via libhb cannot be easily obtained, a cocoa workaround is available for checkin.
- Can now add jobs during encoding
- Scan progress bar is a barber pole until scanning progress during encoding is fine tuned.
- Needs further testing if DVD Auto Detect is turned on. If conflicts with drive arise, automatically turning off dvd auto detect when adding jobs during encoding is ready for checkin.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@695 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index da1399672..f7e1d5068 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -204,7 +204,8 @@ /* integer to set to determine the previous state of encode 0==idle, 1==encoding, 2==cancelled*/ int fEncodeState; - + int currentScanCount; + NSString * currentSource; HBOutputPanelController *outputPanel; } @@ -212,7 +213,7 @@ - (void) UpdateUI: (NSTimer *) timer; - (void) EnableUI: (bool) enable; - +- (IBAction) ShowNewScan: (id) sender; - (IBAction) ShowScanPanel: (id) sender; - (IBAction) TitlePopUpChanged: (id) sender; |