From: dynaflash Date: Mon, 28 Jun 2010 20:11:34 +0000 (+0000) Subject: MacGui: Presets - Add abliity to modify width and height on a preset independent... X-Git-Url: http://git.osdn.jp/view?a=commitdiff_plain;h=2e3418b30b99e4b290c26d37f406d56385ffba0b;p=handbrake-jp%2Fhandbrake-jp-git.git MacGui: Presets - Add abliity to modify width and height on a preset independent of the currently loaded settings via repurposing the old "Current" picture size setting in the add new preset dialogue. - Changes "Current" to "Custom". - When Custom is selected two text fields for width and height appear, initially populated with the current picture settings which means that if not changed will behave as old "Current" settings used to. - Editable fields means the preset can be save to pic dimensions other than what is setup for the current encode setup. - For example you can have a dvd loaded up and then save a preset using say 1280 x 720 as max dims, even though the currently loaded source would not have allowed that before. git-svn-id: svn://localhost/HandBrake/trunk@3419 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/Controller.h b/macosx/Controller.h index b4a94f29..742aa3a5 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -233,6 +233,10 @@ BOOL fIsDragging; IBOutlet NSTextField * fPresetNewName; IBOutlet NSTextField * fPresetNewDesc; IBOutlet NSPopUpButton * fPresetNewPicSettingsPopUp; + IBOutlet NSTextField * fPresetNewPicWidth; + IBOutlet NSTextField * fPresetNewPicHeight; + IBOutlet NSBox * fPresetNewPicWidthHeightBox; + IBOutlet NSButton * fPresetNewPicFiltersCheck; IBOutlet NSButton * fPresetNewFolderCheck; IBOutlet NSTextField * fPresetSelectedDisplay; @@ -423,6 +427,7 @@ BOOL fIsDragging; - (void) loadPresets; - (IBAction) customSettingUsed: (id) sender; - (IBAction) showAddPresetPanel: (id) sender; +- (IBAction) addPresetPicDropdownChanged: (id) sender; - (IBAction) closeAddPresetPanel: (id) sender; - (NSDictionary *)createPreset; diff --git a/macosx/Controller.m b/macosx/Controller.m index 9f2f4e8b..60e16940 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -7190,6 +7190,18 @@ return YES; } +- (IBAction) addPresetPicDropdownChanged: (id) sender +{ + if ([fPresetNewPicSettingsPopUp indexOfSelectedItem] == 1) + { + [fPresetNewPicWidthHeightBox setHidden:NO]; + } + else + { + [fPresetNewPicWidthHeightBox setHidden:YES]; + } +} + - (IBAction) showAddPresetPanel: (id) sender { /* Deselect the currently selected Preset if there is one*/ @@ -7198,7 +7210,7 @@ return YES; /* Populate the preset picture settings popup here */ [fPresetNewPicSettingsPopUp removeAllItems]; [fPresetNewPicSettingsPopUp addItemWithTitle:@"None"]; - [fPresetNewPicSettingsPopUp addItemWithTitle:@"Current"]; + [fPresetNewPicSettingsPopUp addItemWithTitle:@"Custom"]; [fPresetNewPicSettingsPopUp addItemWithTitle:@"Source Maximum (post source scan)"]; [fPresetNewPicSettingsPopUp selectItemAtIndex: 0]; /* Uncheck the preset use filters checkbox */ @@ -7208,6 +7220,12 @@ return YES; /* Erase info from the input fields*/ [fPresetNewName setStringValue: @""]; [fPresetNewDesc setStringValue: @""]; + + /* Initialize custom height and width settings to current values */ + + [fPresetNewPicWidth setStringValue: [NSString stringWithFormat:@"%d",fTitle->job->width]]; + [fPresetNewPicHeight setStringValue: [NSString stringWithFormat:@"%d",fTitle->job->height]]; + [self addPresetPicDropdownChanged:nil]; /* Show the panel */ [NSApp beginSheet:fAddPresetPanel modalForWindow:fWindow modalDelegate:nil didEndSelector:NULL contextInfo:NULL]; } @@ -7340,11 +7358,11 @@ return YES; [preset setObject:[NSNumber numberWithInt:[fVidTurboPassCheck state]] forKey:@"VideoTurboTwoPass"]; /*Picture Settings*/ hb_job_t * job = fTitle->job; + /* Picture Sizing */ - /* Use Max Picture settings for whatever the dvd is.*/ [preset setObject:[NSNumber numberWithInt:0] forKey:@"UsesMaxPictureSettings"]; - [preset setObject:[NSNumber numberWithInt:fTitle->job->width] forKey:@"PictureWidth"]; - [preset setObject:[NSNumber numberWithInt:fTitle->job->height] forKey:@"PictureHeight"]; + [preset setObject:[NSNumber numberWithInt:[fPresetNewPicWidth intValue]] forKey:@"PictureWidth"]; + [preset setObject:[NSNumber numberWithInt:[fPresetNewPicHeight intValue]] forKey:@"PictureHeight"]; [preset setObject:[NSNumber numberWithInt:fTitle->job->keep_ratio] forKey:@"PictureKeepRatio"]; [preset setObject:[NSNumber numberWithInt:fTitle->job->anamorphic.mode] forKey:@"PicturePAR"]; [preset setObject:[NSNumber numberWithInt:fTitle->job->modulus] forKey:@"PictureModulus"]; diff --git a/macosx/English.lproj/MainMenu.xib b/macosx/English.lproj/MainMenu.xib index 6dbf8ab4..35e9f360 100644 --- a/macosx/English.lproj/MainMenu.xib +++ b/macosx/English.lproj/MainMenu.xib @@ -3,16 +3,16 @@ 1050 10F569 - 740 + 788 1038.29 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 788 YES - + YES @@ -53,7 +53,7 @@ {1.79769e+308, 1.79769e+308} {213, 107} - + 256 YES @@ -2672,7 +2672,6 @@ - AAAAAAAAAABBmAAAQZgAAA @@ -3504,7 +3503,6 @@ {760, 550} - {{0, 0}, {1920, 1178}} {213, 129} @@ -4581,7 +4579,7 @@ {1.79769e+308, 1.79769e+308} {338, 232} - + 256 YES @@ -4651,7 +4649,7 @@ 266 - {{166, 183}, {155, 22}} + {{128, 193}, {193, 22}} YES @@ -4786,7 +4784,7 @@ 268 - {{17, 187}, {147, 14}} + {{27, 195}, {99, 14}} YES @@ -4802,7 +4800,7 @@ 268 - {{166, 157}, {24, 18}} + {{128, 142}, {24, 18}} YES @@ -4868,7 +4866,7 @@ 268 - {{20, 130}, {298, 5}} + {{12, 120}, {298, 5}} {0, 0} @@ -4890,21 +4888,107 @@ 268 - {{17, 159}, {147, 15}} + {{17, 144}, {109, 15}} YES 67239424 71434240 - Use Current Picture Filters: + Use Picture Filters: + + + 12 + + YES + + + 256 + + YES + + + 266 + {{11, 10}, {52, 16}} + + YES + + -1804468671 + 71566336 + + + + YES + + + + + + + 268 + {{61, 10}, {29, 15}} + + YES + + 67239424 + 138543104 + X + + + + + + + + + 266 + {{90, 10}, {52, 16}} + + YES + + -1804468671 + 4457472 + + + + YES + + + + + + {155, 32} + + + + {{128, 163}, {155, 32}} + + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + + 0 + 0 + 0 + NO + {338, 318} + {{0, 0}, {1920, 1178}} {338, 254} @@ -6855,6 +6939,38 @@ 5548 + + + fPresetNewPicWidth + + + + 5668 + + + + fPresetNewPicHeight + + + + 5669 + + + + fPresetNewPicWidthHeightBox + + + + 5671 + + + + addPresetPicDropdownChanged: + + + + 5672 + @@ -8252,17 +8368,18 @@ - - - - - + + + + + + @@ -10313,6 +10430,59 @@ + + 5670 + + + YES + + + + + + + + 5549 + + + YES + + + + + + 5550 + + + + + 5553 + + + YES + + + + + + 5554 + + + + + 5551 + + + YES + + + + + + 5552 + + + @@ -10628,6 +10798,7 @@ 2006.ImportedFromIB2 2008.IBPluginDependency 2008.ImportedFromIB2 + 2009.IBEditorWindowLastContentRect 2009.IBPluginDependency 2009.ImportedFromIB2 2010.IBPluginDependency @@ -11102,8 +11273,18 @@ 5545.IBPluginDependency 5545.ImportedFromIB2 5546.IBPluginDependency + 5549.IBPluginDependency + 5549.ImportedFromIB2 + 5550.IBPluginDependency + 5551.IBPluginDependency + 5551.ImportedFromIB2 + 5552.IBPluginDependency + 5553.IBPluginDependency + 5553.ImportedFromIB2 + 5554.IBPluginDependency 56.IBPluginDependency 56.ImportedFromIB2 + 5670.IBPluginDependency 57.IBEditorWindowLastContentRect 57.IBPluginDependency 57.ImportedFromIB2 @@ -11358,9 +11539,9 @@ {{720, 261}, {270, 550}} - {{383, 198}, {338, 318}} + {{-623, 388}, {338, 318}} com.apple.InterfaceBuilder.CocoaPlugin - {{383, 198}, {338, 318}} + {{-623, 388}, {338, 318}} {{421, 536}, {338, 318}} @@ -11435,6 +11616,7 @@ com.apple.InterfaceBuilder.CocoaPlugin + {{828, 695}, {155, 54}} com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -11932,6 +12114,16 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin {{337, 663}, {229, 173}} com.apple.InterfaceBuilder.CocoaPlugin @@ -11962,7 +12154,7 @@ - 5548 + 5672 @@ -11979,6 +12171,7 @@ Rip: addAllAudioTracksToPopUp: addFactoryPresets: + addPresetPicDropdownChanged: addToQueue: addUserPreset: applyQueueSettingsToMainWindow: @@ -12097,6 +12290,321 @@ id id id + id + + + + YES + + YES + Cancel: + Pause: + Rip: + addAllAudioTracksToPopUp: + addFactoryPresets: + addPresetPicDropdownChanged: + addToQueue: + addUserPreset: + applyQueueSettingsToMainWindow: + audioAddAudioTrackCodecs: + audioCodecsPopUpChanged: + audioDRCSliderChanged: + audioTrackMixdownChanged: + audioTrackPopUpChanged: + autoSetM4vExtension: + browseExportPresetFile: + browseFile: + browseForChapterFile: + browseForChapterFileSave: + browseImportPresetFile: + browseImportSrtFile: + browseSources: + calculateBitrate: + calculatePictureSizing: + cancelScanning: + chapterPopUpChanged: + closeAddPresetPanel: + closeSourceTitleScanPanel: + customSettingUsed: + deleteFactoryPresets: + deletePreset: + encodeStartStopPopUpChanged: + formatPopUpChanged: + getDefaultPresets: + insertPreset: + openForums: + openHomepage: + openMainWindow: + openUserGuide: + qualitySliderChanged: + revertPictureSizeToMax: + selectDefaultPreset: + selectPreset: + setDefaultPreset: + setEnabledStateOfAudioMixdownControls: + showAboutPanel: + showAddPresetPanel: + showDebugOutputPanel: + showNewScan: + showPicturePanel: + showPreferencesWindow: + showPreviewWindow: + showQueueWindow: + showSourceTitleScanPanel: + startEndFrameValueChanged: + startEndSecValueChanged: + titlePopUpChanged: + twoPassCheckboxChanged: + videoEncoderPopUpChanged: + videoFrameRateChanged: + videoMatrixChanged: + + + YES + + Cancel: + id + + + Pause: + id + + + Rip: + id + + + addAllAudioTracksToPopUp: + id + + + addFactoryPresets: + id + + + addPresetPicDropdownChanged: + id + + + addToQueue: + id + + + addUserPreset: + id + + + applyQueueSettingsToMainWindow: + id + + + audioAddAudioTrackCodecs: + id + + + audioCodecsPopUpChanged: + id + + + audioDRCSliderChanged: + id + + + audioTrackMixdownChanged: + id + + + audioTrackPopUpChanged: + id + + + autoSetM4vExtension: + id + + + browseExportPresetFile: + id + + + browseFile: + id + + + browseForChapterFile: + id + + + browseForChapterFileSave: + id + + + browseImportPresetFile: + id + + + browseImportSrtFile: + id + + + browseSources: + id + + + calculateBitrate: + id + + + calculatePictureSizing: + id + + + cancelScanning: + id + + + chapterPopUpChanged: + id + + + closeAddPresetPanel: + id + + + closeSourceTitleScanPanel: + id + + + customSettingUsed: + id + + + deleteFactoryPresets: + id + + + deletePreset: + id + + + encodeStartStopPopUpChanged: + id + + + formatPopUpChanged: + id + + + getDefaultPresets: + id + + + insertPreset: + id + + + openForums: + id + + + openHomepage: + id + + + openMainWindow: + id + + + openUserGuide: + id + + + qualitySliderChanged: + id + + + revertPictureSizeToMax: + id + + + selectDefaultPreset: + id + + + selectPreset: + id + + + setDefaultPreset: + id + + + setEnabledStateOfAudioMixdownControls: + id + + + showAboutPanel: + id + + + showAddPresetPanel: + id + + + showDebugOutputPanel: + id + + + showNewScan: + id + + + showPicturePanel: + id + + + showPreferencesWindow: + id + + + showPreviewWindow: + id + + + showQueueWindow: + id + + + showSourceTitleScanPanel: + id + + + startEndFrameValueChanged: + id + + + startEndSecValueChanged: + id + + + titlePopUpChanged: + id + + + twoPassCheckboxChanged: + id + + + videoEncoderPopUpChanged: + id + + + videoFrameRateChanged: + id + + + videoMatrixChanged: + id + @@ -12165,7 +12673,10 @@ fPresetNewFolderCheck fPresetNewName fPresetNewPicFiltersCheck + fPresetNewPicHeight fPresetNewPicSettingsPopUp + fPresetNewPicWidth + fPresetNewPicWidthHeightBox fPresetSelectedDisplay fPresetsActionButton fPresetsAdd @@ -12284,8 +12795,11 @@ NSButton NSTextField NSButton + NSTextField NSPopUpButton NSTextField + NSBox + NSTextField NSPopUpButton NSButton NSButton @@ -12340,29 +12854,652 @@ NSWindow - - IBProjectSource - Controller.h - - - - HBController - NSObject - + YES YES - presetSelected: - showScanPanel: - - - YES - id - id - - - - YES + fAddPresetPanel + fAdvancedView + fAudBitrateLabel + fAudCodecLabel + fAudDrcLabel + fAudLang1PopUp + fAudLang2PopUp + fAudLang3PopUp + fAudLang4PopUp + fAudMixdownLabel + fAudSamplerateLabel + fAudSourceLabel + fAudTrack1BitratePopUp + fAudTrack1CodecPopUp + fAudTrack1DrcField + fAudTrack1DrcSlider + fAudTrack1Label + fAudTrack1MixPopUp + fAudTrack1RatePopUp + fAudTrack2BitratePopUp + fAudTrack2CodecPopUp + fAudTrack2DrcField + fAudTrack2DrcSlider + fAudTrack2Label + fAudTrack2MixPopUp + fAudTrack2RatePopUp + fAudTrack3BitratePopUp + fAudTrack3CodecPopUp + fAudTrack3DrcField + fAudTrack3DrcSlider + fAudTrack3Label + fAudTrack3MixPopUp + fAudTrack3RatePopUp + fAudTrack4BitratePopUp + fAudTrack4CodecPopUp + fAudTrack4DrcField + fAudTrack4DrcSlider + fAudTrack4Label + fAudTrack4MixPopUp + fAudTrack4RatePopUp + fBrowseSrtFileButton + fChapterTable + fChapterTableNameColumn + fCreateChapterMarkers + fDstBrowseButton + fDstFile1Field + fDstFile2Field + fDstFormatField + fDstFormatPopUp + fDstMp4HttpOptFileCheck + fDstMp4LargeFileCheck + fDstMp4iPodFileCheck + fEncodeStartStopPopUp + fFrameratePfrCheck + fLoadChaptersButton + fPictureCroppingField + fPictureSizeField + fPresetDrawer + fPresetNewDesc + fPresetNewFolderCheck + fPresetNewName + fPresetNewPicFiltersCheck + fPresetNewPicHeight + fPresetNewPicSettingsPopUp + fPresetNewPicWidth + fPresetNewPicWidthHeightBox + fPresetSelectedDisplay + fPresetsActionButton + fPresetsAdd + fPresetsDelete + fPresetsOutlineView + fQueueStatus + fRipIndicator + fSaveChaptersButton + fScanIndicator + fScanSrcTitleCancelButton + fScanSrcTitleNumField + fScanSrcTitleOpenButton + fScanSrcTitlePanel + fScanSrcTitlePathField + fSrcAngleLabel + fSrcAnglePopUp + fSrcChapterEndPopUp + fSrcChapterField + fSrcChapterStartPopUp + fSrcChapterToField + fSrcDVD2Field + fSrcDsplyNameTitleScan + fSrcDuration1Field + fSrcDuration2Field + fSrcFrameEndEncodingField + fSrcFrameStartEncodingField + fSrcTimeEndEncodingField + fSrcTimeStartEncodingField + fSrcTitleField + fSrcTitlePopUp + fStatusField + fSubField + fSubForcedCheck + fSubPopUp + fSubtitlesTable + fVidBitrateCell + fVidBitrateField + fVidConstantCell + fVidEncoderField + fVidEncoderPopUp + fVidQualityField + fVidQualityMatrix + fVidQualityRFField + fVidQualityRFLabel + fVidQualitySlider + fVidRateField + fVidRatePopUp + fVidTargetCell + fVidTargetSizeField + fVidTurboPassCheck + fVidTwoPassCheck + fVideoFiltersField + fWindow + + + YES + + fAddPresetPanel + NSPanel + + + fAdvancedView + NSBox + + + fAudBitrateLabel + NSTextField + + + fAudCodecLabel + NSTextField + + + fAudDrcLabel + NSTextField + + + fAudLang1PopUp + NSPopUpButton + + + fAudLang2PopUp + NSPopUpButton + + + fAudLang3PopUp + NSPopUpButton + + + fAudLang4PopUp + NSPopUpButton + + + fAudMixdownLabel + NSTextField + + + fAudSamplerateLabel + NSTextField + + + fAudSourceLabel + NSTextField + + + fAudTrack1BitratePopUp + NSPopUpButton + + + fAudTrack1CodecPopUp + NSPopUpButton + + + fAudTrack1DrcField + NSTextField + + + fAudTrack1DrcSlider + NSSlider + + + fAudTrack1Label + NSTextField + + + fAudTrack1MixPopUp + NSPopUpButton + + + fAudTrack1RatePopUp + NSPopUpButton + + + fAudTrack2BitratePopUp + NSPopUpButton + + + fAudTrack2CodecPopUp + NSPopUpButton + + + fAudTrack2DrcField + NSTextField + + + fAudTrack2DrcSlider + NSSlider + + + fAudTrack2Label + NSTextField + + + fAudTrack2MixPopUp + NSPopUpButton + + + fAudTrack2RatePopUp + NSPopUpButton + + + fAudTrack3BitratePopUp + NSPopUpButton + + + fAudTrack3CodecPopUp + NSPopUpButton + + + fAudTrack3DrcField + NSTextField + + + fAudTrack3DrcSlider + NSSlider + + + fAudTrack3Label + NSTextField + + + fAudTrack3MixPopUp + NSPopUpButton + + + fAudTrack3RatePopUp + NSPopUpButton + + + fAudTrack4BitratePopUp + NSPopUpButton + + + fAudTrack4CodecPopUp + NSPopUpButton + + + fAudTrack4DrcField + NSTextField + + + fAudTrack4DrcSlider + NSSlider + + + fAudTrack4Label + NSTextField + + + fAudTrack4MixPopUp + NSPopUpButton + + + fAudTrack4RatePopUp + NSPopUpButton + + + fBrowseSrtFileButton + NSButton + + + fChapterTable + NSTableView + + + fChapterTableNameColumn + NSTableColumn + + + fCreateChapterMarkers + NSButton + + + fDstBrowseButton + NSButton + + + fDstFile1Field + NSTextField + + + fDstFile2Field + NSTextField + + + fDstFormatField + NSTextField + + + fDstFormatPopUp + NSPopUpButton + + + fDstMp4HttpOptFileCheck + NSButton + + + fDstMp4LargeFileCheck + NSButton + + + fDstMp4iPodFileCheck + NSButton + + + fEncodeStartStopPopUp + NSPopUpButton + + + fFrameratePfrCheck + NSButton + + + fLoadChaptersButton + NSButton + + + fPictureCroppingField + NSTextField + + + fPictureSizeField + NSTextField + + + fPresetDrawer + NSDrawer + + + fPresetNewDesc + NSTextField + + + fPresetNewFolderCheck + NSButton + + + fPresetNewName + NSTextField + + + fPresetNewPicFiltersCheck + NSButton + + + fPresetNewPicHeight + NSTextField + + + fPresetNewPicSettingsPopUp + NSPopUpButton + + + fPresetNewPicWidth + NSTextField + + + fPresetNewPicWidthHeightBox + NSBox + + + fPresetSelectedDisplay + NSTextField + + + fPresetsActionButton + NSPopUpButton + + + fPresetsAdd + NSButton + + + fPresetsDelete + NSButton + + + fPresetsOutlineView + HBPresetsOutlineView + + + fQueueStatus + NSTextField + + + fRipIndicator + NSProgressIndicator + + + fSaveChaptersButton + NSButton + + + fScanIndicator + NSProgressIndicator + + + fScanSrcTitleCancelButton + NSButton + + + fScanSrcTitleNumField + NSTextField + + + fScanSrcTitleOpenButton + NSButton + + + fScanSrcTitlePanel + NSPanel + + + fScanSrcTitlePathField + NSTextField + + + fSrcAngleLabel + NSTextField + + + fSrcAnglePopUp + NSPopUpButton + + + fSrcChapterEndPopUp + NSPopUpButton + + + fSrcChapterField + NSTextField + + + fSrcChapterStartPopUp + NSPopUpButton + + + fSrcChapterToField + NSTextField + + + fSrcDVD2Field + NSTextField + + + fSrcDsplyNameTitleScan + NSTextField + + + fSrcDuration1Field + NSTextField + + + fSrcDuration2Field + NSTextField + + + fSrcFrameEndEncodingField + NSTextField + + + fSrcFrameStartEncodingField + NSTextField + + + fSrcTimeEndEncodingField + NSTextField + + + fSrcTimeStartEncodingField + NSTextField + + + fSrcTitleField + NSTextField + + + fSrcTitlePopUp + NSPopUpButton + + + fStatusField + NSTextField + + + fSubField + NSTextField + + + fSubForcedCheck + NSButton + + + fSubPopUp + NSPopUpButton + + + fSubtitlesTable + NSTableView + + + fVidBitrateCell + NSButtonCell + + + fVidBitrateField + NSTextField + + + fVidConstantCell + NSButtonCell + + + fVidEncoderField + NSTextField + + + fVidEncoderPopUp + NSPopUpButton + + + fVidQualityField + NSTextField + + + fVidQualityMatrix + NSMatrix + + + fVidQualityRFField + NSTextField + + + fVidQualityRFLabel + NSTextField + + + fVidQualitySlider + NSSlider + + + fVidRateField + NSTextField + + + fVidRatePopUp + NSPopUpButton + + + fVidTargetCell + NSButtonCell + + + fVidTargetSizeField + NSTextField + + + fVidTurboPassCheck + NSButton + + + fVidTwoPassCheck + NSButton + + + fVideoFiltersField + NSTextField + + + fWindow + NSWindow + + + + + IBProjectSource + Controller.h + + + + HBController + NSObject + + YES + + YES + presetSelected: + showScanPanel: + + + YES + id + id + + + + YES + + YES + presetSelected: + showScanPanel: + + + YES + + presetSelected: + id + + + showScanPanel: + id + + + + + YES YES fOpenSourceTitleMMenu @@ -12374,6 +13511,25 @@ NSTableView + + YES + + YES + fOpenSourceTitleMMenu + tableView + + + YES + + fOpenSourceTitleMMenu + NSMenuItem + + + tableView + NSTableView + + + IBUserSource @@ -13177,6 +14333,65 @@ id + + YES + + YES + goBack: + goForward: + goToFirstPage: + goToLastPage: + goToNextPage: + goToPreviousPage: + selectAll: + takeBackgroundColorFrom: + zoomIn: + zoomOut: + + + YES + + goBack: + id + + + goForward: + id + + + goToFirstPage: + id + + + goToLastPage: + id + + + goToNextPage: + id + + + goToPreviousPage: + id + + + selectAll: + id + + + takeBackgroundColorFrom: + id + + + zoomIn: + id + + + zoomOut: + id + + + @@ -13197,6 +14412,30 @@ id + + YES + + YES + play: + start: + stop: + + + YES + + play: + id + + + start: + id + + + stop: + id + + + IBFrameworkSource QuartzComposer.framework/Headers/QCView.h @@ -13252,6 +14491,110 @@ id + + YES + + YES + add: + addScaled: + copy: + cut: + delete: + gotoBeginning: + gotoEnd: + gotoNextSelectionPoint: + gotoPosterFrame: + gotoPreviousSelectionPoint: + paste: + pause: + play: + replace: + selectAll: + selectNone: + stepBackward: + stepForward: + trim: + + + YES + + add: + id + + + addScaled: + id + + + copy: + id + + + cut: + id + + + delete: + id + + + gotoBeginning: + id + + + gotoEnd: + id + + + gotoNextSelectionPoint: + id + + + gotoPosterFrame: + id + + + gotoPreviousSelectionPoint: + id + + + paste: + id + + + pause: + id + + + play: + id + + + replace: + id + + + selectAll: + id + + + selectNone: + id + + + stepBackward: + id + + + stepForward: + id + + + trim: + id + + + @@ -13261,15 +14604,30 @@ checkForUpdates: id + + checkForUpdates: + + checkForUpdates: + id + + delegate id + + delegate + + delegate + id + + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx @@ -13281,5 +14639,28 @@ YES ../HandBrake.xcodeproj 3 + + YES + + YES + HandBrake.icns + NSActionTemplate + NSAddTemplate + NSMenuCheckmark + NSMenuMixedState + NSRemoveTemplate + NSSwitch + + + YES + {128, 128} + {15, 15} + {8, 8} + {9, 8} + {7, 2} + {8, 8} + {15, 15} + +