Remove WinForms dep from Virtual Pads schemata

This commit is contained in:
YoshiRulz 2020-12-22 13:30:19 +10:00
parent 9168b59382
commit 50b17096e1
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 4 additions and 5 deletions

View File

@ -90,7 +90,7 @@ namespace BizHawk.Client.EmuHawk
singleAxis.DisplayName,
singleAxis.MinValue,
singleAxis.MaxValue,
singleAxis.Orientation
singleAxis.IsVertical ? Orientation.Vertical : Orientation.Horizontal
)
{
Location = UIHelper.Scale(singleAxis.Location),

View File

@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using BizHawk.Client.EmuHawk.Properties;
using BizHawk.Emulation.Common;
@ -70,19 +69,19 @@ namespace BizHawk.Client.EmuHawk
{
public string DisplayName { get; set; }
public bool IsVertical { get; }
public int MaxValue { get; set; }
public int MinValue { get; set; }
public Orientation Orientation { get; }
public Size TargetSize { get; set; }
public SingleAxisSchema(int x, int y, string name, bool isVertical = false)
: base(new Point(x, y), name)
{
DisplayName = name;
Orientation = isVertical ? Orientation.Vertical : Orientation.Horizontal;
IsVertical = isVertical;
}
public SingleAxisSchema(int x, int y, int controller, string name, bool isVertical = false)