diff options
author | dynaflash <[email protected]> | 2007-04-25 18:28:41 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-04-25 18:28:41 +0000 |
commit | 2aa8401380b0efd6b5fe488059d31ca822a483b7 (patch) | |
tree | efcd00df36d773b70ba4a3d24d09108df99f6274 /macosx/Controller.h | |
parent | ea0847e6cfa041c9a5553bd266b9101cb615844a (diff) |
MacGui: Queue modifications
- Queue is now integral to encoding
- removed "Enable Queue" Checkbox
- made "Add to Queue" and "Show queue" always usable
- Rip method in controller.mm always calls addToQueue even for one rip, but then automatically rips it.
- Added queue status field.
- fixes bug in 0.8.5 where having queue enabled and clicking rip with nothing in the queue causes HB to do nothing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@550 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index ce9750947..7ae2c8d5b 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -29,7 +29,7 @@ /* Queue panel */ IBOutlet QueueController * fQueueController; IBOutlet NSPanel * fQueuePanel; - IBOutlet NSButton * fQueueCheck; + IBOutlet NSTextField * fQueueStatus; IBOutlet NSButton * fQueueAddButton; IBOutlet NSButton * fQueueShowButton; @@ -191,7 +191,7 @@ - (IBAction) ShowPicturePanel: (id) sender; - (IBAction) CalculatePictureSizing: (id) sender; -- (IBAction) EnableQueue: (id) sender; + - (IBAction) AddToQueue: (id) sender; - (IBAction) ShowQueuePanel: (id) sender; |