From da49f85b81dae384eb84ccc43332dfac7b9bd1e4 Mon Sep 17 00:00:00 2001 From: "J.D. Purcell" Date: Sun, 13 Oct 2019 16:34:55 -0400 Subject: [PATCH] HotkeyConfig: Code cleanup. --- BizHawk.Client.EmuHawk/config/HotkeyConfig.cs | 60 ++++++++----------- 1 file changed, 24 insertions(+), 36 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/HotkeyConfig.cs b/BizHawk.Client.EmuHawk/config/HotkeyConfig.cs index 4713321dc8..79ba49db1d 100644 --- a/BizHawk.Client.EmuHawk/config/HotkeyConfig.cs +++ b/BizHawk.Client.EmuHawk/config/HotkeyConfig.cs @@ -72,32 +72,17 @@ namespace BizHawk.Client.EmuHawk foreach (var w in InputWidgets) { - var b = Global.Config.HotkeyBindings.FirstOrDefault(x => x.DisplayName == w.WidgetName); + var b = Global.Config.HotkeyBindings.First(x => x.DisplayName == w.WidgetName); b.Bindings = w.Bindings; } } - private IEnumerable InputWidgets - { - get - { - var widgets = new List(); - for (var x = 0; x < HotkeyTabControl.TabPages.Count; x++) - { - for (var y = 0; y < HotkeyTabControl.TabPages[x].Controls.Count; y++) - { - if (HotkeyTabControl.TabPages[x].Controls[y] is InputCompositeWidget) - { - widgets.Add(HotkeyTabControl.TabPages[x].Controls[y] as InputCompositeWidget); - } - } - } - return widgets; - } - } + private IEnumerable InputWidgets => + HotkeyTabControl.TabPages.Cast().SelectMany(tp => tp.Controls.OfType()); private void DoTabs() { + HotkeyTabControl.SuspendLayout(); HotkeyTabControl.TabPages.Clear(); // Buckets @@ -105,31 +90,31 @@ namespace BizHawk.Client.EmuHawk foreach (var tab in tabs) { - var _y = UIHelper.ScaleY(14); - var _x = UIHelper.ScaleX(6); - - var tb = new TabPage {Name = tab, Text = tab}; - - var bindings = Global.Config.HotkeyBindings.Where(x => x.TabGroup == tab).OrderBy(x => x.Ordinal).ThenBy(x => x.DisplayName); - + var tb = new TabPage { Name = tab, Text = tab }; + var bindings = Global.Config.HotkeyBindings.Where(n => n.TabGroup == tab).OrderBy(n => n.Ordinal).ThenBy(n => n.DisplayName); + int x = UIHelper.ScaleX(6); + int y = UIHelper.ScaleY(14); int iwOffsetX = UIHelper.ScaleX(110); int iwOffsetY = UIHelper.ScaleY(-4); int iwWidth = UIHelper.ScaleX(120); + + tb.SuspendLayout(); + foreach (var b in bindings) { var l = new Label { Text = b.DisplayName, - Location = new Point(_x, _y), - Size = new Size(iwOffsetX - UIHelper.ScaleX(2), UIHelper.ScaleY(15)), + Location = new Point(x, y), + Size = new Size(iwOffsetX - UIHelper.ScaleX(2), UIHelper.ScaleY(15)) }; var w = new InputCompositeWidget { - Location = new Point(_x + iwOffsetX, _y + iwOffsetY), + Location = new Point(x + iwOffsetX, y + iwOffsetY), AutoTab = AutoTabCheckBox.Checked, Width = iwWidth, - WidgetName = b.DisplayName, + WidgetName = b.DisplayName }; w.SetupTooltip(toolTip1, b.ToolTip); @@ -140,11 +125,11 @@ namespace BizHawk.Client.EmuHawk tb.Controls.Add(l); tb.Controls.Add(w); - _y += UIHelper.ScaleY(24); - if (_y > HotkeyTabControl.Height - UIHelper.ScaleY(35)) + y += UIHelper.ScaleY(24); + if (y > HotkeyTabControl.Height - UIHelper.ScaleY(35)) { - _x += iwOffsetX + iwWidth + UIHelper.ScaleX(10); - _y = UIHelper.ScaleY(14); + x += iwOffsetX + iwWidth + UIHelper.ScaleX(10); + y = UIHelper.ScaleY(14); } } @@ -153,13 +138,16 @@ namespace BizHawk.Client.EmuHawk tb.Controls.Add(new Label { Text = "Save States hotkeys operate with branches when TAStudio is engaged.", - Location = new Point(_x, _y), - Size = new Size(iwWidth + iwOffsetX, HotkeyTabControl.Height - _y), + Location = new Point(x, y), + Size = new Size(iwWidth + iwOffsetX, HotkeyTabControl.Height - y) }); } HotkeyTabControl.TabPages.Add(tb); + tb.ResumeLayout(); } + + HotkeyTabControl.ResumeLayout(); } private void Defaults()