diff options
author | dynaflash <[email protected]> | 2007-09-07 13:40:40 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-09-07 13:40:40 +0000 |
commit | ccf90bfd9146a00783cb5322c63257335192c74d (patch) | |
tree | 65a67e6fbf053fc235e7238a0b60955c81a6d70e /macosx/English.lproj/Queue.nib/classes.nib | |
parent | f4b5569ecc77150c7bde00b9368aa81fe33b7cfd (diff) |
MacGui: Queue Improvements from travistex
- Add view selection widget to choose "encode by encode" or "pass by pass" view
- Add "Show Detail" button to toggle detailed view on/off
- Removed #define JOB_GROUPS. You can now control this in the UI and show either "encodes" or "passes".
- Revamped the progress strings to give you exact progress.
- New terminology (encodes and passes)
- New toolbar in queue window (not complete, icons need work)
- New files, added to project:
Encodes.png
EncodesPressed.png
Info.png
JobPassLarge.png
JobPassSmall.png
Passes.png
PassesPressed.png
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@931 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/English.lproj/Queue.nib/classes.nib')
-rw-r--r-- | macosx/English.lproj/Queue.nib/classes.nib | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/macosx/English.lproj/Queue.nib/classes.nib b/macosx/English.lproj/Queue.nib/classes.nib index 420f84df2..4e9bbaa78 100644 --- a/macosx/English.lproj/Queue.nib/classes.nib +++ b/macosx/English.lproj/Queue.nib/classes.nib @@ -217,8 +217,11 @@ ACTIONS = { cancelCurrentJob = id; detailChanged = id; + jobGroupsChanged = id; removeSelectedJob = id; showQueueWindow = id; + toggleShowsDetail = id; + toggleShowsJobsAsGroups = id; toggleStartPause = id; }; CLASS = HBQueueController; @@ -227,9 +230,10 @@ fCurrentJobPane = NSView; fDetailCheckbox = NSButton; fJobDescTextField = NSTextField; + fJobGroupsCheckbox = NSButton; + fJobIconView = NSImageView; fProgressBar = NSProgressIndicator; - fProgressStatus = NSTextField; - fProgressTimeRemaining = NSTextField; + fProgressTextField = NSTextField; fQueueCountField = NSTextField; fQueuePane = NSView; fQueueWindow = NSWindow; @@ -250,6 +254,7 @@ SUPERCLASS = NSTextField; }, {CLASS = MVMenuButton; LANGUAGE = ObjC; SUPERCLASS = NSButton; }, + {CLASS = NSSegmentedControl; LANGUAGE = ObjC; SUPERCLASS = NSControl; }, { ACTIONS = { ClosePanel = id; |