mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-13 15:57:09 +00:00
63 lines
2 KiB
C#
63 lines
2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
|
|
using PKHeX.Core;
|
|
using PKHeX.WinForms.Properties;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
public partial class SettingsEditor : Form
|
|
{
|
|
public SettingsEditor(object obj, params string[] blacklist)
|
|
{
|
|
InitializeComponent();
|
|
SettingsObject = obj;
|
|
LoadSettings(blacklist);
|
|
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
|
this.CenterToForm(FindForm());
|
|
}
|
|
private void SettingsEditor_FormClosing(object sender, FormClosingEventArgs e) => SaveSettings();
|
|
|
|
private readonly object SettingsObject;
|
|
private void LoadSettings(IEnumerable<string> blacklist)
|
|
{
|
|
var type = SettingsObject.GetType();
|
|
var props = ReflectUtil.GetPropertiesCanWritePublicDeclared(type).Except(blacklist);
|
|
foreach (var p in props)
|
|
{
|
|
var state = ReflectUtil.GetValue(Settings.Default, p);
|
|
switch (state)
|
|
{
|
|
case bool b:
|
|
var chk = GetCheckBox(p, b);
|
|
FLP_Settings.Controls.Add(chk);
|
|
FLP_Settings.SetFlowBreak(chk, true);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
private void SaveSettings()
|
|
{
|
|
foreach (var s in FLP_Settings.Controls.OfType<Control>())
|
|
ReflectUtil.SetValue(SettingsObject, s.Name, GetValue(s));
|
|
}
|
|
|
|
private static CheckBox GetCheckBox(string name, bool state) => new CheckBox
|
|
{
|
|
Name = name, Checked = state, Text = name,
|
|
AutoSize = true,
|
|
};
|
|
private static object GetValue(IDisposable control)
|
|
{
|
|
switch (control)
|
|
{
|
|
case CheckBox cb:
|
|
return cb.Checked;
|
|
default: return null;
|
|
}
|
|
}
|
|
}
|
|
}
|