Remove WinForms dep from Virtual Pads schemata
This commit is contained in:
parent
9168b59382
commit
50b17096e1
|
@ -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),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue