diff options
author | dynaflash <[email protected]> | 2007-07-09 19:07:38 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-07-09 19:07:38 +0000 |
commit | 3b90b5faffb445e9a541067807122cb51a23cd3e (patch) | |
tree | 1ff44f0fce936c07b641d2c9f6f30c1eb903f35d /macosx/QueueController.h | |
parent | 2ff94913d1b3ef876bdb17611e35babea46fea71 (diff) |
MacGui: Enhanced Queue initial implementation
- Enhanced queue readout shows alot more detail about each job.
- Prepares MacGui for "Live Queue" where jobs can be added during an encode.
- Currently, you can add jobs during encoding but cannot access source currently being encoded.
- Dev note: some of this is kludgy, but can streamline once functionality is tested.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@664 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/QueueController.h')
-rw-r--r-- | macosx/QueueController.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/macosx/QueueController.h b/macosx/QueueController.h index 635adc7b8..c86ffd4ec 100644 --- a/macosx/QueueController.h +++ b/macosx/QueueController.h @@ -9,6 +9,16 @@ hb_handle_t * fHandle; IBOutlet NSScrollView * fScrollView; IBOutlet NSView * fTaskView; + + /*Display variables for each job in view*/ + NSString * jobFormat; + NSString * jobPictureDetail; + NSString * jobVideoDetail; + NSString * jobVideoCodec; + NSString * jobVideoQuality; + + NSString * jobAudioDetail; + NSString * jobAudioCodec; } - (void) SetHandle: (hb_handle_t *) handle; |