cemu-DS4Windows/DS4Windows/DS4Forms/LanguagePackComboBox.cs

124 lines
4.6 KiB
C#
Raw Normal View History

2017-12-12 21:50:29 +01:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Windows.Forms;
namespace DS4Windows.DS4Forms
{
public partial class LanguagePackComboBox : UserControl
{
private string _probingPath = "";
2017-12-12 21:50:29 +01:00
[Category("Action")]
[Description("Fires when the combo box selected index is changed.")]
public event EventHandler SelectedIndexChanged;
[Category("Action")]
[Description("Fires when the combo box selected value is changed.")]
public event EventHandler SelectedValueChanged;
[Category("Data")]
[Description("Text used for invariant culture name in the combo box.")]
[Localizable(true)]
public string InvariantCultureText { get; set; }
[Category("Data")]
[Description("Text for label before the combo box.")]
[Localizable(true)]
public string LabelText {
get { return label1.Text; }
set { label1.Text = value; }
}
[Category("Data")]
[Description("If probing path has been changed in App.config, add the same string here.")]
public string ProbingPath
{
get { return this._probingPath; }
set { this._probingPath = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2017-12-12 21:50:29 +01:00
public int SelectedIndex
{
get { return cbCulture.SelectedIndex; }
set { cbCulture.SelectedIndex = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2017-12-12 21:50:29 +01:00
public string SelectedText
{
get { return cbCulture.SelectedText; }
set { cbCulture.SelectedText = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
2017-12-12 21:50:29 +01:00
public object SelectedValue
{
get { return cbCulture.SelectedValue; }
set { cbCulture.SelectedValue = value; }
}
public LanguagePackComboBox()
{
InitializeComponent();
// Find available language assemblies and bind the list to the combo box.
cbCulture.DataSource = this.CreateLanguageAssembliesBindingSource();
cbCulture.SelectedValue = Thread.CurrentThread.CurrentUICulture.Name;
// This must be set here instead of Designer or event would fire at initial selected value setting above.
cbCulture.SelectedIndexChanged += new EventHandler(CbCulture_SelectedIndexChanged);
cbCulture.SelectedValueChanged += new EventHandler(CbCulture_SelectedValueChanged);
}
private BindingSource CreateLanguageAssembliesBindingSource()
{
2017-12-12 21:50:29 +01:00
// Find the location where application installed.
string exeLocation = Path.GetDirectoryName(Uri.UnescapeDataString(new UriBuilder(Assembly.GetExecutingAssembly().CodeBase).Path));
List<string> lookupPaths = this.ProbingPath.Split(';')
.Select(path => Path.Combine(exeLocation, path))
.Where(path => path != exeLocation)
.ToList();
lookupPaths.Insert(0, exeLocation);
2017-12-12 21:50:29 +01:00
// Get all culture for which satellite folder found with culture code.
Dictionary<string, string> cultures = CultureInfo.GetCultures(CultureTypes.AllCultures)
.Where(c => this.IsLanguageAssemblyAvailable(lookupPaths, c))
2017-12-12 21:50:29 +01:00
.ToDictionary(c => c.Name, c => c.Equals(CultureInfo.InvariantCulture) ? this.InvariantCultureText : c.NativeName);
return new BindingSource(cultures, null);
}
2017-12-12 21:50:29 +01:00
private bool IsLanguageAssemblyAvailable(List<string> lookupPaths, CultureInfo culture)
{
return lookupPaths.Select(path => Path.Combine(path, culture.Name))
.Where(path => Directory.Exists(path))
.Count() > 0;
2017-12-12 21:50:29 +01:00
}
private void LanguagePackComboBox_SizeChanged(object sender, EventArgs e)
{
cbCulture.Left = label1.Margin.Left + label1.Width + label1.Margin.Right;
cbCulture.Width = this.Width - cbCulture.Left - cbCulture.Margin.Right - cbCulture.Margin.Left;
}
private void CbCulture_SelectedIndexChanged(object sender, EventArgs e)
{
this.SelectedIndexChanged?.Invoke(this, e);
}
private void CbCulture_SelectedValueChanged(object sender, EventArgs e)
{
this.SelectedValueChanged?.Invoke(this, e);
}
}
}