diff options
author | Rodeo <[email protected]> | 2013-04-12 19:06:06 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-04-12 19:06:06 +0000 |
commit | a455dfec33439b42dfd89e8a7fe303abd9277393 (patch) | |
tree | 5e58aadbe18e6153081ad5b93d45c5c5741d141e /macosx/Controller.h | |
parent | 4d52079c19a262d5de3a0dbf0352ab5fc7ae056d (diff) |
MacGui: main and queue window improvements.
Merge fPictureSizeField and fPictureCroppingField into fPictureSettingsField (fits on a single line).
Rename fVideoFiltersField to fPictureFiltersField.
Move the two text fields closer to each other now that there is more room.
Also align their contents using tabs.
This should look better overall.
Add pictureSettingsSummary and pictureFiltersSummary to generate the text summaries used in the fields above.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5395 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index ad4ae349a..d69438d26 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -166,12 +166,9 @@ BOOL fIsDragging; IBOutlet NSButton * fVidTwoPassCheck; IBOutlet NSButton * fVidTurboPassCheck; - /* Status read out fileds for picture sizing */ - IBOutlet NSTextField * fPictureSizeField; - IBOutlet NSTextField * fPictureCroppingField; - - /* Status read out fileds for video filters */ - IBOutlet NSTextField * fVideoFiltersField; + /* Status read out fields for picture settings and video filters */ + IBOutlet NSTextField * fPictureSettingsField; + IBOutlet NSTextField * fPictureFiltersField; /* Picture variables */ int PicOrigOutputWidth; @@ -347,6 +344,10 @@ BOOL fIsDragging; - (IBAction) calculatePictureSizing: (id) sender; - (IBAction) openMainWindow: (id) sender; +/* Text summaries of various settings */ +- (NSString*) pictureSettingsSummary; +- (NSString*) pictureFiltersSummary; + /* Add All titles to the queue */ - (IBAction) addAllTitlesToQueue: (id) sender; - (void) addAllTitlesToQueueAlertDone: (NSWindow *) sheet |