diff --git a/DS4Windows/DS4Control/Mouse.cs b/DS4Windows/DS4Control/Mouse.cs
index 6d1a21c..15f72a5 100644
--- a/DS4Windows/DS4Control/Mouse.cs
+++ b/DS4Windows/DS4Control/Mouse.cs
@@ -133,7 +133,7 @@ namespace DS4Windows
useReverseRatchet = Global.GetGyroMouseStickTriggerTurns(deviceNum);
int i = 0;
- string[] ss = Global.GetSAMousestickTriggers(deviceNum).Split(',');
+ string[] ss = Global.GetSAMouseStickTriggers(deviceNum).Split(',');
bool andCond = Global.GetSAMouseStickTriggerCond(deviceNum);
triggeractivated = andCond ? true : false;
if (!string.IsNullOrEmpty(ss[0]))
@@ -155,7 +155,6 @@ namespace DS4Windows
}
}
- previousTriggerActivated = triggeractivated;
if (toggleGyroMouse)
{
if (triggeractivated && triggeractivated != previousTriggerActivated)
diff --git a/DS4Windows/DS4Control/ScpUtil.cs b/DS4Windows/DS4Control/ScpUtil.cs
index cc7bbca..0f912db 100644
--- a/DS4Windows/DS4Control/ScpUtil.cs
+++ b/DS4Windows/DS4Control/ScpUtil.cs
@@ -862,7 +862,7 @@ namespace DS4Windows
}
public static string[] SAMousestickTriggers => m_Config.sAMouseStickTriggers;
- public static string GetSAMousestickTriggers(int device)
+ public static string GetSAMouseStickTriggers(int device)
{
return m_Config.sAMouseStickTriggers[device];
}
@@ -896,6 +896,10 @@ namespace DS4Windows
return m_Config.gyroMStickInfo[device];
}
+ public static bool[] GyroMouseStickToggle => m_Config.gyroMouseStickToggle;
+ public static void SetGyroMouseStickToggle(int index, bool value, ControlService control)
+ => m_Config.SetGyroMouseStickToggle(index, value, control);
+
public static SASteeringWheelEmulationAxisType[] SASteeringWheelEmulationAxis => m_Config.sASteeringWheelEmulationAxis;
public static SASteeringWheelEmulationAxisType GetSASteeringWheelEmulationAxis(int index)
{
@@ -1894,6 +1898,8 @@ namespace DS4Windows
new GyroMouseStickInfo(), new GyroMouseStickInfo(),
new GyroMouseStickInfo()
};
+ public bool[] gyroMouseStickToggle = new bool[5] { false, false, false,
+ false, false };
public SASteeringWheelEmulationAxisType[] sASteeringWheelEmulationAxis = new SASteeringWheelEmulationAxisType[5] { SASteeringWheelEmulationAxisType.None, SASteeringWheelEmulationAxisType.None, SASteeringWheelEmulationAxisType.None, SASteeringWheelEmulationAxisType.None, SASteeringWheelEmulationAxisType.None };
public int[] sASteeringWheelEmulationRange = new int[5] { 360, 360, 360, 360, 360 };
@@ -2070,6 +2076,13 @@ namespace DS4Windows
control.touchPad[index].ToggleGyroMouse = value;
}
+ public void SetGyroMouseStickToggle(int index, bool value, ControlService control)
+ {
+ gyroMouseStickToggle[index] = value;
+ if (index < 4 && control.touchPad[index] != null)
+ control.touchPad[index].ToggleGyroMouse = value;
+ }
+
private string OutContDeviceString(OutContType id)
{
string result = "X360";
@@ -2266,6 +2279,7 @@ namespace DS4Windows
XmlNode xmlGyroMStickAntiDX = m_Xdoc.CreateNode(XmlNodeType.Element, "GyroMouseStickAntiDeadX", null); xmlGyroMStickAntiDX.InnerText = gyroMStickInfo[device].antiDeadX.ToString(); Node.AppendChild(xmlGyroMStickAntiDX);
XmlNode xmlGyroMStickAntiDY = m_Xdoc.CreateNode(XmlNodeType.Element, "GyroMouseStickAntiDeadY", null); xmlGyroMStickAntiDY.InnerText = gyroMStickInfo[device].antiDeadY.ToString(); Node.AppendChild(xmlGyroMStickAntiDY);
XmlNode xmlGyroMStickInvert = m_Xdoc.CreateNode(XmlNodeType.Element, "GyroMouseStickInvert", null); xmlGyroMStickInvert.InnerText = gyroMStickInfo[device].inverted.ToString(); Node.AppendChild(xmlGyroMStickInvert);
+ XmlNode xmlGyroMStickToggle = m_Xdoc.CreateNode(XmlNodeType.Element, "GyroMouseStickToggle", null); xmlGyroMStickToggle.InnerText = gyroMouseStickToggle[device].ToString(); Node.AppendChild(xmlGyroMStickToggle);
XmlNode xmlLSC = m_Xdoc.CreateNode(XmlNodeType.Element, "LSCurve", null); xmlLSC.InnerText = lsCurve[device].ToString(); Node.AppendChild(xmlLSC);
XmlNode xmlRSC = m_Xdoc.CreateNode(XmlNodeType.Element, "RSCurve", null); xmlRSC.InnerText = rsCurve[device].ToString(); Node.AppendChild(xmlRSC);
@@ -3140,7 +3154,6 @@ namespace DS4Windows
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/GyroMouseStickTriggerTurns"); bool.TryParse(Item.InnerText, out gyroMouseStickTriggerTurns[device]); }
catch { gyroMouseStickTriggerTurns[device] = true; missingSetting = true; }
-
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/GyroMouseStickHAxis"); int temp = 0; int.TryParse(Item.InnerText, out temp); gyroMouseStickHorizontalAxis[device] = Math.Min(Math.Max(0, temp), 1); }
catch { gyroMouseStickHorizontalAxis[device] = 0; missingSetting = true; }
@@ -3172,6 +3185,13 @@ namespace DS4Windows
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/GyroMouseStickInvert"); uint.TryParse(Item.InnerText, out gyroMStickInfo[device].inverted); }
catch { gyroMStickInfo[device].inverted = 0; missingSetting = true; }
+ try
+ {
+ Item = m_Xdoc.SelectSingleNode("/" + rootname + "/GyroMouseStickToggle"); bool.TryParse(Item.InnerText, out bool temp);
+ gyroMouseStickToggle[device] = temp;
+ }
+ catch { gyroMouseStickToggle[device] = false; missingSetting = true; }
+
try
{
@@ -3217,9 +3237,9 @@ namespace DS4Windows
try
{
Item = m_Xdoc.SelectSingleNode("/" + rootname + "/GyroMouseToggle"); bool.TryParse(Item.InnerText, out bool temp);
- SetGyroMouseToggle(device, temp, control);
+ gyroMouseToggle[device] = temp;
}
- catch { SetGyroMouseToggle(device, false, control); missingSetting = true; }
+ catch { gyroMouseToggle[device] = false; missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/LSCurve"); int.TryParse(Item.InnerText, out lsCurve[device]); }
catch { lsCurve[device] = 0; missingSetting = true; }
@@ -3553,7 +3573,20 @@ namespace DS4Windows
containsCustomExtras[device] = HasCustomExtras(device);
if (device < 4)
+ {
Program.rootHub.touchPad[device]?.ResetToggleGyroM();
+ GyroOutMode currentGyro = gyroOutMode[device];
+ if (currentGyro == GyroOutMode.Mouse)
+ {
+ control.touchPad[device].ToggleGyroMouse =
+ gyroMouseToggle[device];
+ }
+ else if (currentGyro == GyroOutMode.MouseJoystick)
+ {
+ control.touchPad[device].ToggleGyroMouse =
+ gyroMouseStickToggle[device];
+ }
+ }
// If a device exists, make sure to transfer relevant profile device
// options to device instance
@@ -4555,6 +4588,7 @@ namespace DS4Windows
gyroMStickInfo[device].deadZone = 30; gyroMStickInfo[device].maxZone = 830;
gyroMStickInfo[device].antiDeadX = 0.4; gyroMStickInfo[device].antiDeadY = 0.4;
gyroMStickInfo[device].inverted = 0;
+ gyroMouseStickToggle[device] = false;
sASteeringWheelEmulationAxis[device] = SASteeringWheelEmulationAxisType.None;
sASteeringWheelEmulationRange[device] = 360;
touchDisInvertTriggers[device] = new int[1] { -1 };
@@ -4566,6 +4600,7 @@ namespace DS4Windows
gyroSmoothing[device] = false;
gyroSmoothWeight[device] = 0.5;
gyroMouseHorizontalAxis[device] = 0;
+ gyroMouseToggle[device] = false;
squStickInfo[device].lsMode = false;
squStickInfo[device].rsMode = false;
squStickInfo[device].roundness = 5.0;
diff --git a/DS4Windows/DS4Forms/Options.Designer.cs b/DS4Windows/DS4Forms/Options.Designer.cs
index 281a18d..0466b6f 100644
--- a/DS4Windows/DS4Forms/Options.Designer.cs
+++ b/DS4Windows/DS4Forms/Options.Designer.cs
@@ -199,6 +199,7 @@
this.label36 = new System.Windows.Forms.Label();
this.btnGyroMStickTrig = new System.Windows.Forms.Button();
this.gyroMStickTrigBehaveCk = new System.Windows.Forms.CheckBox();
+ this.gyroMStickToggleCk = new System.Windows.Forms.CheckBox();
this.label29 = new System.Windows.Forms.Label();
this.gyroMouseStickDZ = new System.Windows.Forms.NumericUpDown();
this.label30 = new System.Windows.Forms.Label();
@@ -2036,6 +2037,7 @@
this.gyroMouseJoyFLP.Controls.Add(this.label36);
this.gyroMouseJoyFLP.Controls.Add(this.btnGyroMStickTrig);
this.gyroMouseJoyFLP.Controls.Add(this.gyroMStickTrigBehaveCk);
+ this.gyroMouseJoyFLP.Controls.Add(this.gyroMStickToggleCk);
this.gyroMouseJoyFLP.Controls.Add(this.label29);
this.gyroMouseJoyFLP.Controls.Add(this.gyroMouseStickDZ);
this.gyroMouseJoyFLP.Controls.Add(this.label30);
@@ -2074,6 +2076,13 @@
this.gyroMStickTrigBehaveCk.UseVisualStyleBackColor = true;
this.gyroMStickTrigBehaveCk.CheckedChanged += new System.EventHandler(this.GyroMStickTrigBehaveCk_CheckedChanged);
//
+ // gyroMStickToggleCk
+ //
+ resources.ApplyResources(this.gyroMStickToggleCk, "gyroMStickToggleCk");
+ this.gyroMStickToggleCk.Name = "gyroMStickToggleCk";
+ this.gyroMStickToggleCk.UseVisualStyleBackColor = true;
+ this.gyroMStickToggleCk.CheckedChanged += new System.EventHandler(this.GyroMStickToggleCk_CheckedChanged);
+ //
// label29
//
resources.ApplyResources(this.label29, "label29");
@@ -5082,5 +5091,6 @@
private System.Windows.Forms.CheckBox gyroMStickTrigBehaveCk;
private System.Windows.Forms.Label label35;
private System.Windows.Forms.ComboBox gyroMouseStickEvalCombo;
+ private System.Windows.Forms.CheckBox gyroMStickToggleCk;
}
}
\ No newline at end of file
diff --git a/DS4Windows/DS4Forms/Options.cs b/DS4Windows/DS4Forms/Options.cs
index 05062c9..1992c20 100644
--- a/DS4Windows/DS4Forms/Options.cs
+++ b/DS4Windows/DS4Forms/Options.cs
@@ -814,6 +814,7 @@ namespace DS4Windows.Forms
gyroMousestickXAxisCom.SelectedIndex = GyroMouseStickHorizontalAxis[device];
gyroMouseStickInvertXCk.Checked = (gyroMouseStickInfo.inverted & 1) == 1;
gyroMouseStickInvertYCk.Checked = (gyroMouseStickInfo.inverted & 2) == 2;
+ gyroMStickToggleCk.Checked = GyroMouseStickToggle[device];
}
else
{
@@ -957,6 +958,8 @@ namespace DS4Windows.Forms
gyroMousestickXAxisCom.SelectedIndex = 0;
gyroMouseStickInvertXCk.Checked = false;
gyroMouseStickInvertYCk.Checked = false;
+ gyroMStickTrigBehaveCk.Checked = false;
+ gyroMStickToggleCk.Checked = false;
Set();
}
@@ -1474,7 +1477,7 @@ namespace DS4Windows.Forms
GyroSmoothingWeight[device] = (double)nUDGyroSmoothWeight.Value;
GyroMouseHorizontalAxis[device] = cBGyroMouseXAxis.SelectedIndex;
SetGyroMouseDeadZone(device, (int)gyroMouseDzNUD.Value, Program.rootHub);
- SetGyroMouseToggle(device, toggleGyroMCb.Checked, Program.rootHub);
+ //SetGyroMouseToggle(device, toggleGyroMCb.Checked, Program.rootHub);
int invert = 0;
if (cBGyroInvertX.Checked)
@@ -1535,9 +1538,12 @@ namespace DS4Windows.Forms
break;
case 1:
GyroOutputMode[device] = GyroOutMode.Mouse;
+ SetGyroMouseToggle(device, toggleGyroMCb.Checked, Program.rootHub);
break;
case 2:
GyroOutputMode[device] = GyroOutMode.MouseJoystick;
+ SetGyroMouseStickToggle(device,
+ gyroMStickToggleCk.Checked, Program.rootHub);
break;
default:
break;
@@ -3666,6 +3672,15 @@ namespace DS4Windows.Forms
}
}
+ private void GyroMStickToggleCk_CheckedChanged(object sender, EventArgs e)
+ {
+ if (loading == false)
+ {
+ Global.SetGyroMouseStickToggle(device,
+ gyroMStickToggleCk.Checked, Program.rootHub);
+ }
+ }
+
private void trackFrictionNUD_ValueChanged(object sender, EventArgs e)
{
if (loading == false)
diff --git a/DS4Windows/DS4Forms/Options.resx b/DS4Windows/DS4Forms/Options.resx
index 805e285..4fc0984 100644
--- a/DS4Windows/DS4Forms/Options.resx
+++ b/DS4Windows/DS4Forms/Options.resx
@@ -1335,6 +1335,198 @@
1
+
+ pnlTPMouse
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 0
+
+
+ rBTPControls
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 1
+
+
+ rBTPMouse
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 2
+
+
+ fLPTouchSwipe
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 3
+
+
+ 2, 259
+
+
+ 270, 190
+
+
+ 246
+
+
+ Touchpad
+
+
+ gBTouchpad
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPControls
+
+
+ 1
+
+
+ trackFrictionLb
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 0
+
+
+ trackFrictionNUD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 1
+
+
+ trackballCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 2
+
+
+ touchpadDisInvertButton
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 3
+
+
+ label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 4
+
+
+ label15
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 5
+
+
+ touchpadInvertComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 6
+
+
+ cbStartTouchpadOff
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlTPMouse
+
+
+ 16
+
+
+ 0, 36
+
+
+ 2, 2, 2, 2
+
+
+ 266, 149
+
+
+ 257
+
+
+ pnlTPMouse
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 0
+
True
@@ -1566,30 +1758,6 @@
16
-
- 0, 36
-
-
- 2, 2, 2, 2
-
-
- 266, 149
-
-
- 257
-
-
- pnlTPMouse
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBTouchpad
-
-
- 0
-
True
@@ -1656,156 +1824,126 @@
2
+
+ bnSwipeUp
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 0
+
+
+ lbSwipeUp
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 1
+
+
+ bnSwipeDown
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 2
+
+
+ lbSwipeDown
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 3
+
+
+ bnSwipeLeft
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 4
+
+
+ lbSwipeLeft
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 5
+
+
+ bnSwipeRight
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 6
+
+
+ lbSwipeRight
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTouchSwipe
+
+
+ 7
+
+
+ 6, 40
+
+
+ 260, 148
+
+
+ 256
+
+
+ fLPTouchSwipe
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBTouchpad
+
+
+ 3
+
326, 13
-
- False
-
-
- 117, 22
-
-
- Control
-
-
- 114, 6
-
-
- 117, 22
-
-
- Default
-
-
- 127, 22
-
-
- Inverted
-
-
- 127, 22
-
-
- Inverted X
-
-
- 127, 22
-
-
- Inverted Y
-
-
- 117, 22
-
-
- Dpad
-
-
- 127, 22
-
-
- Inverted
-
-
- 127, 22
-
-
- Inverted X
-
-
- 127, 22
-
-
- Inverted Y
-
-
- 117, 22
-
-
- Left Stick
-
-
- 127, 22
-
-
- Inverted
-
-
- 127, 22
-
-
- Inverted X
-
-
- 127, 22
-
-
- Inverted Y
-
-
- 117, 22
-
-
- Right Stick
-
-
- 117, 22
-
-
- Face Buttons
-
-
- 147, 22
-
-
- w/ Scan Code
-
-
- False
-
-
- 117, 22
-
-
- WASD
-
-
- 147, 22
-
-
- w/ Scan Code
-
-
- 117, 22
-
-
- Arrow Keys
-
-
- 127, 22
-
-
- Inverted
-
-
- 127, 22
-
-
- Inverted X
-
-
- 127, 22
-
-
- Inverted Y
-
-
- 117, 22
-
-
- Mouse
-
118, 208
@@ -1845,6 +1983,153 @@
0
+
+ False
+
+
+ 117, 22
+
+
+ Control
+
+
+ 114, 6
+
+
+ 117, 22
+
+
+ Default
+
+
+ 117, 22
+
+
+ Dpad
+
+
+ 127, 22
+
+
+ Inverted
+
+
+ 127, 22
+
+
+ Inverted X
+
+
+ 127, 22
+
+
+ Inverted Y
+
+
+ 117, 22
+
+
+ Left Stick
+
+
+ 127, 22
+
+
+ Inverted
+
+
+ 127, 22
+
+
+ Inverted X
+
+
+ 127, 22
+
+
+ Inverted Y
+
+
+ 117, 22
+
+
+ Right Stick
+
+
+ 127, 22
+
+
+ Inverted
+
+
+ 127, 22
+
+
+ Inverted X
+
+
+ 127, 22
+
+
+ Inverted Y
+
+
+ 117, 22
+
+
+ Face Buttons
+
+
+ False
+
+
+ 117, 22
+
+
+ WASD
+
+
+ 147, 22
+
+
+ w/ Scan Code
+
+
+ 117, 22
+
+
+ Arrow Keys
+
+
+ 147, 22
+
+
+ w/ Scan Code
+
+
+ 117, 22
+
+
+ Mouse
+
+
+ 127, 22
+
+
+ Inverted
+
+
+ 127, 22
+
+
+ Inverted X
+
+
+ 127, 22
+
+
+ Inverted Y
+
NoControl
@@ -2067,50 +2352,200 @@
7
-
- 6, 40
+
+ OutContTypeCb
-
- 260, 148
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 256
+
+ gBOther
-
- fLPTouchSwipe
+
+ 0
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ outcontLb
-
- gBTouchpad
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ gBOther
+
+
+ 1
+
+
+ btPollRateLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 2
+
+
+ btPollRateComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
3
-
- 2, 259
+
+ enableTouchToggleCheckbox
-
- 270, 190
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 246
+
+ gBOther
-
- Touchpad
+
+ 4
-
- gBTouchpad
+
+ cBDinput
-
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 5
+
+
+ pBProgram
+
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 6
+
+
+ cBLaunchProgram
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 7
+
+
+ btnBrowse
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 8
+
+
+ lbUseController
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 9
+
+
+ cBMouseAccel
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 10
+
+
+ nUDSixaxis
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 11
+
+
+ cBControllerInput
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 12
+
+
+ cBIdleDisconnect
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBOther
+
+
+ 14
+
+
+ 281, 243
+
+
+ 3, 1, 3, 1
+
+
+ 272, 247
+
+
+ 247
+
+
+ Other
+
+
+ gBOther
+
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tPControls
+
+ fLPSettings
-
- 1
+
+ 5
Xbox 360
@@ -2592,32 +3027,149 @@
14
-
- 281, 243
+
+ btnRainbow
-
- 3, 1, 3, 1
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 272, 247
+
+ gBLightbar
-
+
+ 0
+
+
+ lbRainbowB
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 1
+
+
+ nUDRainbowB
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 2
+
+
+ cBFlashType
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 3
+
+
+ cBWhileCharging
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 4
+
+
+ btnFlashColor
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 5
+
+
+ btnChargingColor
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 6
+
+
+ lbWhileCharging
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 7
+
+
+ lbPercentFlashBar
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 8
+
+
+ nUDflashLED
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBLightbar
+
+
+ 9
+
+
+ 3, 3
+
+
+ 272, 233
+
+
247
-
- Other
+
+ Lightbar
-
- gBOther
+
+ gBLightbar
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
fLPSettings
-
- 5
+
+ 0
NoControl
@@ -2904,29 +3456,53 @@
9
-
- 3, 3
+
+ lbPercentRumble
-
- 272, 233
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ gBRumble
+
+
+ 0
+
+
+ btnRumbleLightTest
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBRumble
+
+
+ 1
+
+
+ 281, 3
+
+
+ 272, 46
+
+
247
-
- Lightbar
+
+ Rumble
-
- gBLightbar
+
+ gBRumble
-
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
fLPSettings
-
- 0
+
+ 2
True
@@ -2985,30 +3561,6 @@
1
-
- 281, 3
-
-
- 272, 46
-
-
- 247
-
-
- Rumble
-
-
- gBRumble
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 2
-
True
@@ -3117,6 +3669,225 @@
153, 17
+
+ pnlSATrack
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 0
+
+
+ lbL2Track
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 1
+
+
+ lbRSTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 2
+
+
+ lbInputDelay
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 3
+
+
+ lbR2Track
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 4
+
+
+ lbLSTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 5
+
+
+ lbSATip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 6
+
+
+ tBR2
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 7
+
+
+ tBL2
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 8
+
+
+ pnlSixaxis
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 9
+
+
+ pnlLSTrack
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 10
+
+
+ pnlRSTrack
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 11
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 438, 485
+
+
+ 2
+
+
+ Controller Readings
+
+
+ lbL2TrackS
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCControls
+
+
+ 2
+
+
+ btnSATrack
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSATrack
+
+
+ 0
+
+
+ btnSATrackS
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSATrack
+
+
+ 1
+
+
+ 300, 88
+
+
+ 2, 2, 2, 2
+
+
+ 125, 125
+
+
+ 252
+
+
+ pnlSATrack
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 0
+
False
@@ -3180,30 +3951,6 @@
1
-
- 300, 88
-
-
- 2, 2, 2, 2
-
-
- 125, 125
-
-
- 252
-
-
- pnlSATrack
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- lbL2TrackS
-
-
- 0
-
True
@@ -3468,6 +4215,123 @@
8
+
+ tBsixaxisAccelX
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 0
+
+
+ lb6Accel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 1
+
+
+ tBsixaxisGyroX
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 2
+
+
+ lb6Gryo
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 3
+
+
+ tBsixaxisGyroY
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 4
+
+
+ tBsixaxisGyroZ
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 5
+
+
+ tBsixaxisAccelY
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 6
+
+
+ tBsixaxisAccelZ
+
+
+ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSixaxis
+
+
+ 7
+
+
+ 300, 233
+
+
+ 125, 125
+
+
+ 236
+
+
+ pnlSixaxis
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lbL2TrackS
+
+
+ 9
+
False
@@ -3690,26 +4554,53 @@
7
-
- 300, 233
+
+ btnLSTrack
-
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlLSTrack
+
+
+ 0
+
+
+ btnLSTrackS
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlLSTrack
+
+
+ 1
+
+
+ 5, 88
+
+
+ 2, 2, 2, 2
+
+
125, 125
-
- 236
+
+ 250
-
- pnlSixaxis
+
+ pnlLSTrack
-
+
System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
lbL2TrackS
-
- 9
+
+ 10
False
@@ -3774,29 +4665,53 @@
1
-
- 5, 88
+
+ btnRSTrackS
-
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlRSTrack
+
+
+ 0
+
+
+ btnRSTrack
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlRSTrack
+
+
+ 1
+
+
+ 151, 88
+
+
2, 2, 2, 2
-
+
125, 125
-
- 250
+
+ 251
-
- pnlLSTrack
+
+ pnlRSTrack
-
+
System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
lbL2TrackS
-
- 10
+
+ 11
False
@@ -3861,56 +4776,182 @@
1
-
- 151, 88
+
+ bnGyroZN
-
- 2, 2, 2, 2
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 125, 125
+
+ fLPTiltControls
-
- 251
+
+ 0
-
- pnlRSTrack
+
+ lbGyroZN
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- lbL2TrackS
+
+ fLPTiltControls
-
+
+ 1
+
+
+ bnGyroZP
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 2
+
+
+ lbGyroZP
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 3
+
+
+ bnGyroXP
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 4
+
+
+ lbGyroXP
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 5
+
+
+ bnGyroXN
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 6
+
+
+ lbGyroXN
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 7
+
+
+ lblSteeringWheelEmulationAxis
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 8
+
+
+ cBSteeringWheelEmulationAxis
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 9
+
+
+ lblSteeringWheelEmulationRange
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
+ 10
+
+
+ cBSteeringWheelEmulationRange
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPTiltControls
+
+
11
-
- 4, 22
+
+ btnSteeringWheelEmulationCalibrate
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 438, 485
+
+ fLPTiltControls
-
- 2
+
+ 12
-
- Controller Readings
+
+ 6, 47
-
- lbL2TrackS
+
+ 271, 195
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 254
-
- tCControls
+
+ fLPTiltControls
-
- 2
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 3
NoControl
@@ -4326,27 +5367,6 @@
12
-
- 6, 47
-
-
- 271, 195
-
-
- 254
-
-
- fLPTiltControls
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBGyro
-
-
- 3
-
True
@@ -4420,7 +5440,7 @@
No
- 188, 17
+ 151, 17
276
@@ -4440,6 +5460,33 @@
2
+
+ True
+
+
+ 160, 32
+
+
+ 59, 17
+
+
+ 279
+
+
+ Toggle
+
+
+ gyroMStickToggleCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 3
+
True
@@ -4465,7 +5512,7 @@
gyroMouseJoyFLP
- 3
+ 4
73, 55
@@ -4486,7 +5533,7 @@
gyroMouseJoyFLP
- 4
+ 5
True
@@ -4513,7 +5560,7 @@
gyroMouseJoyFLP
- 5
+ 6
184, 55
@@ -4534,7 +5581,7 @@
gyroMouseJoyFLP
- 6
+ 7
True
@@ -4561,7 +5608,7 @@
gyroMouseJoyFLP
- 7
+ 8
70, 81
@@ -4582,7 +5629,7 @@
gyroMouseJoyFLP
- 8
+ 9
True
@@ -4609,7 +5656,7 @@
gyroMouseJoyFLP
- 9
+ 10
193, 81
@@ -4630,7 +5677,7 @@
gyroMouseJoyFLP
- 10
+ 11
True
@@ -4660,7 +5707,7 @@
gyroMouseJoyFLP
- 11
+ 12
And
@@ -4687,7 +5734,7 @@
gyroMouseJoyFLP
- 12
+ 13
True
@@ -4714,7 +5761,7 @@
gyroMouseJoyFLP
- 13
+ 14
Yaw
@@ -4741,7 +5788,7 @@
gyroMouseJoyFLP
- 14
+ 15
True
@@ -4771,7 +5818,7 @@
gyroMouseJoyFLP
- 15
+ 16
True
@@ -4801,7 +5848,7 @@
gyroMouseJoyFLP
- 16
+ 17
8, 47
@@ -4824,9 +5871,120 @@
0
+
+ tPControls
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCControls
+
+
+ 0
+
+
+ tPSpecial
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCControls
+
+
+ 1
+
+
+ Left
+
+
+ 0, 0
+
+
+ 446, 511
+
+
+ 253
+
+
+ tCControls
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
True
+
+ lBControls
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPControls
+
+
+ 0
+
+
+ lbControlTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPControls
+
+
+ 2
+
+
+ pnlController
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPControls
+
+
+ 3
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 438, 485
+
+
+ 0
+
+
+ Controls
+
+
+ tPControls
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCControls
+
+
+ 0
+
Top, Bottom, Left
@@ -4986,6 +6144,654 @@
Zoom
+
+ pBHoveredButton
+
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 0
+
+
+ lbLRS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 1
+
+
+ lbLLS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 2
+
+
+ bnRSDown
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 3
+
+
+ lbLTouchUpper
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 4
+
+
+ lbLTouchRight
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 5
+
+
+ bnL3
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 6
+
+
+ lbLTouchLM
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 7
+
+
+ bnRSUp
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 8
+
+
+ lbLR2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 9
+
+
+ bnRSRight
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 10
+
+
+ lbLL2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 11
+
+
+ bnR3
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 12
+
+
+ lbLR1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 13
+
+
+ bnRSLeft
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 14
+
+
+ lbLL1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 15
+
+
+ bnLSLeft
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 16
+
+
+ lbLPS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 17
+
+
+ bnLSUp
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 18
+
+
+ lbLLeft
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 19
+
+
+ bnLSRight
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 20
+
+
+ lbLright
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 21
+
+
+ bnLSDown
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 22
+
+
+ lbLDown
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 23
+
+
+ bnR2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 24
+
+
+ bnUp
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 25
+
+
+ bnDown
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 26
+
+
+ bnTriangle
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 27
+
+
+ bnR1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 28
+
+
+ bnSquare
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 29
+
+
+ bnRight
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 30
+
+
+ lbLUp
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 31
+
+
+ bnLeft
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 32
+
+
+ lbLShare
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 33
+
+
+ bnOptions
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 34
+
+
+ bnShare
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 35
+
+
+ lbLOptions
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 36
+
+
+ bnL1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 37
+
+
+ bnTouchRight
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 38
+
+
+ bnL2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 39
+
+
+ lbLTriangle
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 40
+
+
+ bnTouchLeft
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 41
+
+
+ lbLSquare
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 42
+
+
+ bnTouchMulti
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 43
+
+
+ lbLCircle
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 44
+
+
+ lbLCross
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 45
+
+
+ bnTouchUpper
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 46
+
+
+ btnLightbar
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 47
+
+
+ bnPS
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 48
+
+
+ bnCross
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 49
+
+
+ bnCircle
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 50
+
+
+ lbControlName
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlController
+
+
+ 51
+
+
+ 2, 2
+
+
+ 2, 2, 2, 2
+
+
+ 422, 230
+
+
+ 282
+
+
+ pnlController
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPControls
+
+
+ 3
+
False
@@ -6636,74 +8442,89 @@
51
-
- 2, 2
+
+ pnlActions
-
- 2, 2, 2, 2
-
-
- 422, 230
-
-
- 282
-
-
- pnlController
-
-
+
System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tPControls
+
+ tPSpecial
-
- 3
+
+ 0
-
+
4, 22
-
- 3, 3, 3, 3
-
-
+
438, 485
-
- 0
+
+ 3
-
- Controls
+
+ Special Actions
-
- tPControls
+
+ tPSpecial
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCControls
-
+
+ 1
+
+
+ lVActions
+
+
+ System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlActions
+
+
0
-
- Name
+
+ panel2
-
- 140
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Trigger
+
+ pnlActions
-
- 105
+
+ 1
-
- Action
+
+ Fill
-
- 100
+
+ 0, 0
+
+
+ 438, 485
+
+
+ 15
+
+
+ pnlActions
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPSpecial
+
+
+ 0
Fill
@@ -6729,6 +8550,135 @@
0
+
+ Name
+
+
+ 140
+
+
+ Trigger
+
+
+ 105
+
+
+ Action
+
+
+ 100
+
+
+ fLPActionButtons
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 0
+
+
+ lbActionsTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 1
+
+
+ Top
+
+
+ 0, 0
+
+
+ 2, 2, 2, 2
+
+
+ 438, 66
+
+
+ 16
+
+
+ panel2
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlActions
+
+
+ 1
+
+
+ btnNewAction
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPActionButtons
+
+
+ 0
+
+
+ btnEditAction
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPActionButtons
+
+
+ 1
+
+
+ btnRemAction
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPActionButtons
+
+
+ 2
+
+
+ Fill
+
+
+ 0, 28
+
+
+ 438, 38
+
+
+ 15
+
+
+ fLPActionButtons
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 0
+
NoControl
@@ -6810,30 +8760,6 @@
2
-
- Fill
-
-
- 0, 28
-
-
- 438, 38
-
-
- 15
-
-
- fLPActionButtons
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel2
-
-
- 0
-
Top
@@ -6867,104 +8793,110 @@
1
-
- Top
+
+ tPDeadzone
-
- 0, 0
-
-
- 2, 2, 2, 2
-
-
- 438, 66
-
-
- 16
-
-
- panel2
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- pnlActions
-
-
- 1
-
-
- Fill
-
-
- 0, 0
-
-
- 438, 485
-
-
- 15
-
-
- pnlActions
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPSpecial
-
-
- 0
-
-
- 4, 22
-
-
- 438, 485
-
-
- 3
-
-
- Special Actions
-
-
- tPSpecial
-
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tCControls
+
+ tCSens
-
+
+ 0
+
+
+ antiDeadzoneTabPage
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
1
-
- Left
+
+ maxZoneTabPage
-
- 0, 0
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 446, 511
+
+ tCSens
-
- 253
+
+ 2
-
- tCControls
+
+ squStickTabPage
-
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 3
+
+
+ tPOutCurve
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 4
+
+
+ tPCurve
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 5
+
+
+ tpRotation
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 6
+
+
+ 281, 55
+
+
+ 272, 106
+
+
+ 234
+
+
+ tCSens
+
+
System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- $this
+
+ fLPSettings
-
- 4
+
+ 3
4, 22
@@ -6993,6 +8925,177 @@
0
+
+ nUDSixaxisZAntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 0
+
+
+ nUDSixaxisXAntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 1
+
+
+ label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 2
+
+
+ label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 3
+
+
+ nUDR2AntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 4
+
+
+ label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 5
+
+
+ nUDL2AntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 6
+
+
+ label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 7
+
+
+ nUDRSAntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 8
+
+
+ label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 9
+
+
+ nUDLSAntiDead
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 10
+
+
+ label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ antiDeadzoneTabPage
+
+
+ 11
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 2
+
+
+ Anti-Deadzone
+
+
+ antiDeadzoneTabPage
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 1
+
214, 29
@@ -7299,32 +9402,176 @@
11
-
- 4, 22
+
+ nUDSixAxisZMaxZone
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 264, 80
+
+ maxZoneTabPage
-
+
+ 0
+
+
+ nUDSixAxisXMaxZone
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 1
+
+
+ label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
2
-
- Anti-Deadzone
+
+ label17
-
- antiDeadzoneTabPage
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ maxZoneTabPage
+
+
+ 3
+
+
+ nUDR2Maxzone
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 4
+
+
+ nUDL2Maxzone
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 5
+
+
+ label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 6
+
+
+ label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 7
+
+
+ nUDRSMaxZone
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 8
+
+
+ label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 9
+
+
+ nUDLSMaxZone
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 10
+
+
+ label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ maxZoneTabPage
+
+
+ 11
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 3
+
+
+ Max Zone
+
+
+ maxZoneTabPage
+
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCSens
-
- 1
+
+ 2
220, 29
@@ -7632,32 +9879,80 @@
11
-
- 4, 22
+
+ RoundnessNUpDown
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 264, 80
+
+ squStickTabPage
-
+
+ 0
+
+
+ label28
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 1
+
+
+ rsSquStickCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 2
+
+
+ lsSquStickCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
3
-
- Max Zone
+
+ 4, 22
-
- maxZoneTabPage
+
+ 3, 3, 3, 3
-
+
+ 264, 80
+
+
+ 6
+
+
+ Square Stick
+
+
+ squStickTabPage
+
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCSens
-
- 2
+
+ 3
216, 17
@@ -7761,32 +10056,197 @@
3
-
- 4, 22
+
+ lbCurveEditorURL
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 264, 80
+
+ tPOutCurve
-
+
+ 0
+
+
+ tBCustomOutputCurve
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 1
+
+
+ cBSixaxisZOutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 2
+
+
+ cBSixaxisXOutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 3
+
+
+ label24
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 4
+
+
+ label23
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 5
+
+
+ cBR2OutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
6
-
- Square Stick
+
+ cBL2OutputCurve
-
- squStickTabPage
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ tPOutCurve
+
+
+ 7
+
+
+ label22
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 8
+
+
+ label21
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 9
+
+
+ rsOutCurveComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 10
+
+
+ lsOutCurveComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 11
+
+
+ label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 12
+
+
+ label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 13
+
+
+ 4, 22
+
+
+ 264, 80
+
+
+ 4
+
+
+ Output Curve
+
+
+ tPOutCurve
+
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCSens
-
- 3
+
+ 4
True
@@ -8274,29 +10734,104 @@
13
-
+
+ nUDLSCurve
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 0
+
+
+ nUDRSCurve
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 1
+
+
+ lbRSCurve
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 2
+
+
+ lbRSCurvePercent
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 3
+
+
+ lbLSCurvePercent
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 4
+
+
+ lbLSCurve
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 5
+
+
4, 22
-
+
+ 3, 3, 3, 3
+
+
264, 80
-
- 4
+
+ 1
-
- Output Curve
+
+ Curve (Input)
-
- tPOutCurve
+
+ tPCurve
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCSens
-
- 4
+
+ 5
36, 16
@@ -8466,32 +11001,80 @@
5
-
- 4, 22
+
+ nUDRSRotation
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 264, 80
+
+ tpRotation
-
+
+ 0
+
+
+ label14
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
1
-
- Curve (Input)
+
+ nUDLSRotation
-
- tPCurve
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ tpRotation
+
+
+ 2
+
+
+ label13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
+ 3
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 5
+
+
+ Rotation
+
+
+ tpRotation
+
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
tCSens
-
- 5
+
+ 6
160, 21
@@ -8595,54 +11178,6 @@
3
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 264, 80
-
-
- 5
-
-
- Rotation
-
-
- tpRotation
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 6
-
-
- 281, 55
-
-
- 272, 106
-
-
- 234
-
-
- tCSens
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 3
-
True
@@ -8703,6 +11238,519 @@
2
+
+ toggleGyroMCb
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 0
+
+
+ label27
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 1
+
+
+ gyroMouseDzNUD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 2
+
+
+ label26
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 3
+
+
+ triggerCondAndCombo
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 4
+
+
+ cBGyroMouseXAxis
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 5
+
+
+ label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 6
+
+
+ lbGyroSmooth
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 7
+
+
+ cBGyroSmooth
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 8
+
+
+ lbSmoothWeight
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 9
+
+
+ nUDGyroSmoothWeight
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 10
+
+
+ label12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 11
+
+
+ nUDGyroMouseVertScale
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 12
+
+
+ label11
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 13
+
+
+ gyroTriggerBehavior
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 14
+
+
+ cBGyroInvertY
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 15
+
+
+ cBGyroInvertX
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 16
+
+
+ lbGyroInvert
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 17
+
+
+ lbGyroTriggers
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 18
+
+
+ btnGyroTriggers
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 19
+
+
+ nUDGyroSensitivity
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 20
+
+
+ lbGyroSens
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlSAMouse
+
+
+ 21
+
+
+ 4, 47
+
+
+ 2, 2, 2, 2
+
+
+ 263, 222
+
+
+ 259
+
+
+ pnlSAMouse
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 4
+
+
+ 3, 242
+
+
+ 272, 256
+
+
+ 248
+
+
+ Gyro
+
+
+ gBGyro
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 1
+
+
+ lbL2S
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 0
+
+
+ nUDL2S
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 1
+
+
+ nUDLSS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 2
+
+
+ lbSixaxisXS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 3
+
+
+ nUDR2S
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 4
+
+
+ lbSixaxisZS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 5
+
+
+ nUDRSS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 6
+
+
+ lbR2LS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 7
+
+
+ nUDSXS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 8
+
+
+ lbRSS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 9
+
+
+ lbLSS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 10
+
+
+ nUDSZS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 11
+
+
+ 281, 165
+
+
+ 3, 1, 3, 1
+
+
+ 272, 76
+
+
+ 257
+
+
+ Sensitivity
+
+
+ gBSensitivity
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 4
+
+
+ Fill
+
+
+ TopDown
+
+
+ 446, 0
+
+
+ 2, 2, 2, 2
+
+
+ 565, 511
+
+
+ 254
+
+
+ fLPSettings
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
True
@@ -9339,54 +12387,6 @@
21
-
- 4, 47
-
-
- 2, 2, 2, 2
-
-
- 263, 222
-
-
- 259
-
-
- pnlSAMouse
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBGyro
-
-
- 4
-
-
- 3, 242
-
-
- 272, 256
-
-
- 248
-
-
- Gyro
-
-
- gBGyro
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 1
-
True
@@ -9705,66 +12705,18 @@
11
-
- 281, 165
-
-
- 3, 1, 3, 1
-
-
- 272, 76
-
-
- 257
-
-
- Sensitivity
-
-
- gBSensitivity
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 4
-
-
- Fill
-
-
- TopDown
-
-
- 446, 0
-
-
- 2, 2, 2, 2
-
-
- 565, 511
-
-
- 254
-
-
- fLPSettings
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 3
-
482, 17
+
+ 195, 444
+
+
+ cMGyroTriggers
+
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
194, 22
@@ -9885,18 +12837,18 @@
Always on
-
- 195, 444
-
-
- cMGyroTriggers
-
-
- System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
625, 18
+
+ 195, 422
+
+
+ cMTouchDisableInvert
+
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
194, 22
@@ -10011,15 +12963,6 @@
PS
-
- 195, 422
-
-
- cMTouchDisableInvert
-
-
- System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
True