diff options
author | dynaflash <[email protected]> | 2007-05-09 17:31:31 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-05-09 17:31:31 +0000 |
commit | 9baf8640e76f8561f8b19f9da392f6835d109266 (patch) | |
tree | 4c8e91b1822b3f759c00becc497f680f2ba4d089 /macosx/Controller.h | |
parent | cd624e35f220e6bdbb6877850ad000e59379ef36 (diff) |
MacGui: Advanced Tab only shows x264 opt widgets when x264 is selected as the codec. Otherwise, displays a message to that effect.
- Put the x264 options in a custom NSView which hides it and its contents unless x264 is selected
- add field at the top to show the status of the Advanced Tabs contents which is triggered in the - CodecsPopUpChanged method.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@576 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index 1ed6f1697..d8f208abe 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -135,12 +135,22 @@ IBOutlet NSButton * fPauseButton; IBOutlet NSButton * fRipButton; - /* Advanced Tab for opts */ + /* Advanced Tab for opts fX264optView*/ + IBOutlet NSView * fX264optView; + IBOutlet NSTextField * fX264optViewTitleLabel; + IBOutlet NSTextField * fDisplayX264OptionsLabel; + IBOutlet NSTextField * fDisplayX264Options; + IBOutlet NSTextField * fX264optBframesLabel; IBOutlet NSPopUpButton * fX264optBframesPopUp; + IBOutlet NSTextField * fX264optRefLabel; IBOutlet NSPopUpButton * fX264optRefPopUp; + IBOutlet NSTextField * fX264optNfpskipLabel; IBOutlet NSPopUpButton * fX264optNfpskipPopUp; + IBOutlet NSTextField * fX264optNodctdcmtLabel; IBOutlet NSPopUpButton * fX264optNodctdcmtPopUp; + IBOutlet NSTextField * fX264optSubmeLabel; IBOutlet NSPopUpButton * fX264optSubmePopUp; + IBOutlet NSTextField * fX264optTrellisLabel; IBOutlet NSPopUpButton * fX264optTrellisPopUp; /* User Preset variables here fPresetNewPicSettingsApply*/ @@ -149,8 +159,6 @@ IBOutlet NSTextField * fPresetNewName; IBOutlet NSPopUpButton * fPresetNewPicSettingsPopUp; IBOutlet NSTextField * fPresetSelectedDisplay; - IBOutlet NSTextField * fDisplayX264OptionsLabel; - IBOutlet NSTextField * fDisplayX264Options; NSString * AppSupportDirectory; NSString * UserPresetsFile; |