Home
last modified time | relevance | path

Searched refs:SelectedPreset (Results 1 – 6 of 6) sorted by relevance

/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/ViewModelItems/Filters/
H A DDeblockFilter.cs51 …public bool ShowDeblockTune => this.SelectedPreset != null && this.SelectedPreset.Key != Off && th…
53 … public bool ShowDeblockCustom => this.SelectedPreset != null && this.SelectedPreset.Key == Custom;
55 public FilterPreset SelectedPreset property in HandBrakeWPF.ViewModelItems.Filters.DeblockFilter
64 this.NotifyOfPropertyChange(() => this.SelectedPreset);
103 …this.SelectedPreset = new FilterPreset(HandBrakeFilterHelpers.GetFilterPresets((int)hb_filter_ids.… in SetPreset()
109 this.SelectedPreset = preset.Task.DeblockPreset; in SetPreset()
117 this.NotifyOfPropertyChange(() => this.SelectedPreset); in UpdateTask()
127 if (this.SelectedPreset?.Key != preset.Task?.DeblockPreset?.Key) in MatchesPreset()
H A DChromaSmoothFilter.cs50 …public bool ShowTune => this.SelectedPreset != null && this.SelectedPreset.Key != Off && this.Sele…
52 public bool ShowCustom => this.SelectedPreset != null && this.SelectedPreset.Key == Custom;
54 public FilterPreset SelectedPreset property in HandBrakeWPF.ViewModelItems.Filters.ChromaSmoothFilter
67 this.NotifyOfPropertyChange(() => this.SelectedPreset);
120 …this.SelectedPreset = new FilterPreset(HandBrakeFilterHelpers.GetFilterPresets((int)hb_filter_ids.… in SetPreset()
126 this.SelectedPreset = preset.Task.ChromaSmooth; in SetPreset()
134 this.NotifyOfPropertyChange(() => this.SelectedPreset); in UpdateTask()
144 if (this.SelectedPreset?.Key != preset.Task?.ChromaSmooth?.Key) in MatchesPreset()
H A DColourspaceFilter.cs47 …public bool ShowColourspaceCustom => this.SelectedPreset != null && this.SelectedPreset.Key == Cus…
49 public FilterPreset SelectedPreset property in HandBrakeWPF.ViewModelItems.Filters.ColourSpaceFilter
62 this.NotifyOfPropertyChange(() => this.SelectedPreset);
91 …this.SelectedPreset = new FilterPreset(HandBrakeFilterHelpers.GetFilterPresets((int)hb_filter_ids.… in SetPreset()
96 this.SelectedPreset = preset.Task.Colourspace; in SetPreset()
103 this.NotifyOfPropertyChange(() => this.SelectedPreset); in UpdateTask()
111 if (this.SelectedPreset?.Key != preset.Task?.Colourspace?.Key) in MatchesPreset()
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/ViewModels/
H A DPresetManagerViewModel.cs99 this.NotifyOfPropertyChange(() => this.SelectedPreset);
104 public Preset SelectedPreset property in HandBrakeWPF.ViewModels.PresetManagerViewModel
113 this.NotifyOfPropertyChange(() => this.SelectedPreset);
142 public bool IsPresetSelected => this.SelectedPreset != null;
261 this.SelectedPreset = this.presetService.DefaultPreset; in DeletePreset()
366 this.SelectedPreset = preset; in DeleteBuiltInPresets()
397 …this.SelectedPreset.AudioTrackBehaviours = new AudioBehaviours(audioDefaultsViewModel.AudioBehavio… in EditAudioDefaults()
432 if (this.SelectedPreset != null) in SetCurrentPresetAsDefault()
434 this.presetService.SetDefault(this.SelectedPreset); in SetCurrentPresetAsDefault()
453 this.SelectedPreset = this.presetService.DefaultPreset; in SetDefaultPreset()
[all …]
H A DMainViewModel.cs270 public Preset SelectedPreset property in HandBrakeWPF.ViewModels.MainViewModel
289 this.NotifyOfPropertyChange(() => this.SelectedPreset);
1157 temporaryPreset = new Preset(this.SelectedPreset); in AddSelectionToQueue()
1561 if (this.SelectedPreset == null) in PresetUpdate()
1589 if (this.SelectedPreset == null) in PresetManage()
1611 this.NotifyOfPropertyChange(() => this.SelectedPreset); in PresetManage()
1643 this.SelectedPreset = this.presetService.DefaultPreset; in PresetRemove()
1716 this.PresetSelect(this.SelectedPreset); in PresetSelect()
1735 this.NotifyOfPropertyChange(() => this.SelectedPreset); in PresetSelect()
1833 this.NotifyOfPropertyChange(() => this.SelectedPreset); in QueueEditAction()
[all …]
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/Views/
H A DPresetManagerView.xaml.cs52 ((PresetManagerViewModel)this.DataContext).SelectedPreset = (Preset)e.NewValue; in PresetListTree_OnSelectedItemChanged()