forked from HandBrake/HandBrake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WinGui: Make the "Presets" menu grouped by category.
- Loading branch information
Showing
6 changed files
with
141 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="PresetsMenuConverter.cs" company="HandBrake Project (http://handbrake.fr)"> | ||
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. | ||
// </copyright> | ||
// <summary> | ||
// A Command to handle the Preset Menu Clicks. | ||
// </summary> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
|
||
namespace HandBrakeWPF.Commands | ||
{ | ||
using System; | ||
using System.Windows.Input; | ||
|
||
using Caliburn.Micro; | ||
|
||
using HandBrakeWPF.Services.Presets.Model; | ||
using HandBrakeWPF.ViewModels.Interfaces; | ||
|
||
public class PresetMenuSelectCommand : ICommand | ||
{ | ||
private readonly Preset preset; | ||
|
||
/// <summary>Initializes a new instance of the <see cref="T:System.Object" /> class.</summary> | ||
public PresetMenuSelectCommand(Preset preset) | ||
{ | ||
this.preset = preset; | ||
} | ||
|
||
/// <summary>Defines the method that determines whether the command can execute in its current state.</summary> | ||
/// <returns>true if this command can be executed; otherwise, false.</returns> | ||
/// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param> | ||
public bool CanExecute(object parameter) | ||
{ | ||
return true; | ||
} | ||
|
||
/// <summary>Defines the method to be called when the command is invoked.</summary> | ||
/// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param> | ||
public void Execute(object parameter) | ||
{ | ||
IMainViewModel mvm = IoC.Get<IMainViewModel>(); | ||
mvm.PresetSelect(this.preset); | ||
} | ||
|
||
public event EventHandler CanExecuteChanged; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="PresetsMenuConverter.cs" company="HandBrake Project (http://handbrake.fr)"> | ||
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. | ||
// </copyright> | ||
// <summary> | ||
// A Converter to manage the Presets list and turn it into a grouped set of MenuItems | ||
// </summary> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
|
||
namespace HandBrakeWPF.Converters | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Globalization; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
|
||
using HandBrakeWPF.Commands; | ||
using HandBrakeWPF.Services.Presets.Model; | ||
|
||
public class PresetsMenuConverter : IValueConverter | ||
{ | ||
/// <summary>Converts a value. </summary> | ||
/// <returns>A converted value. If the method returns null, the valid null value is used.</returns> | ||
/// <param name="value">The value produced by the binding source.</param> | ||
/// <param name="targetType">The type of the binding target property.</param> | ||
/// <param name="parameter">The converter parameter to use.</param> | ||
/// <param name="culture">The culture to use in the converter.</param> | ||
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) | ||
{ | ||
IEnumerable<Preset> presets = value as IEnumerable<Preset>; | ||
|
||
if (presets ==null) | ||
{ | ||
return null; | ||
} | ||
|
||
Dictionary<string, MenuItem> groupedMenu = new Dictionary<string, MenuItem>(); | ||
foreach (Preset item in presets) | ||
{ | ||
if (groupedMenu.ContainsKey(item.Category)) | ||
{ | ||
MenuItem newMeuItem = new MenuItem { Header = item.Name, Tag = item, Command = new PresetMenuSelectCommand(item)}; | ||
if (item.IsDefault) | ||
{ | ||
newMeuItem.FontStyle = FontStyles.Italic; | ||
} | ||
|
||
groupedMenu[item.Category].Items.Add(newMeuItem); | ||
} | ||
else | ||
{ | ||
MenuItem group = new MenuItem(); | ||
group.Header = item.Category; | ||
|
||
MenuItem newMeuItem = new MenuItem { Header = item.Name, Tag = item, Command = new PresetMenuSelectCommand(item) }; | ||
if (item.IsDefault) | ||
{ | ||
newMeuItem.FontStyle = FontStyles.Italic; | ||
} | ||
|
||
group.Items.Add(newMeuItem); | ||
groupedMenu[item.Category] = group; | ||
} | ||
} | ||
|
||
return groupedMenu.Values.ToList(); | ||
} | ||
|
||
/// <summary>Converts a value. </summary> | ||
/// <returns>A converted value. If the method returns null, the valid null value is used.</returns> | ||
/// <param name="value">The value that is produced by the binding target.</param> | ||
/// <param name="targetType">The type to convert to.</param> | ||
/// <param name="parameter">The converter parameter to use.</param> | ||
/// <param name="culture">The culture to use in the converter.</param> | ||
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters