From d0886879fbd50c872d53a95cd73226156babbb63 Mon Sep 17 00:00:00 2001 From: jays2kings Date: Thu, 20 Nov 2014 14:03:18 -0500 Subject: [PATCH] Version 1.4.157 Experimental: Quick Charge controller by turning off BT when plugged via USB Settings a deadzone of .10+ to the sticks or higher now affects the mouse movement as well Use DS4 for Mapping checkbox now remembers how it was last set Fix for starting minimized showing up in task manager and alt+tab, this also more reliably starts minimized --- DS4Control/Mapping.cs | 15 +- DS4Control/Properties/Resources.Designer.cs | 2 +- DS4Control/ScpUtil.cs | 26 +- DS4Library/DS4Device.cs | 4 + DS4Tool/DS4Form.Designer.cs | 14 + DS4Tool/DS4Form.cs | 88 +- DS4Tool/DS4Form.resx | 47 +- DS4Tool/Options.Designer.cs | 368 +- DS4Tool/Options.cs | 8 + DS4Tool/Options.resx | 9310 +++++++++---------- DS4Tool/Program.cs | 1 + DS4Tool/Properties/AssemblyInfo.cs | 4 +- DS4Tool/Properties/Resources.resx | 3 + DS4Tool/Properties/Resources1.Designer.cs | 9 + 14 files changed, 5020 insertions(+), 4879 deletions(-) diff --git a/DS4Control/Mapping.cs b/DS4Control/Mapping.cs index 2b867d2d3f..d1cbab8533 100644 --- a/DS4Control/Mapping.cs +++ b/DS4Control/Mapping.cs @@ -1347,14 +1347,15 @@ private static int getMouseMapping(int device, DS4Controls control, DS4State cSt int controlnum = DS4ControltoInt(control); double SXD = Global.getSXDeadzone(device); double SZD = Global.getSZDeadzone(device); - int deadzone = 10; + int deadzoneL = Math.Max((byte)10, Global.getLSDeadzone(device)); + int deadzoneR = Math.Max((byte)10, Global.getRSDeadzone(device)); double value = 0; int speed = Global.getButtonMouseSensitivity(device)+15; double root = 1.002; double divide = 10000d; DateTime now = mousenow[mnum]; - bool leftsitcklive = ((cState.LX < 127 - deadzone || 127 + deadzone < cState.LX) || (cState.LY < 127 - deadzone || 127 + deadzone < cState.LY)); - bool rightsitcklive = ((cState.RX < 127 - deadzone || 127 + deadzone < cState.RX) || (cState.RY < 127 - deadzone || 127 + deadzone < cState.RY)); + bool leftsitcklive = ((cState.LX < 127 - deadzoneL || 127 + deadzoneL < cState.LX) || (cState.LY < 127 - deadzoneL || 127 + deadzoneL < cState.LY)); + bool rightsitcklive = ((cState.RX < 127 - deadzoneR || 127 + deadzoneR < cState.RX) || (cState.RY < 127 - deadzoneR || 127 + deadzoneR < cState.RY)); switch (control) { case DS4Controls.LXNeg: @@ -1419,10 +1420,10 @@ private static int getMouseMapping(int device, DS4Controls control, DS4State cSt case DS4Controls.GyroZNeg: return (byte)(eState.GyroZ < -SZD * 7500 ? Math.Pow(root + speed / divide, -eState.GyroZ / 62) : 0); } - bool LXChanged = (Math.Abs(127 - cState.LX) < deadzone); - bool LYChanged = (Math.Abs(127 - cState.LY) < deadzone); - bool RXChanged = (Math.Abs(127 - cState.RX) < deadzone); - bool RYChanged = (Math.Abs(127 - cState.RY) < deadzone); + bool LXChanged = (Math.Abs(127 - cState.LX) < deadzoneL); + bool LYChanged = (Math.Abs(127 - cState.LY) < deadzoneL); + bool RXChanged = (Math.Abs(127 - cState.RX) < deadzoneR); + bool RYChanged = (Math.Abs(127 - cState.RY) < deadzoneR); if (LXChanged || LYChanged || RXChanged || RYChanged) now = DateTime.UtcNow; if (Global.getMouseAccel(device)) diff --git a/DS4Control/Properties/Resources.Designer.cs b/DS4Control/Properties/Resources.Designer.cs index f8d6e40ef4..138b2a80b5 100644 --- a/DS4Control/Properties/Resources.Designer.cs +++ b/DS4Control/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/DS4Control/ScpUtil.cs b/DS4Control/ScpUtil.cs index f2aa1e9925..bc1b551b07 100644 --- a/DS4Control/ScpUtil.cs +++ b/DS4Control/ScpUtil.cs @@ -315,7 +315,22 @@ public static bool getSwipeProfiles() { return m_Config.swipeProfiles; } - // New settings + public static void setDS4Mapping(bool data) + { + m_Config.ds4Mapping = data; + } + public static bool getDS4Mapping() + { + return m_Config.ds4Mapping; + } + public static void setQuickCharge(bool data) + { + m_Config.quickCharge = data; + } + public static bool getQuickCharge() + { + return m_Config.quickCharge; + } public static void saveLowColor(int device, byte red, byte green, byte blue) { m_Config.m_LowLeds[device][0] = red; @@ -792,6 +807,8 @@ public class BackingStore public bool notifications = true; public bool disconnectBTAtStop = false; public bool swipeProfiles = true; + public bool ds4Mapping = true; + public bool quickCharge = false; public Dictionary[] customMapKeyTypes = { null, null, null, null, null }; public Dictionary[] customMapKeys = { null, null, null, null, null }; public Dictionary[] customMapMacros = { null, null, null, null, null }; @@ -1662,7 +1679,6 @@ public bool Load() m_Xdoc.Load(m_Profile); - try { Item = m_Xdoc.SelectSingleNode("/Profile/useExclusiveMode"); Boolean.TryParse(Item.InnerText, out useExclusiveMode); } catch { missingSetting = true; } try { Item = m_Xdoc.SelectSingleNode("/Profile/startMinimized"); Boolean.TryParse(Item.InnerText, out startMinimized); } @@ -1689,6 +1705,10 @@ public bool Load() catch { missingSetting = true; } try { Item = m_Xdoc.SelectSingleNode("/Profile/SwipeProfiles"); Boolean.TryParse(Item.InnerText, out swipeProfiles); } catch { missingSetting = true; } + try { Item = m_Xdoc.SelectSingleNode("/Profile/UseDS4ForMapping"); Boolean.TryParse(Item.InnerText, out ds4Mapping); } + catch { missingSetting = true; } + try { Item = m_Xdoc.SelectSingleNode("/Profile/QuickCharge"); Boolean.TryParse(Item.InnerText, out quickCharge); } + catch { missingSetting = true; } } } catch { } @@ -1731,6 +1751,8 @@ public bool Save() XmlNode xmlNotifications = m_Xdoc.CreateNode(XmlNodeType.Element, "Notifications", null); xmlNotifications.InnerText = notifications.ToString(); Node.AppendChild(xmlNotifications); XmlNode xmlDisconnectBT = m_Xdoc.CreateNode(XmlNodeType.Element, "DisconnectBTAtStop", null); xmlDisconnectBT.InnerText = disconnectBTAtStop.ToString(); Node.AppendChild(xmlDisconnectBT); XmlNode xmlSwipeProfiles = m_Xdoc.CreateNode(XmlNodeType.Element, "SwipeProfiles", null); xmlSwipeProfiles.InnerText = swipeProfiles.ToString(); Node.AppendChild(xmlSwipeProfiles); + XmlNode xmlDS4Mapping = m_Xdoc.CreateNode(XmlNodeType.Element, "UseDS4ForMapping", null); xmlDS4Mapping.InnerText = ds4Mapping.ToString(); Node.AppendChild(xmlDS4Mapping); + XmlNode xmlQuickCharge = m_Xdoc.CreateNode(XmlNodeType.Element, "QuickCharge", null); xmlQuickCharge.InnerText = quickCharge.ToString(); Node.AppendChild(xmlQuickCharge); m_Xdoc.AppendChild(Node); try { m_Xdoc.Save(m_Profile); } diff --git a/DS4Library/DS4Device.cs b/DS4Library/DS4Device.cs index f50fe31938..3bac5ecbfa 100644 --- a/DS4Library/DS4Device.cs +++ b/DS4Library/DS4Device.cs @@ -512,7 +512,11 @@ private void sendOutputReport(bool synchronous) try { if (!writeOutput()) + { Console.WriteLine(MacAddress.ToString() + " " + System.DateTime.UtcNow.ToString("o") + "> encountered synchronous write failure: " + Marshal.GetLastWin32Error()); + ds4Output.Abort(); + ds4Output.Join(); + } } catch { diff --git a/DS4Tool/DS4Form.Designer.cs b/DS4Tool/DS4Form.Designer.cs index ea7ca9b935..9f4b48d615 100644 --- a/DS4Tool/DS4Form.Designer.cs +++ b/DS4Tool/DS4Form.Designer.cs @@ -120,6 +120,7 @@ private void InitializeComponent() this.nUDUpdateTime = new System.Windows.Forms.NumericUpDown(); this.cBNotifications = new System.Windows.Forms.CheckBox(); this.cBDisconnectBT = new System.Windows.Forms.CheckBox(); + this.cBQuickCharge = new System.Windows.Forms.CheckBox(); this.linkProfiles = new System.Windows.Forms.LinkLabel(); this.lLBUpdate = new System.Windows.Forms.LinkLabel(); this.linkSetup = new System.Windows.Forms.LinkLabel(); @@ -362,11 +363,13 @@ private void InitializeComponent() // resources.ApplyResources(this.lbPad1, "lbPad1"); this.lbPad1.Name = "lbPad1"; + this.lbPad1.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // lbPad2 // resources.ApplyResources(this.lbPad2, "lbPad2"); this.lbPad2.Name = "lbPad2"; + this.lbPad2.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // bnEditC3 // @@ -388,11 +391,13 @@ private void InitializeComponent() // resources.ApplyResources(this.lbPad3, "lbPad3"); this.lbPad3.Name = "lbPad3"; + this.lbPad3.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // lbPad4 // resources.ApplyResources(this.lbPad4, "lbPad4"); this.lbPad4.Name = "lbPad4"; + this.lbPad4.TextChanged += new System.EventHandler(this.lbPad1_TextChanged); // // cBController1 // @@ -743,6 +748,7 @@ private void InitializeComponent() this.flowLayoutPanel1.Controls.Add(this.pNUpdate); this.flowLayoutPanel1.Controls.Add(this.cBNotifications); this.flowLayoutPanel1.Controls.Add(this.cBDisconnectBT); + this.flowLayoutPanel1.Controls.Add(this.cBQuickCharge); this.flowLayoutPanel1.Controls.Add(this.linkProfiles); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Controls.Add(this.linkSetup); @@ -836,6 +842,13 @@ private void InitializeComponent() this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); // + // cBQuickCharge + // + resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); + this.cBQuickCharge.Name = "cBQuickCharge"; + this.cBQuickCharge.UseVisualStyleBackColor = true; + this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); + // // linkProfiles // resources.ApplyResources(this.linkProfiles, "linkProfiles"); @@ -1024,6 +1037,7 @@ private void InitializeComponent() private System.Windows.Forms.CheckBox cBSwipeProfiles; private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem; public System.Windows.Forms.Label lbLastMessage; + private System.Windows.Forms.CheckBox cBQuickCharge; //private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; } } diff --git a/DS4Tool/DS4Form.cs b/DS4Tool/DS4Form.cs index f533db8fe9..0fde713d1a 100644 --- a/DS4Tool/DS4Form.cs +++ b/DS4Tool/DS4Form.cs @@ -14,6 +14,7 @@ using System.Xml; using System.Text; using System.Globalization; +using System.Threading.Tasks; namespace DS4Windows { public partial class DS4Form : Form @@ -48,20 +49,7 @@ public partial class DS4Form : Form ToolTip tt = new ToolTip(); public String m_Profile = Directory.GetParent(Assembly.GetExecutingAssembly().Location).FullName + "\\Profiles.xml"; protected XmlDocument m_Xdoc = new XmlDocument(); - - protected void SetupArrays() - { - Pads = new Label[4] { lbPad1, lbPad2, lbPad3, lbPad4 }; - Batteries = new Label[4] { lBBatt1, lBBatt2, lBBatt3, lBBatt4 }; - cbs = new ComboBox[4] { cBController1, cBController2, cBController3, cBController4 }; - ebns = new Button[4] { bnEditC1, bnEditC2, bnEditC3, bnEditC4 }; - statPB = new PictureBox[4] { pBStatus1, pBStatus2, pBStatus3, pBStatus4 }; - - shortcuts = new ToolStripMenuItem[4] { (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[0], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[1], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[2], - (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[3] }; - } + public bool mAllowVisible; [DllImport("user32.dll")] private static extern IntPtr GetForegroundWindow(); @@ -86,12 +74,22 @@ public DS4Form(string[] args) InitializeComponent(); arguements = args; ThemeUtil.SetTheme(lvDebug); - SetupArrays(); + Pads = new Label[4] { lbPad1, lbPad2, lbPad3, lbPad4 }; + Batteries = new Label[4] { lBBatt1, lBBatt2, lBBatt3, lBBatt4 }; + cbs = new ComboBox[4] { cBController1, cBController2, cBController3, cBController4 }; + ebns = new Button[4] { bnEditC1, bnEditC2, bnEditC3, bnEditC4 }; + statPB = new PictureBox[4] { pBStatus1, pBStatus2, pBStatus3, pBStatus4 }; + + shortcuts = new ToolStripMenuItem[4] { (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[0], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[1], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[2], + (ToolStripMenuItem)notifyIcon1.ContextMenuStrip.Items[3] }; SystemEvents.PowerModeChanged += OnPowerChange; tSOptions.Visible = false; if (File.Exists(appdatapath + "\\Profiles.xml")) tt.SetToolTip(linkUninstall, Properties.Resources.IfRemovingDS4Windows); tt.SetToolTip(cBSwipeProfiles, Properties.Resources.TwoFingerSwipe); + tt.SetToolTip(cBQuickCharge, Properties.Resources.QuickCharge); bool firstrun = false; if (File.Exists(exepath + "\\Auto Profiles.xml") && File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\DS4Tool\\Auto Profiles.xml")) @@ -177,14 +175,19 @@ public DS4Form(string[] args) hideDS4CheckBox.Checked = Global.getUseExclusiveMode(); hideDS4CheckBox.CheckedChanged += hideDS4CheckBox_CheckedChanged; cBDisconnectBT.Checked = Global.getDCBTatStop(); + cBQuickCharge.Checked = Global.getQuickCharge(); // New settings this.Width = Global.getFormWidth(); this.Height = Global.getFormHeight(); startMinimizedCheckBox.CheckedChanged -= startMinimizedCheckBox_CheckedChanged; startMinimizedCheckBox.Checked = Global.getStartMinimized(); startMinimizedCheckBox.CheckedChanged += startMinimizedCheckBox_CheckedChanged; - if (startMinimizedCheckBox.Checked) - this.WindowState = FormWindowState.Minimized; + if (!startMinimizedCheckBox.Checked) + { + mAllowVisible = true; + Show(); + } + //this.WindowState = FormWindowState.Minimized; Form_Resize(null, null); RefreshProfiles(); for (int i = 0; i < 4; i++) @@ -241,6 +244,30 @@ public DS4Form(string[] args) StartWindowsCheckBox.Checked = File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk"); } + + protected override void SetVisibleCore(bool value) + { + if (!mAllowVisible) + { + value = false; + if (!this.IsHandleCreated) CreateHandle(); + } + base.SetVisibleCore(value); + } + + private void showToolStripMenuItem_Click(object sender, EventArgs e) + { + mAllowVisible = true; + Show(); + } + + /*private void exitToolStripMenuItem_Click(object sender, EventArgs e) + { + mAllowClose = mAllowVisible = true; + if (!mLoadFired) Show(); + Close(); + }*/ + public static string GetTopWindowName() { IntPtr hWnd = GetForegroundWindow(); @@ -559,6 +586,7 @@ protected void Form_Resize(object sender, EventArgs e) else if (FormWindowState.Normal == this.WindowState) { + //mAllowVisible = true; this.Show(); this.ShowInTaskbar = true; this.FormBorderStyle = FormBorderStyle.Sizable; @@ -631,6 +659,12 @@ protected void ControllerStatusChanged() for (Int32 Index = 0; Index < Pads.Length; Index++) { Pads[Index].Text = rootHub.getDS4MacAddress(Index); + DS4Device d = rootHub.DS4Controllers[Index]; + if (d != null && Global.getQuickCharge() && d.ConnectionType == ConnectionType.BT && d.Charging) + { + d.DisconnectBT(); + return; + } switch (rootHub.getDS4Status(Index)) { case "USB": statPB[Index].Image = Properties.Resources.USB; tt.SetToolTip(statPB[Index], ""); break; @@ -672,10 +706,21 @@ protected void ControllerStatusChanged() private void pBStatus_MouseClick(object sender, MouseEventArgs e) { int i = Int32.Parse(((PictureBox)sender).Tag.ToString()); - if (e.Button == System.Windows.Forms.MouseButtons.Right && rootHub.getDS4Status(i) == "BT") + if (e.Button == System.Windows.Forms.MouseButtons.Right && rootHub.getDS4Status(i) == "BT" && !rootHub.DS4Controllers[i].Charging) rootHub.DS4Controllers[i].DisconnectBT(); } + private async void lbPad1_TextChanged(object sender, EventArgs e) + { + Label lb = ((Label)sender); + int i = int.Parse(lb.Name.Substring(lb.Name.Length-1)) - 1; + if (lb.Text == Properties.Resources.Disconnected && Pads[i].Enabled) + { + await Task.Delay(10); + Enable_Controls(i, false); + } + } + private void Enable_Controls(int device, bool on) { Pads[device].Enabled = on; @@ -975,6 +1020,7 @@ private void exitToolStripMenuItem_Click(object sender, EventArgs e) private void openToolStripMenuItem_Click(object sender, EventArgs e) { + mAllowVisible = true; this.Show(); WindowState = FormWindowState.Normal; } @@ -987,6 +1033,7 @@ private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) { if (e.Button == System.Windows.Forms.MouseButtons.Left) { + mAllowVisible = true; this.Show(); WindowState = FormWindowState.Normal; } @@ -1335,6 +1382,11 @@ private void cBSwipeProfiles_CheckedChanged(object sender, EventArgs e) Global.setSwipeProfiles(cBSwipeProfiles.Checked); } + private void cBQuickCharge_CheckedChanged(object sender, EventArgs e) + { + Global.setQuickCharge(cBQuickCharge.Checked); + } + private void lbLastMessage_MouseHover(object sender, EventArgs e) { tt.Show(lbLastMessage.Text, lbLastMessage, -3, -3); diff --git a/DS4Tool/DS4Form.resx b/DS4Tool/DS4Form.resx index 30094117b7..c293078db5 100644 --- a/DS4Tool/DS4Form.resx +++ b/DS4Tool/DS4Form.resx @@ -8252,11 +8252,38 @@ 7 + + True + + + 10, 199 + + + 91, 17 + + + 55 + + + Quick Charge + + + cBQuickCharge + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 8 + NoControl - 10, 196 + 10, 219 65, 13 @@ -8277,13 +8304,13 @@ flowLayoutPanel1 - 8 + 9 NoControl - 10, 209 + 10, 232 116, 13 @@ -8307,13 +8334,13 @@ flowLayoutPanel1 - 9 + 10 NoControl - 10, 222 + 10, 245 115, 13 @@ -8334,13 +8361,13 @@ flowLayoutPanel1 - 10 + 11 NoControl - 10, 235 + 10, 258 106, 13 @@ -8364,13 +8391,13 @@ flowLayoutPanel1 - 11 + 12 NoControl - 10, 248 + 10, 271 70, 13 @@ -8391,7 +8418,7 @@ flowLayoutPanel1 - 12 + 13 Fill diff --git a/DS4Tool/Options.Designer.cs b/DS4Tool/Options.Designer.cs index 2715864f49..fef3713036 100644 --- a/DS4Tool/Options.Designer.cs +++ b/DS4Tool/Options.Designer.cs @@ -88,15 +88,6 @@ private void InitializeComponent() this.cBControllerInput = new System.Windows.Forms.CheckBox(); this.cBIdleDisconnect = new System.Windows.Forms.CheckBox(); this.gBLightbar = new System.Windows.Forms.GroupBox(); - this.btnChargingColor = new System.Windows.Forms.Button(); - this.rBColor = new System.Windows.Forms.RadioButton(); - this.rBFade = new System.Windows.Forms.RadioButton(); - this.rBNormal = new System.Windows.Forms.RadioButton(); - this.rBRainbow = new System.Windows.Forms.RadioButton(); - this.lbWhileCharging = new System.Windows.Forms.Label(); - this.lbPercentFlashBar = new System.Windows.Forms.Label(); - this.nUDflashLED = new System.Windows.Forms.NumericUpDown(); - this.lbFlashAt = new System.Windows.Forms.Label(); this.pnlShift = new System.Windows.Forms.Panel(); this.cBShiftLight = new System.Windows.Forms.CheckBox(); this.lbShift = new System.Windows.Forms.Label(); @@ -106,6 +97,15 @@ private void InitializeComponent() this.tBShiftRedBar = new System.Windows.Forms.TrackBar(); this.tBShiftGreenBar = new System.Windows.Forms.TrackBar(); this.tBShiftBlueBar = new System.Windows.Forms.TrackBar(); + this.btnChargingColor = new System.Windows.Forms.Button(); + this.rBColor = new System.Windows.Forms.RadioButton(); + this.rBFade = new System.Windows.Forms.RadioButton(); + this.rBNormal = new System.Windows.Forms.RadioButton(); + this.rBRainbow = new System.Windows.Forms.RadioButton(); + this.lbWhileCharging = new System.Windows.Forms.Label(); + this.lbPercentFlashBar = new System.Windows.Forms.Label(); + this.nUDflashLED = new System.Windows.Forms.NumericUpDown(); + this.lbFlashAt = new System.Windows.Forms.Label(); this.gBRumble = new System.Windows.Forms.GroupBox(); this.lbPercentRumble = new System.Windows.Forms.Label(); this.btnRumbleLightTest = new System.Windows.Forms.Button(); @@ -276,11 +276,11 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).BeginInit(); this.gBLightbar.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); this.pnlShift.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); this.gBRumble.SuspendLayout(); this.gBDeadzone.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDSZ)).BeginInit(); @@ -318,8 +318,8 @@ private void InitializeComponent() // // lowColorChooserButton // - resources.ApplyResources(this.lowColorChooserButton, "lowColorChooserButton"); this.lowColorChooserButton.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.lowColorChooserButton, "lowColorChooserButton"); this.lowColorChooserButton.Name = "lowColorChooserButton"; this.lowColorChooserButton.UseVisualStyleBackColor = false; this.lowColorChooserButton.Click += new System.EventHandler(this.lowColorChooserButton_Click); @@ -337,8 +337,8 @@ private void InitializeComponent() // // pBRainbow // - resources.ApplyResources(this.pBRainbow, "pBRainbow"); this.pBRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; + resources.ApplyResources(this.pBRainbow, "pBRainbow"); this.pBRainbow.Name = "pBRainbow"; this.pBRainbow.TabStop = false; this.pBRainbow.Click += new System.EventHandler(this.pbRainbow_Click); @@ -536,8 +536,8 @@ private void InitializeComponent() // // nUDIdleDisconnect // - resources.ApplyResources(this.nUDIdleDisconnect, "nUDIdleDisconnect"); this.nUDIdleDisconnect.DecimalPlaces = 1; + resources.ApplyResources(this.nUDIdleDisconnect, "nUDIdleDisconnect"); this.nUDIdleDisconnect.Maximum = new decimal(new int[] { 60, 0, @@ -548,13 +548,13 @@ private void InitializeComponent() // // nUDR2 // - resources.ApplyResources(this.nUDR2, "nUDR2"); this.nUDR2.DecimalPlaces = 2; this.nUDR2.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDR2, "nUDR2"); this.nUDR2.Maximum = new decimal(new int[] { 1, 0, @@ -660,7 +660,6 @@ private void InitializeComponent() // // pnlFull // - resources.ApplyResources(this.pnlFull, "pnlFull"); this.pnlFull.Controls.Add(this.lbFull); this.pnlFull.Controls.Add(this.lbRed); this.pnlFull.Controls.Add(this.lbGreen); @@ -668,11 +667,11 @@ private void InitializeComponent() this.pnlFull.Controls.Add(this.tBRedBar); this.pnlFull.Controls.Add(this.tBGreenBar); this.pnlFull.Controls.Add(this.tBBlueBar); + resources.ApplyResources(this.pnlFull, "pnlFull"); this.pnlFull.Name = "pnlFull"; // // pnlLowBattery // - resources.ApplyResources(this.pnlLowBattery, "pnlLowBattery"); this.pnlLowBattery.Controls.Add(this.lowColorChooserButton); this.pnlLowBattery.Controls.Add(this.lbLowRed); this.pnlLowBattery.Controls.Add(this.lbLowGreen); @@ -681,6 +680,7 @@ private void InitializeComponent() this.pnlLowBattery.Controls.Add(this.tBLowGreenBar); this.pnlLowBattery.Controls.Add(this.tBLowBlueBar); this.pnlLowBattery.Controls.Add(this.lbEmpty); + resources.ApplyResources(this.pnlLowBattery, "pnlLowBattery"); this.pnlLowBattery.Name = "pnlLowBattery"; // // lbRS @@ -695,13 +695,13 @@ private void InitializeComponent() // // nUDRS // - resources.ApplyResources(this.nUDRS, "nUDRS"); this.nUDRS.DecimalPlaces = 2; this.nUDRS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDRS, "nUDRS"); this.nUDRS.Maximum = new decimal(new int[] { 1, 0, @@ -728,13 +728,13 @@ private void InitializeComponent() // // nUDLS // - resources.ApplyResources(this.nUDLS, "nUDLS"); this.nUDLS.DecimalPlaces = 2; this.nUDLS.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDLS, "nUDLS"); this.nUDLS.Maximum = new decimal(new int[] { 1, 0, @@ -745,13 +745,13 @@ private void InitializeComponent() // // nUDL2 // - resources.ApplyResources(this.nUDL2, "nUDL2"); this.nUDL2.DecimalPlaces = 2; this.nUDL2.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDL2, "nUDL2"); this.nUDL2.Maximum = new decimal(new int[] { 1, 0, @@ -762,7 +762,6 @@ private void InitializeComponent() // // gBTouchpad // - resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.Controls.Add(this.cbStartTouchpadOff); this.gBTouchpad.Controls.Add(this.cBTouchpadJitterCompensation); this.gBTouchpad.Controls.Add(this.cBlowerRCOn); @@ -773,6 +772,7 @@ private void InitializeComponent() this.gBTouchpad.Controls.Add(this.nUDTap); this.gBTouchpad.Controls.Add(this.cBScroll); this.gBTouchpad.Controls.Add(this.cBDoubleTap); + resources.ApplyResources(this.gBTouchpad, "gBTouchpad"); this.gBTouchpad.Name = "gBTouchpad"; this.gBTouchpad.TabStop = false; // @@ -785,7 +785,6 @@ private void InitializeComponent() // // gBOther // - resources.ApplyResources(this.gBOther, "gBOther"); this.gBOther.Controls.Add(this.cBTPforControls); this.gBOther.Controls.Add(this.cBDinput); this.gBOther.Controls.Add(this.pBProgram); @@ -801,6 +800,7 @@ private void InitializeComponent() this.gBOther.Controls.Add(this.numUDMouseSens); this.gBOther.Controls.Add(this.cBFlushHIDQueue); this.gBOther.Controls.Add(this.lbIdleMinutes); + resources.ApplyResources(this.gBOther, "gBOther"); this.gBOther.Name = "gBOther"; this.gBOther.TabStop = false; // @@ -877,6 +877,7 @@ private void InitializeComponent() this.cBControllerInput.CheckState = System.Windows.Forms.CheckState.Checked; this.cBControllerInput.Name = "cBControllerInput"; this.cBControllerInput.UseVisualStyleBackColor = true; + this.cBControllerInput.CheckedChanged += new System.EventHandler(this.cBControllerInput_CheckedChanged); // // cBIdleDisconnect // @@ -889,7 +890,6 @@ private void InitializeComponent() // // gBLightbar // - resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.Controls.Add(this.pnlShift); this.gBLightbar.Controls.Add(this.btnChargingColor); this.gBLightbar.Controls.Add(this.rBColor); @@ -906,78 +906,12 @@ private void InitializeComponent() this.gBLightbar.Controls.Add(this.lbFlashAt); this.gBLightbar.Controls.Add(this.pnlLowBattery); this.gBLightbar.Controls.Add(this.pnlFull); + resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.Name = "gBLightbar"; this.gBLightbar.TabStop = false; // - // btnChargingColor - // - resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); - this.btnChargingColor.BackColor = System.Drawing.Color.White; - this.btnChargingColor.Name = "btnChargingColor"; - this.btnChargingColor.UseVisualStyleBackColor = false; - this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); - // - // rBColor - // - resources.ApplyResources(this.rBColor, "rBColor"); - this.rBColor.Name = "rBColor"; - this.rBColor.TabStop = true; - this.rBColor.UseVisualStyleBackColor = true; - this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); - // - // rBFade - // - resources.ApplyResources(this.rBFade, "rBFade"); - this.rBFade.Name = "rBFade"; - this.rBFade.UseVisualStyleBackColor = true; - this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); - // - // rBNormal - // - resources.ApplyResources(this.rBNormal, "rBNormal"); - this.rBNormal.Checked = true; - this.rBNormal.Name = "rBNormal"; - this.rBNormal.TabStop = true; - this.rBNormal.UseVisualStyleBackColor = true; - this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); - // - // rBRainbow - // - resources.ApplyResources(this.rBRainbow, "rBRainbow"); - this.rBRainbow.Name = "rBRainbow"; - this.rBRainbow.UseVisualStyleBackColor = true; - this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); - // - // lbWhileCharging - // - resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); - this.lbWhileCharging.Name = "lbWhileCharging"; - // - // lbPercentFlashBar - // - resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); - this.lbPercentFlashBar.Name = "lbPercentFlashBar"; - // - // nUDflashLED - // - resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); - this.nUDflashLED.Increment = new decimal(new int[] { - 10, - 0, - 0, - 0}); - this.nUDflashLED.Name = "nUDflashLED"; - this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); - // - // lbFlashAt - // - resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); - this.lbFlashAt.Name = "lbFlashAt"; - this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); - // // pnlShift // - resources.ApplyResources(this.pnlShift, "pnlShift"); this.pnlShift.Controls.Add(this.cBShiftLight); this.pnlShift.Controls.Add(this.lbShift); this.pnlShift.Controls.Add(this.lbShiftRed); @@ -986,6 +920,7 @@ private void InitializeComponent() this.pnlShift.Controls.Add(this.tBShiftRedBar); this.pnlShift.Controls.Add(this.tBShiftGreenBar); this.pnlShift.Controls.Add(this.tBShiftBlueBar); + resources.ApplyResources(this.pnlShift, "pnlShift"); this.pnlShift.Name = "pnlShift"; // // cBShiftLight @@ -1057,13 +992,79 @@ private void InitializeComponent() this.tBShiftBlueBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.LightBar_MouseDown); this.tBShiftBlueBar.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Lightbar_MouseUp); // + // btnChargingColor + // + this.btnChargingColor.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); + this.btnChargingColor.Name = "btnChargingColor"; + this.btnChargingColor.UseVisualStyleBackColor = false; + this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); + // + // rBColor + // + resources.ApplyResources(this.rBColor, "rBColor"); + this.rBColor.Name = "rBColor"; + this.rBColor.TabStop = true; + this.rBColor.UseVisualStyleBackColor = true; + this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); + // + // rBFade + // + resources.ApplyResources(this.rBFade, "rBFade"); + this.rBFade.Name = "rBFade"; + this.rBFade.UseVisualStyleBackColor = true; + this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); + // + // rBNormal + // + resources.ApplyResources(this.rBNormal, "rBNormal"); + this.rBNormal.Checked = true; + this.rBNormal.Name = "rBNormal"; + this.rBNormal.TabStop = true; + this.rBNormal.UseVisualStyleBackColor = true; + this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); + // + // rBRainbow + // + resources.ApplyResources(this.rBRainbow, "rBRainbow"); + this.rBRainbow.Name = "rBRainbow"; + this.rBRainbow.UseVisualStyleBackColor = true; + this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); + // + // lbWhileCharging + // + resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); + this.lbWhileCharging.Name = "lbWhileCharging"; + // + // lbPercentFlashBar + // + resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); + this.lbPercentFlashBar.Name = "lbPercentFlashBar"; + // + // nUDflashLED + // + this.nUDflashLED.Increment = new decimal(new int[] { + 10, + 0, + 0, + 0}); + resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); + this.nUDflashLED.Name = "nUDflashLED"; + this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); + // + // lbFlashAt + // + resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); + this.lbFlashAt.Name = "lbFlashAt"; + this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); + // // gBRumble // - resources.ApplyResources(this.gBRumble, "gBRumble"); this.gBRumble.Controls.Add(this.lbPercentRumble); this.gBRumble.Controls.Add(this.btnRumbleLightTest); this.gBRumble.Controls.Add(this.btnRumbleHeavyTest); this.gBRumble.Controls.Add(this.nUDRumbleBoost); + resources.ApplyResources(this.gBRumble, "gBRumble"); this.gBRumble.Name = "gBRumble"; this.gBRumble.TabStop = false; // @@ -1081,7 +1082,6 @@ private void InitializeComponent() // // gBDeadzone // - resources.ApplyResources(this.gBDeadzone, "gBDeadzone"); this.gBDeadzone.Controls.Add(this.lbL2); this.gBDeadzone.Controls.Add(this.nUDL2); this.gBDeadzone.Controls.Add(this.lbSixaxisX); @@ -1094,6 +1094,7 @@ private void InitializeComponent() this.gBDeadzone.Controls.Add(this.nUDRS); this.gBDeadzone.Controls.Add(this.nUDR2); this.gBDeadzone.Controls.Add(this.nUDLS); + resources.ApplyResources(this.gBDeadzone, "gBDeadzone"); this.gBDeadzone.Name = "gBDeadzone"; this.gBDeadzone.TabStop = false; // @@ -1109,13 +1110,13 @@ private void InitializeComponent() // // nUDSZ // - resources.ApplyResources(this.nUDSZ, "nUDSZ"); this.nUDSZ.DecimalPlaces = 2; this.nUDSZ.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDSZ, "nUDSZ"); this.nUDSZ.Maximum = new decimal(new int[] { 1, 0, @@ -1131,13 +1132,13 @@ private void InitializeComponent() // // nUDSX // - resources.ApplyResources(this.nUDSX, "nUDSX"); this.nUDSX.DecimalPlaces = 2; this.nUDSX.Increment = new decimal(new int[] { 1, 0, 0, 65536}); + resources.ApplyResources(this.nUDSX, "nUDSX"); this.nUDSX.Maximum = new decimal(new int[] { 1, 0, @@ -1154,11 +1155,9 @@ private void InitializeComponent() // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; - resources.ApplyResources(this.openFileDialog1, "openFileDialog1"); // // tPController // - resources.ApplyResources(this.tPController, "tPController"); this.tPController.Controls.Add(this.pnlSixaxis); this.tPController.Controls.Add(this.lbL2Track); this.tPController.Controls.Add(this.pBDelayTracker); @@ -1178,12 +1177,12 @@ private void InitializeComponent() this.tPController.Controls.Add(this.tBR2); this.tPController.Controls.Add(this.tBL2); this.tPController.Controls.Add(this.lbSATrack); + resources.ApplyResources(this.tPController, "tPController"); this.tPController.Name = "tPController"; this.tPController.UseVisualStyleBackColor = true; // // pnlSixaxis // - resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelX); this.pnlSixaxis.Controls.Add(this.lb6Accel); this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroX); @@ -1192,6 +1191,7 @@ private void InitializeComponent() this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroZ); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelY); this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelZ); + resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); this.pnlSixaxis.Name = "pnlSixaxis"; this.pnlSixaxis.Click += new System.EventHandler(this.SixaxisPanel_Click); // @@ -1272,15 +1272,15 @@ private void InitializeComponent() // // btnSATrack // - resources.ApplyResources(this.btnSATrack, "btnSATrack"); this.btnSATrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnSATrack, "btnSATrack"); this.btnSATrack.Name = "btnSATrack"; this.btnSATrack.UseVisualStyleBackColor = false; // // btnRSTrack // - resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); this.btnRSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); this.btnRSTrack.Name = "btnRSTrack"; this.btnRSTrack.UseVisualStyleBackColor = false; // @@ -1312,43 +1312,43 @@ private void InitializeComponent() // // btnLSTrack // - resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); this.btnLSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); this.btnLSTrack.Name = "btnLSTrack"; this.btnLSTrack.UseVisualStyleBackColor = false; // // pBSADeadzone // - resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); this.pBSADeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); this.pBSADeadzone.Name = "pBSADeadzone"; this.pBSADeadzone.TabStop = false; this.pBSADeadzone.Paint += new System.Windows.Forms.PaintEventHandler(this.DrawCircle); // // pBRSDeadzone // - resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); this.pBRSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); this.pBRSDeadzone.Name = "pBRSDeadzone"; this.pBRSDeadzone.TabStop = false; // // lbRSTrack // - resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); this.lbRSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); this.lbRSTrack.Name = "lbRSTrack"; // // pBLSDeadzone // - resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); this.pBLSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); this.pBLSDeadzone.Name = "pBLSDeadzone"; this.pBLSDeadzone.TabStop = false; // // lbLSTrack // - resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); this.lbLSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); this.lbLSTrack.Name = "lbLSTrack"; // // tBR2 @@ -1371,14 +1371,13 @@ private void InitializeComponent() // // lbSATrack // - resources.ApplyResources(this.lbSATrack, "lbSATrack"); this.lbSATrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbSATrack, "lbSATrack"); this.lbSATrack.Name = "lbSATrack"; this.lbSATrack.Click += new System.EventHandler(this.lbSATrack_Click); // // tPShiftMod // - resources.ApplyResources(this.tPShiftMod, "tPShiftMod"); this.tPShiftMod.Controls.Add(this.label2); this.tPShiftMod.Controls.Add(this.fLPShiftTouchSwipe); this.tPShiftMod.Controls.Add(this.lbShiftGryo); @@ -1389,6 +1388,7 @@ private void InitializeComponent() this.tPShiftMod.Controls.Add(this.lbtoUse); this.tPShiftMod.Controls.Add(this.pnlShiftMain); this.tPShiftMod.Controls.Add(this.pnlShiftSticks); + resources.ApplyResources(this.tPShiftMod, "tPShiftMod"); this.tPShiftMod.Name = "tPShiftMod"; this.tPShiftMod.UseVisualStyleBackColor = true; // @@ -1399,11 +1399,11 @@ private void InitializeComponent() // // fLPShiftTouchSwipe // - resources.ApplyResources(this.fLPShiftTouchSwipe, "fLPShiftTouchSwipe"); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeUp); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeDown); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeLeft); this.fLPShiftTouchSwipe.Controls.Add(this.bnShiftSwipeRight); + resources.ApplyResources(this.fLPShiftTouchSwipe, "fLPShiftTouchSwipe"); this.fLPShiftTouchSwipe.Name = "fLPShiftTouchSwipe"; // // bnShiftSwipeUp @@ -1441,11 +1441,11 @@ private void InitializeComponent() // // fLPShiftTiltControls // - resources.ApplyResources(this.fLPShiftTiltControls, "fLPShiftTiltControls"); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZN); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZP); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXP); this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXN); + resources.ApplyResources(this.fLPShiftTiltControls, "fLPShiftTiltControls"); this.fLPShiftTiltControls.Name = "fLPShiftTiltControls"; // // bnShiftGyroZN @@ -1478,7 +1478,6 @@ private void InitializeComponent() // // cBShiftControl // - resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); this.cBShiftControl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBShiftControl.FormattingEnabled = true; this.cBShiftControl.Items.AddRange(new object[] { @@ -1509,12 +1508,12 @@ private void InitializeComponent() resources.GetString("cBShiftControl.Items24"), resources.GetString("cBShiftControl.Items25"), resources.GetString("cBShiftControl.Items26")}); + resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); this.cBShiftControl.Name = "cBShiftControl"; this.cBShiftControl.SelectedIndexChanged += new System.EventHandler(this.cBShiftControl_SelectedIndexChanged); // // lBShiftControls // - resources.ApplyResources(this.lBShiftControls, "lBShiftControls"); this.lBShiftControls.FormattingEnabled = true; this.lBShiftControls.Items.AddRange(new object[] { resources.GetString("lBShiftControls.Items"), @@ -1550,6 +1549,7 @@ private void InitializeComponent() resources.GetString("lBShiftControls.Items30"), resources.GetString("lBShiftControls.Items31"), resources.GetString("lBShiftControls.Items32")}); + resources.ApplyResources(this.lBShiftControls, "lBShiftControls"); this.lBShiftControls.Name = "lBShiftControls"; this.lBShiftControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); this.lBShiftControls.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.List_MouseDoubleClick); @@ -1566,7 +1566,6 @@ private void InitializeComponent() // // pnlShiftMain // - resources.ApplyResources(this.pnlShiftMain, "pnlShiftMain"); this.pnlShiftMain.Controls.Add(this.pBShiftController); this.pnlShiftMain.Controls.Add(this.bnShiftTouchUpper); this.pnlShiftMain.Controls.Add(this.bnShiftTouchLeft); @@ -1590,6 +1589,7 @@ private void InitializeComponent() this.pnlShiftMain.Controls.Add(this.bnShiftOptions); this.pnlShiftMain.Controls.Add(this.bnShiftPS); this.pnlShiftMain.Controls.Add(this.bnShiftShare); + resources.ApplyResources(this.pnlShiftMain, "pnlShiftMain"); this.pnlShiftMain.Name = "pnlShiftMain"; // // pBShiftController @@ -1601,8 +1601,8 @@ private void InitializeComponent() // // bnShiftTouchUpper // - resources.ApplyResources(this.bnShiftTouchUpper, "bnShiftTouchUpper"); this.bnShiftTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchUpper, "bnShiftTouchUpper"); this.bnShiftTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchUpper.FlatAppearance.BorderSize = 0; @@ -1615,8 +1615,8 @@ private void InitializeComponent() // // bnShiftTouchLeft // - resources.ApplyResources(this.bnShiftTouchLeft, "bnShiftTouchLeft"); this.bnShiftTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchLeft, "bnShiftTouchLeft"); this.bnShiftTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchLeft.FlatAppearance.BorderSize = 0; @@ -1629,8 +1629,8 @@ private void InitializeComponent() // // bnShiftTouchRight // - resources.ApplyResources(this.bnShiftTouchRight, "bnShiftTouchRight"); this.bnShiftTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchRight, "bnShiftTouchRight"); this.bnShiftTouchRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchRight.FlatAppearance.BorderSize = 0; @@ -1643,8 +1643,8 @@ private void InitializeComponent() // // bnShiftTouchMulti // - resources.ApplyResources(this.bnShiftTouchMulti, "bnShiftTouchMulti"); this.bnShiftTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchMulti, "bnShiftTouchMulti"); this.bnShiftTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTouchMulti.FlatAppearance.BorderSize = 0; @@ -1657,8 +1657,8 @@ private void InitializeComponent() // // bnShiftR1 // - resources.ApplyResources(this.bnShiftR1, "bnShiftR1"); this.bnShiftR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR1, "bnShiftR1"); this.bnShiftR1.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR1.FlatAppearance.BorderSize = 0; @@ -1671,8 +1671,8 @@ private void InitializeComponent() // // bnShiftCross // - resources.ApplyResources(this.bnShiftCross, "bnShiftCross"); this.bnShiftCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCross, "bnShiftCross"); this.bnShiftCross.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftCross.FlatAppearance.BorderSize = 0; @@ -1685,8 +1685,8 @@ private void InitializeComponent() // // bnShiftCircle // - resources.ApplyResources(this.bnShiftCircle, "bnShiftCircle"); this.bnShiftCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCircle, "bnShiftCircle"); this.bnShiftCircle.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftCircle.FlatAppearance.BorderSize = 0; @@ -1699,8 +1699,8 @@ private void InitializeComponent() // // btnShiftRightStick // - resources.ApplyResources(this.btnShiftRightStick, "btnShiftRightStick"); this.btnShiftRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftRightStick, "btnShiftRightStick"); this.btnShiftRightStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftRightStick.FlatAppearance.BorderSize = 0; @@ -1712,8 +1712,8 @@ private void InitializeComponent() // // bnShiftSquare // - resources.ApplyResources(this.bnShiftSquare, "bnShiftSquare"); this.bnShiftSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftSquare, "bnShiftSquare"); this.bnShiftSquare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftSquare.FlatAppearance.BorderSize = 0; @@ -1726,8 +1726,8 @@ private void InitializeComponent() // // btnShiftLightbar // - resources.ApplyResources(this.btnShiftLightbar, "btnShiftLightbar"); this.btnShiftLightbar.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLightbar, "btnShiftLightbar"); this.btnShiftLightbar.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftLightbar.FlatAppearance.BorderSize = 0; @@ -1740,8 +1740,8 @@ private void InitializeComponent() // // bnShiftTriangle // - resources.ApplyResources(this.bnShiftTriangle, "bnShiftTriangle"); this.bnShiftTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTriangle, "bnShiftTriangle"); this.bnShiftTriangle.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftTriangle.FlatAppearance.BorderSize = 0; @@ -1754,8 +1754,8 @@ private void InitializeComponent() // // bnShiftUp // - resources.ApplyResources(this.bnShiftUp, "bnShiftUp"); this.bnShiftUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftUp, "bnShiftUp"); this.bnShiftUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.bnShiftUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; @@ -1769,8 +1769,8 @@ private void InitializeComponent() // // btnShiftLeftStick // - resources.ApplyResources(this.btnShiftLeftStick, "btnShiftLeftStick"); this.btnShiftLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLeftStick, "btnShiftLeftStick"); this.btnShiftLeftStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnShiftLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnShiftLeftStick.FlatAppearance.BorderSize = 0; @@ -1782,8 +1782,8 @@ private void InitializeComponent() // // bnShiftDown // - resources.ApplyResources(this.bnShiftDown, "bnShiftDown"); this.bnShiftDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftDown, "bnShiftDown"); this.bnShiftDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftDown.FlatAppearance.BorderSize = 0; @@ -1796,8 +1796,8 @@ private void InitializeComponent() // // bnShiftL2 // - resources.ApplyResources(this.bnShiftL2, "bnShiftL2"); this.bnShiftL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL2, "bnShiftL2"); this.bnShiftL2.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL2.FlatAppearance.BorderSize = 0; @@ -1810,8 +1810,8 @@ private void InitializeComponent() // // bnShiftRight // - resources.ApplyResources(this.bnShiftRight, "bnShiftRight"); this.bnShiftRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRight, "bnShiftRight"); this.bnShiftRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRight.FlatAppearance.BorderSize = 0; @@ -1824,8 +1824,8 @@ private void InitializeComponent() // // bnShiftR2 // - resources.ApplyResources(this.bnShiftR2, "bnShiftR2"); this.bnShiftR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR2, "bnShiftR2"); this.bnShiftR2.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR2.FlatAppearance.BorderSize = 0; @@ -1838,8 +1838,8 @@ private void InitializeComponent() // // bnShiftLeft // - resources.ApplyResources(this.bnShiftLeft, "bnShiftLeft"); this.bnShiftLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLeft, "bnShiftLeft"); this.bnShiftLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLeft.FlatAppearance.BorderSize = 0; @@ -1852,8 +1852,8 @@ private void InitializeComponent() // // bnShiftL1 // - resources.ApplyResources(this.bnShiftL1, "bnShiftL1"); this.bnShiftL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL1, "bnShiftL1"); this.bnShiftL1.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL1.FlatAppearance.BorderSize = 0; @@ -1866,8 +1866,8 @@ private void InitializeComponent() // // bnShiftOptions // - resources.ApplyResources(this.bnShiftOptions, "bnShiftOptions"); this.bnShiftOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftOptions, "bnShiftOptions"); this.bnShiftOptions.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftOptions.FlatAppearance.BorderSize = 0; @@ -1880,8 +1880,8 @@ private void InitializeComponent() // // bnShiftPS // - resources.ApplyResources(this.bnShiftPS, "bnShiftPS"); this.bnShiftPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftPS, "bnShiftPS"); this.bnShiftPS.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftPS.FlatAppearance.BorderSize = 0; @@ -1894,8 +1894,8 @@ private void InitializeComponent() // // bnShiftShare // - resources.ApplyResources(this.bnShiftShare, "bnShiftShare"); this.bnShiftShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftShare, "bnShiftShare"); this.bnShiftShare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftShare.FlatAppearance.BorderSize = 0; @@ -1908,7 +1908,6 @@ private void InitializeComponent() // // pnlShiftSticks // - resources.ApplyResources(this.pnlShiftSticks, "pnlShiftSticks"); this.pnlShiftSticks.Controls.Add(this.btnShiftFullView); this.pnlShiftSticks.Controls.Add(this.pBShiftSticks); this.pnlShiftSticks.Controls.Add(this.bnShiftL3); @@ -1921,6 +1920,7 @@ private void InitializeComponent() this.pnlShiftSticks.Controls.Add(this.bnShiftRSLeft); this.pnlShiftSticks.Controls.Add(this.bnShiftLSDown); this.pnlShiftSticks.Controls.Add(this.bnShiftR3); + resources.ApplyResources(this.pnlShiftSticks, "pnlShiftSticks"); this.pnlShiftSticks.Name = "pnlShiftSticks"; // // btnShiftFullView @@ -1939,8 +1939,8 @@ private void InitializeComponent() // // bnShiftL3 // - resources.ApplyResources(this.bnShiftL3, "bnShiftL3"); this.bnShiftL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL3, "bnShiftL3"); this.bnShiftL3.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftL3.FlatAppearance.BorderSize = 0; @@ -1953,8 +1953,8 @@ private void InitializeComponent() // // bnShiftRSDown // - resources.ApplyResources(this.bnShiftRSDown, "bnShiftRSDown"); this.bnShiftRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSDown, "bnShiftRSDown"); this.bnShiftRSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSDown.FlatAppearance.BorderSize = 0; @@ -1967,8 +1967,8 @@ private void InitializeComponent() // // bnShiftLSUp // - resources.ApplyResources(this.bnShiftLSUp, "bnShiftLSUp"); this.bnShiftLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSUp, "bnShiftLSUp"); this.bnShiftLSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSUp.FlatAppearance.BorderSize = 0; @@ -1981,8 +1981,8 @@ private void InitializeComponent() // // bnShiftRSUp // - resources.ApplyResources(this.bnShiftRSUp, "bnShiftRSUp"); this.bnShiftRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSUp, "bnShiftRSUp"); this.bnShiftRSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSUp.FlatAppearance.BorderSize = 0; @@ -1995,8 +1995,8 @@ private void InitializeComponent() // // bnShiftLSLeft // - resources.ApplyResources(this.bnShiftLSLeft, "bnShiftLSLeft"); this.bnShiftLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSLeft, "bnShiftLSLeft"); this.bnShiftLSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSLeft.FlatAppearance.BorderSize = 0; @@ -2009,8 +2009,8 @@ private void InitializeComponent() // // bnShiftRSRight // - resources.ApplyResources(this.bnShiftRSRight, "bnShiftRSRight"); this.bnShiftRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSRight, "bnShiftRSRight"); this.bnShiftRSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSRight.FlatAppearance.BorderSize = 0; @@ -2023,8 +2023,8 @@ private void InitializeComponent() // // bnShiftLSRight // - resources.ApplyResources(this.bnShiftLSRight, "bnShiftLSRight"); this.bnShiftLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSRight, "bnShiftLSRight"); this.bnShiftLSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSRight.FlatAppearance.BorderSize = 0; @@ -2037,8 +2037,8 @@ private void InitializeComponent() // // bnShiftRSLeft // - resources.ApplyResources(this.bnShiftRSLeft, "bnShiftRSLeft"); this.bnShiftRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSLeft, "bnShiftRSLeft"); this.bnShiftRSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftRSLeft.FlatAppearance.BorderSize = 0; @@ -2051,8 +2051,8 @@ private void InitializeComponent() // // bnShiftLSDown // - resources.ApplyResources(this.bnShiftLSDown, "bnShiftLSDown"); this.bnShiftLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSDown, "bnShiftLSDown"); this.bnShiftLSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftLSDown.FlatAppearance.BorderSize = 0; @@ -2065,8 +2065,8 @@ private void InitializeComponent() // // bnShiftR3 // - resources.ApplyResources(this.bnShiftR3, "bnShiftR3"); this.bnShiftR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR3, "bnShiftR3"); this.bnShiftR3.Cursor = System.Windows.Forms.Cursors.Default; this.bnShiftR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShiftR3.FlatAppearance.BorderSize = 0; @@ -2079,7 +2079,6 @@ private void InitializeComponent() // // tPControls // - resources.ApplyResources(this.tPControls, "tPControls"); this.tPControls.Controls.Add(this.label1); this.tPControls.Controls.Add(this.fLPTouchSwipe); this.tPControls.Controls.Add(this.lbGryo); @@ -2088,6 +2087,7 @@ private void InitializeComponent() this.tPControls.Controls.Add(this.lBControls); this.tPControls.Controls.Add(this.lbControlTip); this.tPControls.Controls.Add(this.pnlSticks); + resources.ApplyResources(this.tPControls, "tPControls"); this.tPControls.Name = "tPControls"; this.tPControls.UseVisualStyleBackColor = true; // @@ -2098,11 +2098,11 @@ private void InitializeComponent() // // fLPTouchSwipe // - resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Controls.Add(this.bnSwipeUp); this.fLPTouchSwipe.Controls.Add(this.bnSwipeDown); this.fLPTouchSwipe.Controls.Add(this.bnSwipeLeft); this.fLPTouchSwipe.Controls.Add(this.bnSwipeRight); + resources.ApplyResources(this.fLPTouchSwipe, "fLPTouchSwipe"); this.fLPTouchSwipe.Name = "fLPTouchSwipe"; // // bnSwipeUp @@ -2140,11 +2140,11 @@ private void InitializeComponent() // // fLPTiltControls // - resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Controls.Add(this.bnGyroZN); this.fLPTiltControls.Controls.Add(this.bnGyroZP); this.fLPTiltControls.Controls.Add(this.bnGyroXP); this.fLPTiltControls.Controls.Add(this.bnGyroXN); + resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); this.fLPTiltControls.Name = "fLPTiltControls"; // // bnGyroZN @@ -2177,7 +2177,6 @@ private void InitializeComponent() // // pnlMain // - resources.ApplyResources(this.pnlMain, "pnlMain"); this.pnlMain.Controls.Add(this.pBController); this.pnlMain.Controls.Add(this.bnTouchUpper); this.pnlMain.Controls.Add(this.bnTouchLeft); @@ -2201,6 +2200,7 @@ private void InitializeComponent() this.pnlMain.Controls.Add(this.bnShare); this.pnlMain.Controls.Add(this.bnL2); this.pnlMain.Controls.Add(this.bnR2); + resources.ApplyResources(this.pnlMain, "pnlMain"); this.pnlMain.Name = "pnlMain"; // // pBController @@ -2212,8 +2212,8 @@ private void InitializeComponent() // // bnTouchUpper // - resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); this.bnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchUpper.FlatAppearance.BorderSize = 0; @@ -2228,8 +2228,8 @@ private void InitializeComponent() // // bnTouchLeft // - resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); this.bnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchLeft.FlatAppearance.BorderSize = 0; @@ -2244,8 +2244,8 @@ private void InitializeComponent() // // bnTouchRight // - resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); this.bnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchRight.FlatAppearance.BorderSize = 0; @@ -2260,8 +2260,8 @@ private void InitializeComponent() // // bnTouchMulti // - resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); this.bnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; this.bnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTouchMulti.FlatAppearance.BorderSize = 0; @@ -2276,8 +2276,8 @@ private void InitializeComponent() // // bnR1 // - resources.ApplyResources(this.bnR1, "bnR1"); this.bnR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR1, "bnR1"); this.bnR1.Cursor = System.Windows.Forms.Cursors.Default; this.bnR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR1.FlatAppearance.BorderSize = 0; @@ -2290,8 +2290,8 @@ private void InitializeComponent() // // bnCross // - resources.ApplyResources(this.bnCross, "bnCross"); this.bnCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCross, "bnCross"); this.bnCross.Cursor = System.Windows.Forms.Cursors.Default; this.bnCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnCross.FlatAppearance.BorderSize = 0; @@ -2304,8 +2304,8 @@ private void InitializeComponent() // // bnCircle // - resources.ApplyResources(this.bnCircle, "bnCircle"); this.bnCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCircle, "bnCircle"); this.bnCircle.Cursor = System.Windows.Forms.Cursors.Default; this.bnCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnCircle.FlatAppearance.BorderSize = 0; @@ -2318,8 +2318,8 @@ private void InitializeComponent() // // btnRightStick // - resources.ApplyResources(this.btnRightStick, "btnRightStick"); this.btnRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnRightStick, "btnRightStick"); this.btnRightStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnRightStick.FlatAppearance.BorderSize = 0; @@ -2332,8 +2332,8 @@ private void InitializeComponent() // // bnSquare // - resources.ApplyResources(this.bnSquare, "bnSquare"); this.bnSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnSquare, "bnSquare"); this.bnSquare.Cursor = System.Windows.Forms.Cursors.Default; this.bnSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnSquare.FlatAppearance.BorderSize = 0; @@ -2346,8 +2346,8 @@ private void InitializeComponent() // // btnLightbar // - resources.ApplyResources(this.btnLightbar, "btnLightbar"); this.btnLightbar.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnLightbar, "btnLightbar"); this.btnLightbar.Cursor = System.Windows.Forms.Cursors.Default; this.btnLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnLightbar.FlatAppearance.BorderSize = 0; @@ -2360,8 +2360,8 @@ private void InitializeComponent() // // bnTriangle // - resources.ApplyResources(this.bnTriangle, "bnTriangle"); this.bnTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTriangle, "bnTriangle"); this.bnTriangle.Cursor = System.Windows.Forms.Cursors.Default; this.bnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnTriangle.FlatAppearance.BorderSize = 0; @@ -2374,8 +2374,8 @@ private void InitializeComponent() // // bnUp // - resources.ApplyResources(this.bnUp, "bnUp"); this.bnUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnUp, "bnUp"); this.bnUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.bnUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; @@ -2389,8 +2389,8 @@ private void InitializeComponent() // // btnLeftStick // - resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); this.btnLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); this.btnLeftStick.Cursor = System.Windows.Forms.Cursors.Default; this.btnLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.btnLeftStick.FlatAppearance.BorderSize = 0; @@ -2403,8 +2403,8 @@ private void InitializeComponent() // // bnDown // - resources.ApplyResources(this.bnDown, "bnDown"); this.bnDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnDown, "bnDown"); this.bnDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnDown.FlatAppearance.BorderSize = 0; @@ -2417,8 +2417,8 @@ private void InitializeComponent() // // bnRight // - resources.ApplyResources(this.bnRight, "bnRight"); this.bnRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRight, "bnRight"); this.bnRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRight.FlatAppearance.BorderSize = 0; @@ -2431,8 +2431,8 @@ private void InitializeComponent() // // bnLeft // - resources.ApplyResources(this.bnLeft, "bnLeft"); this.bnLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLeft, "bnLeft"); this.bnLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLeft.FlatAppearance.BorderSize = 0; @@ -2445,8 +2445,8 @@ private void InitializeComponent() // // bnL1 // - resources.ApplyResources(this.bnL1, "bnL1"); this.bnL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL1, "bnL1"); this.bnL1.Cursor = System.Windows.Forms.Cursors.Default; this.bnL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL1.FlatAppearance.BorderSize = 0; @@ -2459,8 +2459,8 @@ private void InitializeComponent() // // bnOptions // - resources.ApplyResources(this.bnOptions, "bnOptions"); this.bnOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnOptions, "bnOptions"); this.bnOptions.Cursor = System.Windows.Forms.Cursors.Default; this.bnOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnOptions.FlatAppearance.BorderSize = 0; @@ -2473,8 +2473,8 @@ private void InitializeComponent() // // bnPS // - resources.ApplyResources(this.bnPS, "bnPS"); this.bnPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnPS, "bnPS"); this.bnPS.Cursor = System.Windows.Forms.Cursors.Default; this.bnPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnPS.FlatAppearance.BorderSize = 0; @@ -2487,8 +2487,8 @@ private void InitializeComponent() // // bnShare // - resources.ApplyResources(this.bnShare, "bnShare"); this.bnShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShare, "bnShare"); this.bnShare.Cursor = System.Windows.Forms.Cursors.Default; this.bnShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnShare.FlatAppearance.BorderSize = 0; @@ -2501,8 +2501,8 @@ private void InitializeComponent() // // bnL2 // - resources.ApplyResources(this.bnL2, "bnL2"); this.bnL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL2, "bnL2"); this.bnL2.Cursor = System.Windows.Forms.Cursors.Default; this.bnL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL2.FlatAppearance.BorderSize = 0; @@ -2515,8 +2515,8 @@ private void InitializeComponent() // // bnR2 // - resources.ApplyResources(this.bnR2, "bnR2"); this.bnR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR2, "bnR2"); this.bnR2.Cursor = System.Windows.Forms.Cursors.Default; this.bnR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR2.FlatAppearance.BorderSize = 0; @@ -2529,7 +2529,6 @@ private void InitializeComponent() // // lBControls // - resources.ApplyResources(this.lBControls, "lBControls"); this.lBControls.FormattingEnabled = true; this.lBControls.Items.AddRange(new object[] { resources.GetString("lBControls.Items"), @@ -2565,6 +2564,7 @@ private void InitializeComponent() resources.GetString("lBControls.Items30"), resources.GetString("lBControls.Items31"), resources.GetString("lBControls.Items32")}); + resources.ApplyResources(this.lBControls, "lBControls"); this.lBControls.Name = "lBControls"; this.lBControls.DoubleClick += new System.EventHandler(this.Show_ControlsList); this.lBControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); @@ -2576,7 +2576,6 @@ private void InitializeComponent() // // pnlSticks // - resources.ApplyResources(this.pnlSticks, "pnlSticks"); this.pnlSticks.Controls.Add(this.btnFullView); this.pnlSticks.Controls.Add(this.pBSticks); this.pnlSticks.Controls.Add(this.bnL3); @@ -2589,6 +2588,7 @@ private void InitializeComponent() this.pnlSticks.Controls.Add(this.bnRSLeft); this.pnlSticks.Controls.Add(this.bnLSDown); this.pnlSticks.Controls.Add(this.bnR3); + resources.ApplyResources(this.pnlSticks, "pnlSticks"); this.pnlSticks.Name = "pnlSticks"; // // btnFullView @@ -2607,8 +2607,8 @@ private void InitializeComponent() // // bnL3 // - resources.ApplyResources(this.bnL3, "bnL3"); this.bnL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL3, "bnL3"); this.bnL3.Cursor = System.Windows.Forms.Cursors.Default; this.bnL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnL3.FlatAppearance.BorderSize = 0; @@ -2621,8 +2621,8 @@ private void InitializeComponent() // // bnRSDown // - resources.ApplyResources(this.bnRSDown, "bnRSDown"); this.bnRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSDown, "bnRSDown"); this.bnRSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSDown.FlatAppearance.BorderSize = 0; @@ -2635,8 +2635,8 @@ private void InitializeComponent() // // bnLSUp // - resources.ApplyResources(this.bnLSUp, "bnLSUp"); this.bnLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSUp, "bnLSUp"); this.bnLSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSUp.FlatAppearance.BorderSize = 0; @@ -2649,8 +2649,8 @@ private void InitializeComponent() // // bnRSUp // - resources.ApplyResources(this.bnRSUp, "bnRSUp"); this.bnRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSUp, "bnRSUp"); this.bnRSUp.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSUp.FlatAppearance.BorderSize = 0; @@ -2663,8 +2663,8 @@ private void InitializeComponent() // // bnLSLeft // - resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); this.bnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSLeft.FlatAppearance.BorderSize = 0; @@ -2677,8 +2677,8 @@ private void InitializeComponent() // // bnRSRight // - resources.ApplyResources(this.bnRSRight, "bnRSRight"); this.bnRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSRight, "bnRSRight"); this.bnRSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSRight.FlatAppearance.BorderSize = 0; @@ -2691,8 +2691,8 @@ private void InitializeComponent() // // bnLSRight // - resources.ApplyResources(this.bnLSRight, "bnLSRight"); this.bnLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSRight, "bnLSRight"); this.bnLSRight.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSRight.FlatAppearance.BorderSize = 0; @@ -2705,8 +2705,8 @@ private void InitializeComponent() // // bnRSLeft // - resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); this.bnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; this.bnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnRSLeft.FlatAppearance.BorderSize = 0; @@ -2719,8 +2719,8 @@ private void InitializeComponent() // // bnLSDown // - resources.ApplyResources(this.bnLSDown, "bnLSDown"); this.bnLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSDown, "bnLSDown"); this.bnLSDown.Cursor = System.Windows.Forms.Cursors.Default; this.bnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnLSDown.FlatAppearance.BorderSize = 0; @@ -2733,8 +2733,8 @@ private void InitializeComponent() // // bnR3 // - resources.ApplyResources(this.bnR3, "bnR3"); this.bnR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR3, "bnR3"); this.bnR3.Cursor = System.Windows.Forms.Cursors.Default; this.bnR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; this.bnR3.FlatAppearance.BorderSize = 0; @@ -2747,10 +2747,10 @@ private void InitializeComponent() // // tabControls // - resources.ApplyResources(this.tabControls, "tabControls"); this.tabControls.Controls.Add(this.tPControls); this.tabControls.Controls.Add(this.tPShiftMod); this.tabControls.Controls.Add(this.tPController); + resources.ApplyResources(this.tabControls, "tabControls"); this.tabControls.Name = "tabControls"; this.tabControls.SelectedIndex = 0; this.tabControls.SelectedIndexChanged += new System.EventHandler(this.tabControls_SelectedIndexChanged); @@ -2806,12 +2806,12 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).EndInit(); this.gBLightbar.ResumeLayout(false); this.gBLightbar.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); this.pnlShift.ResumeLayout(false); this.pnlShift.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); this.gBRumble.ResumeLayout(false); this.gBRumble.PerformLayout(); this.gBDeadzone.ResumeLayout(false); diff --git a/DS4Tool/Options.cs b/DS4Tool/Options.cs index e071fdb1e0..7084202b0f 100644 --- a/DS4Tool/Options.cs +++ b/DS4Tool/Options.cs @@ -194,6 +194,7 @@ public Options(DS4Control.Control bus_device, int deviceNum, string name, DS4For olddinputcheck = cBDinput.Checked; cbStartTouchpadOff.Checked = Global.getStartTouchpadOff(device); cBTPforControls.Checked = Global.getUseTPforControls(device); + cBControllerInput.Checked = Global.getDS4Mapping(); } else { @@ -448,6 +449,8 @@ public void Set() Global.setDinputOnly(device, cBDinput.Checked); Global.setStartTouchpadOff(device, cbStartTouchpadOff.Checked); Global.setUseTPforControls(device, cBTPforControls.Checked); + Global.setDS4Mapping(cBControllerInput.Checked); + gBTouchpad.Enabled = !cBTPforControls.Checked; if (cBTPforControls.Checked) tabControls.Size = new Size(tabControls.Size.Width, (int)(282 * dpiy)); @@ -1547,5 +1550,10 @@ private void cBTPforControls_CheckedChanged(object sender, EventArgs e) lBShiftControls.Items.RemoveAt(33); } } + + private void cBControllerInput_CheckedChanged(object sender, EventArgs e) + { + Global.setDS4Mapping(cBControllerInput.Checked); + } } } diff --git a/DS4Tool/Options.resx b/DS4Tool/Options.resx index 68963be853..22319d4028 100644 --- a/DS4Tool/Options.resx +++ b/DS4Tool/Options.resx @@ -117,3075 +117,2949 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, 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 - - - - False - - - Yes + + Flat - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fall Back - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lbRSTrack + + + 44, 9 - - 236 + + 13, 13 - - Other + + + 49 - - $this + + lowColorChooserButton - - - 257, 7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnL2 + + pnlLowBattery - - Left Stick Up : + + 0 - - Right Stick + + 181, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 39, 20 - - 91 + + 167 - - bnShiftL2 + + nUDRainbow - - TopCenter + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 72 + + gBLightbar - - 12 + + 10 - - False + + NoControl - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159, 17 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StretchImage - - gBLightbar + + 166 pBRainbow - - pnlLowBattery + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + gBLightbar - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 15, 12 + + False - - 1 + + NoControl - - 3, 3, 3, 3 + + 325, 4 - - gBRumble + + 100, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - Yes + + tBBlueBar - - 7 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + pnlFull - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - Tilt Left + + NoControl - - gBRumble + + 196, 4 - - 235 + + 100, 20 - + 11 - - 6 - - - 71, 9 - - - 198 + + tBGreenBar - + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnShiftRSLeft - - - 242 + + pnlFull - - bnCircle + + 5 - - 3, 3 + + False - - Flat + + NoControl - - 4, 22 + + 73, 4 - - 237 + + 100, 20 - - 211 + + 10 - - gBOther + + tBRedBar - - 49, 19 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - G + + pnlFull - - Fall Back + + 4 - - MiddleCenter + + True - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 316, 17 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 111, 17 - - 1 + + 162 - - 7 + + Color by Battery % - - 214 + + cBLightbyBattery - - 40, 20 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + gBLightbar - - 223, 15 + + 12 - - tBGreenBar + + True - - 71, 79 + + NoControl - - 7 + + 308, 7 - - Fall Back + + 14, 13 - - 125, 125 + + 160 - - 88 + + B - - 189 + + lbBlue - - L2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlFull - - 72, 219 + + 3 - - Left Touch : + + True - - bnShiftR2 + + NoControl - - btnChargingColor + + 180, 7 - - Right Stick Left : + + 15, 13 - - bnShiftCircle + + 159 - - 10 + + G - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbGreen - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbL2 + + pnlFull - + + 2 + + + True + + NoControl - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 223, 19 - - 80, 23 + + 59, 13 - - Left Button + + 157 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + secs/cycle - - NoControl + + lbspc - - lbtoUse + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnRumbleLightTest + + gBLightbar - - NoControl + + 11 - - Flat + + True - - Touchpad -Swipes: + + NoControl - - tabControls + + 57, 7 - - bnShiftTouchRight + + 15, 13 - - lbLowBlue + + 158 - - 19 + + R - - pnlMain + + lbRed - - 80, 23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + pnlFull - - pnlShift + + 1 - - None + + True - - None + + NoControl - - Yes + + 106, 50 - - 6 + + No - - False + + 82, 17 - - NoControl + + 226 - - 132, 79 + + Double Tap - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBDoubleTap - - None + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBTouchpad - - Right X-Axis- + + 9 - - NoControl + + True - - bnShiftUp + + NoControl - - 242 + + 8, 50 - - 49, 20 + + Yes - - 81, 73 + + 45, 17 - - bnR3 + + 230 - - Left Stick Right : + + Tap - - NoControl + + cBTap - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBOther + + gBTouchpad - + 5 - - 84, 7 + + 60, 50 - - False + + 40, 20 - - TopRight + + 227 - - NoControl + + nUDTap - - gBTouchpad + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 235 + + gBTouchpad - - lbSATrack + + 7 - - False + + True - - Flat + + NoControl - - Popup + + 105, 20 - - 250 + + Yes - - 80, 23 + + 52, 17 - - 245, 132 + + 231 - - 109, 40 + + Scroll - - 331, 3 + + cBScroll - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 23 + + gBTouchpad - - Flat + + 8 - - Multitouch : + + True - - 183, 79 + + NoControl - - gBDeadzone + + 4, 20 - - 203 + + Yes - - NoControl + + 49, 17 - - NoControl + + 232 - - NoControl + + Slide - - NoControl + + cBSlide - - lBControls + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + gBTouchpad - - Right Trigger + + 3 - - 49, 19 + + 164, 19 - - NoControl + + 40, 20 - - gBDeadzone + + 228 - - None + + nUDScroll - - None + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlMain + + gBTouchpad - - NoControl + + 6 - - 72 + + 60, 19 - - 5 + + 40, 20 - - 167 + + 229 - - 15, 15 + + nUDTouch - - 105, 13 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pBLSDeadzone + + gBTouchpad - - Flat + + 4 - - 100, 20 + + True - - 89, 3 + + NoControl - - Flat + + 5, 17 - - fLPTouchSwipe + + 92, 13 - - Left Touch + + 206 - - Start + + Mouse Sensitivity: - - True + + TopRight - - 245, 132 + + lbButtonMouseSens - - pnlShiftMain + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 261, 3 + + gBOther - - NoControl + + 11 - - advColorDialog + + True - - 170 + + NoControl - - lbSixaxisZ + + 132, 79 - - Use Touchpad -Swipes for controls - + + No - - 105, 23 + + 124, 17 - - 6 + + 223 - - 100, 20 + + Lower Right as RMB - - 237 + + cBlowerRCOn - - 65, 92 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 351, 31 + + gBTouchpad - - True - - - None - - - bnShiftRight - - - NoControl + + 2 - - $this + + True - + NoControl - - Fall Back - - - Flat - - - fLPTouchSwipe + + 12, 79 - - cBMouseAccel + + No - - pnlShiftMain + + 118, 17 - - 3 + + 224 - - Tilt Left + + Jitter Compensation - - NoControl + + cBTouchpadJitterCompensation - - bnShiftShare + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBTouchpad - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - pnlSixaxis + + True - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 + + 7, 17 - - True + + 19, 13 - - 80, 23 + + 196 - - 159, 105 + + L2 - - RS + + lbL2 - - lbspc + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 216 + + gBDeadzone - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 81, 4 + + True - - 308, 33 + + NoControl - - 20 + + 88, 17 - - pnlShiftSticks + + 21, 13 - - 5 + + 197 - - 225 + + R2 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbR2 - - Popup + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBLowBlueBar + + gBDeadzone - - None + + 4 - - 91, 16 + + True - - pnlShiftSticks + + NoControl - - Rumble + + 163, 47 - - NoControl + + 28, 13 - - 15, 15 + + 200 mins - - R1 : + + lbIdleMinutes - - Left Y-Axis+ + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left Stick Down : + + gBOther - - 28, 28 + + 14 - - None + + 109, 44 - - NoControl + + 49, 20 - - 0 + + 201 - - 55, 16 + + nUDIdleDisconnect - - 249, 143 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBOther - + 9 - - 3 + + 111, 15 - - 250 + + 49, 20 - - NoControl + + 202 - - MiddleCenter + + nUDR2 - - 159 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBDeadzone - + + 10 + + + flushHIDQueue + + True - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 + + 357, 73 - - 167 + + Yes - - bnSwipeDown + + 73, 17 - - pnlFull + + 198 - - 90 - - - 11 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl + + Flush HID + - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBFlushHIDQueue - - 250 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pBProgram + + gBOther - - NoControl + + 13 - - 0 + + 43, 14 - - None + + 43, 20 - - pnlMain + + 211 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + nUDRumbleBoost - - 240 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 20 + + gBRumble - - 39, 20 + + 3 - + NoControl - - 351, 31 + + 3, 39 - - Left Mouse Button + + 71, 23 - - None + + 214 - - 167, 33 + + Test Heavy - - None + + btnRumbleHeavyTest - - 9, 108 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + gBRumble + + 2 - - 7 + + True - + NoControl - - pnlFull + + 7, 7 - - NoControl + + 26, 13 - - 255 + + 225 - - pnlSixaxis + + Full: - - 250 + + lbFull - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + pnlFull - + + 0 + + True - - No + + NoControl - - A Button + + 57, 9 - - Flat + + 15, 13 - - 115, 87 + + 158 - - 71, 89 + + R - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbLowRed - - tabControls + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + pnlLowBattery - - gBLightbar + + 1 - - 7, 17 + + True - + NoControl - - 2 - - - 164 + + 180, 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15, 13 - - Flat + + 159 - - 3, 39 + + G - - MiddleCenter + + lbLowGreen - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlLowBattery + + 2 - + + True + + NoControl - - 9 + + 308, 9 - - None + + 14, 13 - - 6 + + 160 - - Up Button + + B - - Flat + + lbLowBlue - - R1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlLowBattery - - 258 + + 3 - - 191 + + False - - 0 + + NoControl - - Lower Right as RMB + + 73, 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 100, 20 - + 10 - - 391, 108 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tBLowRedBar - + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlLowBattery + + + 4 + + + False + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 196, 5 - - 435, 29 + + 100, 20 - - 101, 17 + + 11 - - True + + tBLowGreenBar - - Fall Back + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlLowBattery - - Right : + + 5 - - btnRumbleHeavyTest + + False - + NoControl - - Fall Back + + 325, 5 - - pnlFull + + 100, 20 - - pnlSixaxis + + 12 - - 142, 17 + + tBLowBlueBar - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 71, 89 + + pnlLowBattery - - tPController + + 6 - - Flat + + True - - % + + NoControl - - pnlSticks + + 7, 9 - - 84, 24 + + 39, 13 - - bnOptions + + 225 - - tBShiftBlueBar + + Empty: - - bnShiftGyroZN + + lbEmpty - - 43, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + pnlLowBattery - - 20, 16 + + 7 - - cBLightbyBattery + + 1, 41 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 435, 29 - - 15, 13 + + 235 - - pnlSticks + + pnlFull - - 325, 5 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBLightbar - - 8, 8 + + 15 - + + 1, 72 + + + 435, 29 + + + 234 + + + pnlLowBattery + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + gBLightbar + + + 14 + + + True + + NoControl - - 0 + + 88, 47 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 13 - - 2 + + 197 - - StretchImage + + RS - - R2 + + lbRS - - Flat + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Gyro + + gBDeadzone - - 84, 40 + + 5 - + True - - 21, 13 + + NoControl - - 11, 21 + + 7, 47 - - - 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 - AElFTkSuQmCC - - - - 5 + + 20, 13 - - 7 + + 196 - - 239 + + LS - - 216 + + lbLS - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + gBDeadzone - - pnlShiftMain + + 7 - - 52, 17 + + 111, 43 - - 1 + + No - - 23, 11 + + 49, 20 - - 168, 45 + + 203 - - False + + nUDRS - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBDeadzone - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - 7, 7 + + 109, 16 - - 60, 50 + + 49, 20 - - 44, 9 + + 241 - - 1 + + numUDMouseSens - - 184 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - 1 + + 12 - - NoControl + + 31, 44 - - Multitouch : + + No - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 20 - - NoControl + + 203 - - True + + nUDLS - - 7, 41 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnLeftStick + + gBDeadzone - - 3, 49 + + 11 - - Flat + + 31, 15 - - False + + No - - Flat + + 49, 20 - - Flat + + 203 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + nUDL2 - - tabControls + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBDeadzone - - TopCenter + + 1 - - 192 + + True - - Idle Disconnect + + NoControl - - Sixaxis Down + + 209, 20 - - True + + 142, 17 - - 36, 120 + + 233 - - bnShiftCross + + Start with Slide/Scroll off - - 229 + + cbStartTouchpadOff - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + gBTouchpad - - Tilt Right + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 251 - - 6 + + 435, 106 - - % + + 246 - - Square : + + Touchpad - - None + + gBTouchpad - - Tilt Up + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - cBlowerRCOn + + 4 - - 112, 9 + + True - - None + + NoControl - - gBDeadzone + + 315, 36 - - Sqaure : + + Yes - - gBTouchpad + + 115, 30 - + + 257 + + + Use Touchpad +Swipes for controls + + + + cBTPforControls + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - 175, 3 + + 0 - + + True + + NoControl - - 55, 61 + + 329, 102 - - 21 + + Yes - - 202 + + 101, 17 - - 443, 85 + + 256 - - bnCross + + Use Dinput only - - fLPTiltControls + + cBDinput - - 14 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + gBOther - - 3 + + 1 - - 21 + + NoControl + + + 189, 96 + + + 23, 23 Zoom - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 255 - - Flat + + pBProgram - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + gBOther - - 82 + + 2 - - 17 + + True - - $this + + NoControl - - Sixaxis Down : + + 6, 96 - - True + + Yes - - pnlSticks + + 107, 30 - - 159 + + 254 - - True + + Launch Program +with profile - - gBDeadzone + + cBLaunchProgram - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - bnLSDown + + 3 - - 1 + + Zoom - + + MiddleRight + + NoControl - - gBLightbar + + 117, 98 - - True + + 67, 23 - - 84 + + 253 - - pnlFull + + Browse... - + + btnBrowse + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnGyroZN + + gBOther - - 890, 361 + + 4 - - Empty: + + True - - 91 + + NoControl - - None + + 7, 75 - - pnlMain + + 73, 13 - - Flat + + 252 - - R2 : + + Use Controller - - 4, 22 + + lbUseController - - 183, 79 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13, 23 + + gBOther - - Flat + + 5 - - 44, 73 + + True - - Tilt Down - - + NoControl - - 15, 13 + + 169, 17 - - 158 + + 120, 17 - - tPShiftMod + + 251 - - NoControl + + Mouse Acceleration - - 250 + + cBMouseAccel - - Sixaxis Up : + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 17 + + gBOther - - 49, 13 + + 6 - - NoControl + + 81, 73 - - 0 + + 29, 20 - - Stretch + + 250 - - bnLSLeft + + nUDSixaxis - - 257 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBOther - - lbSATip + + 7 - - 1 + + True - - 202 + + NoControl - - 7, 56 + + 117, 73 - - 43, 15 + + Yes - - tBLowRedBar + + 142, 17 - - gBLightbar + + 242 - - pnlShiftMain + + for Mapping and readout - - NoControl + + cBControllerInput - - 226 + + System.Windows.Forms.CheckBox, 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 + + gBOther - - nUDRS + + 8 - - 5 + + True - - 2 + + NoControl - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7, 45 - - None + + Yes - - MiddleRight + + 100, 17 - - fLPShiftTouchSwipe + + 232 - - NoControl + + Idle Disconnect - - 55, 61 + + cBIdleDisconnect - - cBFlushHIDQueue + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPTouchSwipe + + gBOther - - openFileDialog1 + + 10 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 445, 225 - - 159 + + 436, 132 - - NoControl + + 247 - - 100, 20 + + Other - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gBOther - - 49, 20 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + $this - - 84, 40 + + 5 - - bnShiftRSDown + + True - - 348, 136 + + NoControl - - 0, 1 + + 8, 8 - - pnlShiftMain + + 176, 17 - - lbShiftGryo + + 226 - - tBBlueBar + + Use another color for shift mode - - bnTriangle + + cBShiftLight - - 169 + + System.Windows.Forms.CheckBox, 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 + + pnlShift - - 2 + + 0 - - tPController + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 250 + + 7, 33 - - 29, 13 + + 31, 13 - - 17, 17 + + 225 - - 84, 25 + + Shift: - - flushHIDQueue + + lbShift - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11, 15 + + pnlShift - - lbShiftBlue + + 1 - - bnTouchUpper + + True - - 5 + + NoControl - - 7, 47 + + 57, 33 - - 187 + + 15, 13 - - 72, 219 + + 158 - - 0 + + R - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbShiftRed - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlShift - - Left Y-Axis- + + 2 - + True - + NoControl - - 16, 17 - - - Upper Touch - - - 88, 47 + + 180, 33 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15, 13 - - Click a part of the controller to change action -Click the lightbar for color picker + + 159 - - pnlMain + + G - - tBsixaxisGyroX + + lbShiftGreen - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 165, 92 - - - Swipe Right - - - 58, 17 - - - gBOther - - - gBLightbar + + pnlShift - - tPController + + 3 - - 316, 17 + + True - - 11, 15 + + NoControl - - 219 + + 308, 33 - - Sixaxis Up : + + 14, 13 - - btnLightbar + + 160 - - 11 + + B - - Sixaxis Left : + + lbShiftBlue - - 190 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 34, 13 + + pnlShift - - NoControl + + 4 - - 6 + + False - + NoControl - - 80, 23 + + 73, 31 - - 7, 75 + + 100, 20 - - 11 + + 10 - - 257 + + tBShiftRedBar - - 23, 11 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 23 + + pnlShift - - 220 + + 5 - - pnlLowBattery + + False - + NoControl 196, 31 - - 7, 9 + + 100, 20 - - fLPShiftTouchSwipe + + 11 - - 23, 23 + + tBShiftGreenBar - - Double Tap + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlShift - - Flat + + 6 - - pnlFull + + False - + NoControl - - gBDeadzone + + 325, 31 - - pnlShiftMain + + 100, 20 - - NoControl + + 12 - - None + + tBShiftBlueBar - - Flat + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cBIdleDisconnect + + pnlShift - - 151, 88 + + 7 - - 223, 19 + + 1, 41 - - 200 + + 435, 60 - - 57, 33 + + 235 - - 215 + + False - - NoControl + + pnlShift - - pnlMain + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + gBLightbar + + + 0 + + + Flat + + NoControl - - False + + 344, 107 - - 9 + + 13, 13 - - 7, 41 + + 49 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - 49, 13 + + btnChargingColor - - 169 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + gBLightbar - - 83 + + 1 - - pnlMain + + True - - bnSwipeRight + + NoControl - - 7, 45 + + 289, 105 - - False + + 49, 17 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 238 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Color - - NoControl + + rBColor - - 1 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBLightbar - - gBTouchpad + + 2 - - L2 : + + True - - 227 + + NoControl - - Left Stick Left : + + 159, 105 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 51, 17 - - 13, 13 + + 237 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Pulse - - bnShiftTouchLeft + + rBFade - - 188, 45 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 13 + + gBLightbar - - Use Dinput only + + 3 - - 5, 17 + + True NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 97, 105 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58, 17 - - gBDeadzone + + 237 - - 161 + + Normal - - lbL2Track + + rBNormal - - lbFlashAt + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 166 + + gBLightbar - - 14 + + 4 - - gBRumble + + True - - 36, 120 + + NoControl - - 5 + + 216, 105 - - pBController + + 67, 17 - - Right Mouse Button + + 237 - - 71 + + Rainbow - - True + + rBRainbow - - gBTouchpad + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlShiftMain + + gBLightbar - - 249, 137 + + 5 - - 5, 88 + + True - - Flush HID - + + NoControl - - 5 + + 9, 108 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 82, 13 - - 25, 35 + + 236 - - 89, 3 + + While Charging: - - tBShiftRedBar + + lbWhileCharging - - 325, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 169, 17 + + gBLightbar - - 207 + + 6 - - gBDeadzone + + True - + NoControl - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 99, 17 - - bnRight + + 15, 13 - - gBOther + + 207 - - 175, 13 + + % - - btnShiftLeftStick + + lbPercentFlashBar - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBTouchpad + + gBLightbar - - bnShiftOptions + + 7 - - Right Bumper + + 55, 16 - - 7, 33 + + 43, 20 - - cBTouchpadJitterCompensation + + 167 - - Touchpad -Swipes: + + nUDflashLED - - NoControl + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + gBLightbar - - 72, 185 + + 9 - - Test Light + + True - - cBScroll + + NoControl - - pnlShiftSticks + + 9, 17 - - 23, 23 + + 44, 13 - - 5 + + 207 - - pnlSticks + + Flash at - - 436, 242 + + lbFlashAt - - 89 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + gBLightbar - - Right Stick + + 13 - - gBOther + + 443, 85 - - gBDeadzone + + 439, 129 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 247 - - None + + Lightbar - - Yes + + gBLightbar - - bnL3 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - + 3 - - 73, 17 + + True - - pnlShiftMain + + NoControl - - 255 + + 91, 16 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15, 13 - - 224 + + 207 - - 173, 61 + + % - + + lbPercentRumble + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + gBRumble - - pnlShift + + 0 - - 8 + + NoControl - - gBOther + + 75, 39 - - pnlShiftMain + + 72, 23 - - 3, 3 + + 214 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Test Light - - bnUp + + btnRumbleLightTest - - 9, 9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 158 + + gBRumble - - 100, 20 + + 1 - - Sixaxis Right : + + 445, 12 - - None + + 150, 67 - - nUDScroll + + 247 - - Sixaxis Left + + Rumble - - 84, 7 + + gBRumble - - L2 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40, 13 + + $this - - NoControl + + 2 - - pnlFull + + True - + NoControl - - pnlMain - - - 1 + + 168, 16 - - bnTouchRight + + 49, 13 - - $this + + 197 - - 72, 185 + + Sixaxis X - - gBLightbar + + lbSixaxisX - - pnlMain - - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbLowRed + + gBDeadzone - - 300, 88 + + 2 - - Left : + + True - - 2 + + NoControl - - 73 + + 168, 45 - - 428, 216 + + 49, 13 - - 10 + + 197 - - 191 + + Sixaxis Z - - False + + lbSixaxisZ - - 181 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 11 + + gBDeadzone 3 - - btnSATrack + + 223, 43 - + No - - fLPTouchSwipe + + 49, 20 - - 2 + + 203 - - Flat + + nUDSZ - - lbButtonMouseSens + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 216 + + gBDeadzone - - 216 + + 6 - - Share : + + 223, 15 - - 88 + + 49, 20 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 202 - - True + + nUDSX - - NoControl + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + gBDeadzone - - True + + 8 - - True + + 601, 11 - - 49, 19 + + 281, 67 - - False + + 248 - - 166 + + Deadzone - - lbR2 + + gBDeadzone - - 81 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 49 + + $this - - NoControl + + 1 - - 7 + + 153, 17 + + + False - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 170 + + 71, 25 - - bnLSUp + + 49, 19 - - NoControl + + 219 - - 87 + + tBsixaxisAccelX - - NoControl + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + pnlSixaxis - - 13, 5 + + 0 - - 329, 102 + + True - - 15 + + NoControl - - Flat + + 81, 4 - - 100, 20 + + 34, 13 - - pnlShiftMain + + 215 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Accel - - pnlSticks + + lb6Accel - - 225 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + pnlSixaxis - - tPControls + + 1 - - 361, 151 + + False - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 24 - - 5 + + 49, 19 - - btnLSTrack + + 222 - - 139, 40 + + tBsixaxisGyroX - - None + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + pnlSixaxis - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - NoControl - - - 4 - - - gBRumble + + True - - pnlShift + + NoControl - - None + + 13, 5 - - pnlShiftSticks + + 29, 13 - - 96, 96 + + 216 - - None + + Gyro - - MiddleCenter + + lb6Gryo - - pnlShift + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlSixaxis - - None + + 3 - - 5, 221 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - pnlShift + + 3, 49 - - 151, 56 + + 49, 19 - - 125, 31 + + 221 - - 91 + + tBsixaxisGyroY - - lbGreen + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSixaxis - - 31, 61 + + 4 - + False - + NoControl - - bnShiftL3 + + 3, 79 - - Fall Back + + 49, 19 - - Share : + + 220 - - nUDSZ + + tBsixaxisGyroZ - - 175, 3 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fall Back + + pnlSixaxis - - Lightbar + + 5 - - Back + + False - - Yes + + NoControl - - label2 + + 72, 49 - - 49, 20 + + 49, 19 - - 39, 13 + + 218 - - Flat + + tBsixaxisAccelY - - Flat + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + pnlSixaxis - - True + + 6 - - lbHold + + False - - rBNormal + + NoControl - - Scroll + + 71, 79 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 19 - - Right : + + 217 - - Left : + + tBsixaxisAccelZ - - None + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 3 + + pnlSixaxis - - 162 + + 7 - - Circle : + + 300, 88 - - While Charging: + + 125, 125 - - Triangle : + + 236 - - 14 + + False - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSixaxis - - Options : + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Down : + + tPController - - Sixaxis Gyro: + + 0 - - 1 + + True - - 43, 20 + + NoControl - - 203 + + 316, 33 19, 13 - - button1 + + 216 - - Flat + + L2 - - 9 + + MiddleCenter - - 196 + + lbL2Track - - 365, 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 250 + + tPController - - pnlShift + + 1 - - bnRSRight - - - 1, 41 - - - Up + + NoControl - - $this + + 112, 9 - - 49, 20 + + 9, 9 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 243 - - pnlSticks + + pBDelayTracker - - pnlSixaxis + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 250 + + tPController - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - pnlMain + + False - - lbPercentRumble + + Popup - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 20, 16 + + 361, 151 - - tPControls + + 3, 3 - - bnShiftLSLeft + + 237 - - bnShiftSwipeUp + + button1 - - Flat + + btnSATrack - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 208, 60 + + tPController - - L3 : + + 3 - - Swipe Up + + False - - Right Stick Up : + + Popup - - 0 + + NoControl - - gBOther + + 211, 149 - - 255 + + 3, 3 - - tPControls + + 237 - - True + + button1 - - 12 + + btnRSTrack - - 257, 7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left Stick Left : + + tPController - - 245, 132 + + 4 - - True + + NoControl - - Right Button + + 151, 56 - - 67, 13 + + 125, 31 - - None + + 216 - - NoControl + + Right Stick - - tPShiftMod + + MiddleCenter - - NoControl + + lbRSTip - - 247 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnShiftPS + + tPController - - lbControlTip + + 5 - - Fall Back + + True - - fLPTiltControls + + NoControl - - 168, 16 + + 7, 7 - - No + + 100, 13 - - 8 + + 216 - - 10 + + Input Delay: N/Ams - - gBLightbar + + MiddleCenter - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbInputDelay - - Right Y-Axis- + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 256 + + tPController - - False + + 6 - - 151, 89 + + True - - 2 + + NoControl - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 385, 33 - - 2 + + 21, 13 - - 192 + + 216 - - True + + R2 - - 31, 31 + + MiddleCenter - - bnSwipeUp + + lbR2Track - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fall Back + + tPController - - 253 + + 7 - - 207 + + NoControl - - tPController - - - Jitter Compensation - - - gBTouchpad - - - bnShiftRSUp - - - Right Stick Down : + + 7, 56 - - pnlShiftMain + + 125, 31 - - pnlMain + + 216 - - pnlSticks + + Left Stick - - 214 + + MiddleCenter - - 0 + + lbLSTip - - 44, 13 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + tPController - - 184 + + 8 - - 49, 17 + + NoControl - - pBShiftController + + 300, 56 - - pnlLowBattery + + 125, 31 - - 91 + + 216 - - 7 + + Sixaxis: X axis is flipped for easier reading - - 9, 9 + + MiddleCenter - - 172 + + lbSATip - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + tPController - - Controls + + 9 - - Fall Back + + False - - NoControl + + Popup - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 67, 149 - - Fall Back + + 3, 3 - - 80, 23 + + 237 button1 - - 180, 9 - - - No - - - 248 - - - None - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - NoControl - - - 219, 25 + + btnLSTrack - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StretchImage - - - True + + tPController - - NoControl + + 10 @@ -3275,3900 +3149,4026 @@ Swipes: AElFTkSuQmCC - - 3 - - - lBShiftControls - - - 3, 3, 3, 3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - Options - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 191 - - - Flat - - - None - - - None - - - Left Stick Up : - - - 79, 19 - - - LS - - - None - - - 197 - - - 4 - - - 117, 98 - - - lbInputDelay - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Flat - - - 15, 13 - - - pnlSticks - - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 249, 137 + + 348, 136 - - False + + 31, 31 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StretchImage - - 80, 23 + + 242 - - NoControl + + pBSADeadzone - - Fall Back + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + tPController - - 171 + + 11 - - NoControl - - - 3 - - - 3 + + + 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 + AElFTkSuQmCC + - + NoControl - - False - - - 73, 13 - - - 23, 23 - - - 19, 17 - - - 15, 13 - - - 256 + + 207, 145 - - tBR2 + + 9, 9 - - MiddleCenter + + StretchImage - - Accel + + 241 - - Left Stick Right : + + False - - 5 + + pBRSDeadzone - - Slide + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Full: + + tPController - - NoControl + + 12 - + NoControl - - None - - - 183, 116 + + 151, 88 - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 125 - - 2 + + 239 - - fLPTiltControls + + TopCenter - - PS : + + lbRSTrack - - 29, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + tPController - - rBFade + + 13 - - 11, 21 + + + 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 + AElFTkSuQmCC + - + NoControl - - True - - - 2 - - - NoControl + + 63, 145 - - 84, 25 + + 9, 9 - - pnlMain + + StretchImage - - nUDRainbow + + 240 - - Left X-Axis- + + False - - lbShiftRed + + pBLSDeadzone - - bnShiftTouchMulti + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + tPController - - Flat + + 14 - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - bnShiftR1 + + 5, 88 - - 14, 13 + + 125, 125 - - True + + 239 - - 217 + + TopCenter - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbLSTrack - - label1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPController - - pnlMain + + 15 - - None + + False - - 254 + + False - + NoControl - - 11, 23 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 365, 3 - - Right Stick Left : + + Vertical - - 12 + + Yes - - 3, 3 + + 25, 49 - - cBTPforControls + + 244 - - 40, 20 + + tBR2 - - 36, 92 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + tPController - - 31, 0 + + 16 - - 125, 125 + + False - - 97, 105 + + False - + NoControl - - False + + 331, 3 - - pnlShiftSticks + + Vertical - - 5 + + Yes - - NoControl + + True - - bnSquare + + 25, 49 - - 0 + + 244 - - 175, 0 + + tBL2 - - 79, 16 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cBSlide + + tPController - - bnShare + + 17 - - Share + + NoControl - - 44, 73 + + 300, 88 - - Triangle + + 125, 125 - - True + + 239 - - Circle + + TopCenter - - Square + + lbSATrack - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cross + + tPController - - 5, 221 + + 18 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 22 - - pBShiftSticks + + 3, 3, 3, 3 - - Left + + 428, 216 - - 0, 0 + + 2 - - 0 + + Controller Readings - - 171 + + tPController - - lbLowGreen + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 230 + + tabControls - - Fall Back + + 2 - - 209, 20 + + True - - 1 + + NoControl - - <- Back to full view + + 5, 221 - - None + + 59, 26 - - True + + 257 - - pnlShiftMain + + Touchpad +Swipes: - - 428, 216 + + label2 - - 7, 7 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tPShiftMod + + + 0 + + NoControl - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3 - - Up : + + 80, 23 - - Use another color for shift mode + + 250 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Swipe Up - - True + + bnShiftSwipeUp - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - R2 + + fLPShiftTouchSwipe + + + 0 - - Left Stick Down : + + NoControl - - fLPShiftTouchSwipe + + 89, 3 - - 21, 92 + + 80, 23 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 250 - - NoControl + + Swipe Down - - bnRSDown + + bnShiftSwipeDown - - bnRSLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - R2 + + fLPShiftTouchSwipe - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - + NoControl - - 181, 16 + + 175, 3 - - Fall Back + + 80, 23 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 250 - - 168 + + Swipe Left - - 6 + + bnShiftSwipeLeft - - Sixaxis Right + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBDeadzone + + fLPShiftTouchSwipe - - 6 + + 2 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - bnDown + + 261, 3 - - NoControl + + 80, 23 - - 11, 17 + + 250 - - pnlMain + + Swipe Right - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnShiftSwipeRight - - 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + fLPShiftTouchSwipe - - 67, 17 + + 3 - - 4 + + 72, 219 - - tPController + + 351, 31 - - gBTouchpad + + 258 - - LS + + fLPShiftTouchSwipe - - B + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tPShiftMod - - 21, 92 + + 1 - - B + + True - - 167, 33 + + NoControl - - 73 + + 5, 192 - - 16 + + 67, 13 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 255 - - 1 + + Sixaxis Gyro: - - 10 + + lbShiftGryo - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tPShiftMod - - 209, 92 + + 2 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 250 + + 3, 3 - - 245, 132 + + 80, 23 - - Sixaxis: X axis is flipped for easier reading + + 250 - - pnlShiftMain + + Tilt Up - - Right Stick Up : + + bnShiftGyroZN - - 100, 13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnShiftSwipeRight + + fLPShiftTiltControls - - 125, 125 + + 0 - - Color by Battery % + + NoControl - - 183, 92 + + 89, 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 23 - - Flat + + 250 - - gBRumble + + Tilt Down - - pnlMain + + bnShiftGyroZP - - 243 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + fLPShiftTiltControls - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - True + + 175, 3 - - 164, 19 + + 80, 23 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 250 - - gBLightbar + + Tilt Left - - 3, 3, 3, 3 + + bnShiftGyroXP - - <- Back to full view + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlShiftSticks + + fLPShiftTiltControls - - lbRS + + 2 - - lbLSTrack + + NoControl - - 0 + + 261, 3 - - 193 + + 80, 23 - - 241 + + 250 - - Left Stick + + Tilt Right - - NoControl + + bnShiftGyroXN - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 187, 76 + + fLPShiftTiltControls - - True + + 3 - - 250 + + 72, 185 - - NoControl + + 351, 31 - - Input Delay: N/Ams + + 256 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPShiftTiltControls - - 13 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tPShiftMod - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - pnlSticks + + (nothing)/shift off - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Cross - - 25, 35 + + Circle - - 1 + + Square - - 29, 13 + + Triangle - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Options - - 4 + + Share - - Right Stick Right : + + Up - - Right Touch : + + Down - - 223, 43 + + Left - - nUDSX + + Right - - Use Controller + + PS - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + L1 - - Browse... + + R1 - - 3, 79 + + L2 - - 43, 14 + + R2 - - 80 + + L3 - - 40, 13 + + R3 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left Touch - - tBRedBar + + Upper Touch - - btnShiftRightStick + + Multitouch - - False + + Right Touch - - Yes + + Sixaxis Up - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Down - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Left - - 160 + + Sixaxis Right - - 238 + + Touchpad (not clicked in) - - gBLightbar + + 79, 3 - - tPController + + 145, 21 - - NoControl + + 192 - - Options : + + cBShiftControl - - Y Button + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Start with Slide/Scroll off + + tPShiftMod - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Cross : - - tPController + + Circle : - - 22, 13 + + Sqaure : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Triangle : - - 71, 25 + + Options : - - 3 + + Share : - - gBLightbar + + Up : + + + Down : + + + Left : - - Stretch + + Right : - - NoControl + + PS : - - NoControl + + L1 : + + + R1 : L2 : - - None + + R2 : - - 187, 76 + + L3 : - - 3, 3 + + R3 : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left Touch : - - NoControl + + Upper Touch : - - 60, 19 + + Multitouch : - - 253 + + Right Touch : - - NoControl + + Left Stick Up : - - 10 + + Left Stick Down : - - 261, 3 + + Left Stick Left : - - NoControl + + Left Stick Right : - - bnShiftSquare + + Right Stick Up : - - 4 + + Right Stick Down : - - 3 + + Right Stick Left : - - None + + Right Stick Right : - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Up : - - bnTouchMulti + + Sixaxis Down : - - tPShiftMod + + Sixaxis Left : - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Right : - - gBOther + + 257, 7 - - NoControl + + 169, 173 - - fLPShiftTiltControls + + 188 - - False + + lBShiftControls - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 241 + + tPShiftMod - - Left X-Axis+ + + 5 - - pnlMain + + True - - gBTouchpad + + NoControl - - lbWhileCharging + + 44, 7 - - 237 + + 29, 13 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 189 - - 125, 31 + + Hold - - 175, 3 + + MiddleCenter - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbHold - - System.Windows.Forms.PictureBox, 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 - - Multitouch + + tPShiftMod - - 13, 23 + + 6 - - Right + + True - - Flat + + NoControl - - 169, 173 + + 84, 24 - - 1 + + 105, 13 - - 31, 33 + + 189 - - Triangle : + + to use these controls - - 207 + + MiddleCenter - - Fall Back + + lbtoUse - - 4, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Middle Mouse Button + + tPShiftMod - - 74 + + 7 - + + Stretch + + False - - tPController + + NoControl - - 99, 96 + + 0, 0 - - 325, 31 + + 245, 132 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StretchImage - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - True + + pBShiftController - - 4 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBDeadzone + + pnlShiftMain - - 218 + + 0 - - 19 + + None + + + Flat + + + NoControl - - cBTap + + 84, 25 - - True + + 79, 16 193 - - nUDLS + + Fall Back - - Vertical + + bnShiftTouchUpper - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + pnlShiftMain - - 20 + + 1 - + + None + + + Flat + + NoControl - - No + + 84, 40 - + + 25, 35 + + + 191 + + + Fall Back + + + bnShiftTouchLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBsixaxisGyroZ + + pnlShiftMain - - 11, 23 + + 2 - + None - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - Down Button + + NoControl - - 2 + + 139, 40 - - 145, 21 + + 23, 33 - - pnlShiftMain + + 190 - - 105, 20 + + Fall Back - - cBDoubleTap + + bnShiftTouchRight - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + pnlShiftMain - - 31, 33 + + 3 - - 14 + + None - - 166 + + Flat - - 180 + + NoControl - - Yes + + 109, 40 - - 86 + + 31, 33 - - 151, 89 + + 192 - - 11, 23 + + Fall Back - - 209, 92 + + bnShiftTouchMulti - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlShiftMain + + + 4 + + + None + + + Flat + + NoControl - - 250 + + 175, 13 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43, 15 - - 188 + + 87 - - Shift Modifier + + Fall Back - - 44, 48 + + bnShiftR1 - - tPControls + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlShiftMain - - 2 + + 5 - - Left Trigger + + None - - True + + Flat - + NoControl - - StretchImage + + 187, 76 - - 23, 33 + + 19, 17 - - 9 + + 74 - - 59, 26 + + Fall Back - - NoControl + + bnShiftCross - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlShiftMain - - True + + 6 - - NoControl + + None - - True + + Flat - + NoControl - - bnShiftLSRight + + 208, 60 - - btnRightStick + + 16, 17 - - Sixaxis Down : + + 71 + + + Fall Back + + + bnShiftCircle - - 139, 40 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 71 + + pnlShiftMain - - 2 + + 7 - + None - - PS + + Flat - - 13 + + NoControl - - Flat + + 151, 89 - - True + + 28, 28 - - bnGyroXN + + 91 - - None + + RS - - gBOther + + btnShiftRightStick - - 84 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + pnlShiftMain - + + 8 + + None - - lbGryo + + Flat - - 7 + + NoControl - - 15, 13 + + 173, 61 - - 72, 23 + + 15, 15 - - None + + 72 - - 44, 7 + + Fall Back - - B + + bnShiftSquare - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163 + + pnlShiftMain - - NoControl + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - 59, 26 + + Flat - - bnShiftLSUp + + NoControl - - True + + 84, 7 - - X Button + + 79, 19 - - Right X-Axis+ + + 91 - - 9, 9 + + Lightbar - - lbRed + + btnShiftLightbar - - tBLowGreenBar + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 150, 67 + + pnlShiftMain - - 3 + + 10 - - 80, 23 + + None - + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 351, 31 + + 188, 45 - - 6 + + 20, 16 - - bnR1 + + 73 - - 59, 13 + + Fall Back - - 12 + + bnShiftTriangle - - Lightbar + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlShiftMain + + + 11 + + + None + + Flat - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44, 48 - - btnShiftFullView + + 11, 15 - - nUDR2 + + 80 - - 165 + + Fall Back - - 436, 132 + + bnShiftUp - - Touchpad + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + pnlShiftMain - - bnShiftSwipeDown + + 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - 157 + + Flat - - pnlShiftSticks + + NoControl - - tPController + + 71, 89 - - 190 + + 28, 28 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 91 - - True + + LS - - 11, 23 + + btnShiftLeftStick - - L2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain - - Right Touch : + + 13 - - lb6Accel + + None - - 336, 105 + + Flat - + NoControl - - 7 + + 44, 73 - - 250 + + 12, 12 - - Normal + + 81 - + + Fall Back + + + bnShiftDown + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - L1 : + + pnlShiftMain - - Sixaxis Left : + + 14 - - 23, 33 + + None - - 0 + + Flat - - 17, 17 + + NoControl - - Tilt Down + + 31, 0 - - - iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAYAAAA8AXHiAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH - DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp - bGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZE - sRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTs - AIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4 - JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR - 3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQd - li7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtF - ehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGX - wzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNF - hImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH55 - 4SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJ - VgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB - 5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyC - qbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiE - j6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I - 1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9 - rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhG - fDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFp - B+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJ - yeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJC - YVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQln - yfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48v - vacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0Cvp - vfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15L - Wytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AA - bWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0z - llmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHW - ztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5s - xybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6 - eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPw - YyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmR - XVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNm - WS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wl - xqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2 - dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8 - V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33za - Eb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2v - Tqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqb - PhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/ - 0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h - /HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavr - XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS - fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+ - tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/ - 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEwAACxMBAJqcGAAACK5JREFUeF7t3T2P1FYU - xvFNlSWpaWkokLamIBISigTN5gPwDdACQqkRJVJICdTbRqKggZY6K0WiodrQIBFp6ZeOFEvO38xOZuzH - M3659tiep/hJy2F2fH3PYRjb92Xn687OttoNe2E/HITH4TC8DkfhOJyE0/AlnM3wMzH+jtfwWn6H3+U9 - eC/ek/fmGOrYkyeDE/RD+CncCc/Dm/BP+NoxjsGxOCbHpg20RbVxUmRwAr4LJPHX8Ef4O6jEbwJtoU20 - jTbSVnUOoyaDI/Vj+CX8Hv4MKqlDRFtpM23nHNS5jY4MjszP4bfwV1CJGxPOgXPhnNS5joYMjsClcDfw - pfnfoJI0ZpwT58Y5cq6qDwZNBgfsauDK611QCZkizpVz5txVnwySDA7Q9fA09HElN1ScO31AX6g+GhQZ - HJBrgc78FFRnbyP6gj6hb1SfDYIMDsCVwMf/h6A61771DX1EX6k+3CgZ3CBuHt4LU7jC6wt9RZ8N6sar - DG7IrfAiqM6z9eg7+lD1be9ksGcXw6PwMagOs+roQ/qSPlV93RsZ7NHN8DKoTrLm6FP6VvV5L2SwBzwf - exDeB9Ux1h59Sx9v5FmkDHbscngWVGdYevQ1fa5y0RkZ7NCN8CqoDrDu0Of0vcpJJ2SwI7fD26BO3LpH - 35MDlZvkZLAD94Ov+jaPHJALlaOkZDCxh+FzUCdq/SMX5ETlKhkZTOT7wCMHdXK2eeSGHKnctSaDCVwI - T4I6IRsOckSuVA5bkcGW+FfgohoPcpX8k0sGW/J/f+NDzlQuG5PBFvhSqBpuw5f0C70MNsRlrK/+xovc - JbsVIYMNcOPN96nGjxwmuYkqgzXxqMB31KeDXLZ+/CODNfBw08/+poectnpwLYMVMRzDoxSmi9w2HnIj - gxUx1kc1yKaDHKvcryWDFTA60YP0po8cNxqJKoNrMJ7aw4m3B7muPYZeBtdgsL5qgE0XOVe1UEoGV2B6 - ke9XbR9yXmtqmQyWYEKk5/1tL3JfeVKsDJZgtq06oG0PakDVRoEMCqwP4GnvRg1UWitCBgUPhbFzlYbY - yGAOy+V41Rc7Ry2sXUJJBnNYi0kdwLYXNaFqZU4GF7B6nBc9szxqYuXKgjK4wJ9WVmblp5YMzrCY6jav - +WmrURulC+7K4IyvBG2d0itEGQysLb5NS15bM9SIXIe+EJhh4Xr1RmZ51EqhhgqBGXZFUG9ilketFGqo - EAjs4zLFbUSsG9RKYe+fpT/MsEmQegOzMtTMUh0t/SGwrZkfNltd1MzSlniLRQX2zFO/aLYOtTOvpcWi - Ahsyql8yW4famdfSYlExh2xMO5PasFA783mIi4XF/sTqF8yqooYKhcXm1+rFZlVRQ4XCYmd19WKzqqih - pcJi9gXb9qsXm1VFDWUzec4Ly9+vLJXse9Z5Yd2ZBc3aopbip2+ez4JmbVFL8dM3b2ZBs7aopfhpZ2c3 - eAiypUIt7VJYewtBsxT2KKz9XNCsrX0K6yAXNGvrgMLybBxL7TGFdZgLmrV1SGF54oSl9prCOsoFzdo6 - orCOc0Gzto4prJNc0KytEwrrNBc0a+uUwvqSC5q19YXCOssFzdo6c2FZF7LC8n+Fllr2X6G/vFtq2Zd3 - 326w1LLbDb5BaqllN0j9SMdSyx7p+CG0pZY9hPawGUstGzbjgX6WWjbQz0OTLbVsaLInU1hq2WQKT/+y - 1LLpX56wainNJ6zCU+wtlfkUe3hREEtlaVEQL2NkqSwtY+SF1yyVpYXXvFSkpVBYKhJe3NbaKixuCy/H - bW3J5bj9Pcvayr5fYbGwvOWJtVG65Qm8SZM1VbpJE7ytnDW1cls5b4RpTazdCBPeutfqWrt1L7zZuNVR - ebNxeIKFVUWtFGqoEJi5G9SbmOVRK4UaKgRmLoV3Qb2R2TlqhFop1FAhsMCzd2wdakTVjg7OXA0esmxl - qA1qRNWODi54GtSbmlEbqmYyMrjgevgU1Bvb9qImqA1VMxkZzPGnluWt/LSCDOZcCx+COoBtH2qBmlC1 - MieDgq8Q7VzpleAiGRSuBD+cNmqAWlA1skQGS9wL6mC2PagBVRsFMliC2RcvgjqgTR+5z2bgVCGDK9wK - H4M6sE0XOSf3qiYkGVzjUVAHt+ki56oWSsngGhfDy6AaYNNDrsm5qoVSMljBzfA+qIbYdJBjcq1qYCUZ - rOhBUI2x6SDHKvdryWBFzCF7FlSDbPzI7XyeYF0yWMPl8Cqohtl4kVNyq3JeiQzWdCO8DaqBNj7kkpyq - XFcmgw3cDr6/NX7kkFyqHNcigw3dD5+DarANH7kjhyq3tclgCw+DarQNH7lTOW1EBlvyEJvxqTQUpg4Z - bOn78CSoE7DhIVfkTOWyMRlM4EJwcQ0fOSJXKoetyGAi/Cvwf4vDRW6Sf1Kdk8HE+FLoq8XhIBdJv6gr - MtgBLmN9n2vzyEGyWwqryGBHuPHmO/SbQ98nuflZhQx2iEcFfrbYP/q89WOaOmSwYzzc9KiI/tDXrR4o - NyGDPWA4BmN9PFiwO/Qtfdx46EsbMtgjRid6mHN69GmjkZ+pyGDPGE/NYH1fNbZHH9KXtceopyaDG8L0 - Is9bbI6+qzVFq0syuEFMiGS2rafzV0df0WeVJ5P2QQYHgPUBeOTgVW7K0Tf0UaW1FPomgwPCcjmsxeTF - 3/5HX9Ana5cS2iQZHCBWj6Mzt3lNVM6dPli5kt5QyOCAsZgqH//btFQ458o5ly4kO0QyOAKsLc7C9eyK - MMXtWTgnzo1zlOuoD50Mjgz7uLBJ0BSuJDkHzqWwN83YyOBIsa0Ze+axIeOYdoqlrbSZti9tzTZmMjgB - PB9jf2I2v2ZndbbtV0ndBNpCm2gbbdzIs7yuyeAEcfOQJN4Jz8Ob0McVJsfgWByTY9OGQd3I7IoMbond - sBf2w0Hgyusw8KX5KByHk3AavoSzGX4mxt/xGl7L7/C7vAfvxXvy3hxDHXvidnb+AyTfWAn9iVGiAAAA - AElFTkSuQmCC - + + 43, 12 - - None + + 90 - - 28, 28 + + Fall Back - - NoControl + + bnShiftL2 - - 36, 77 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + pnlShiftMain - + + 15 + + None - - 206 + + Flat - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55, 61 - + + 15, 15 + + + 82 + + + Fall Back + + + bnShiftRight + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left Bumper + + pnlShiftMain - - Right Y-Axis+ + + 16 - - 1 + + None - - Options + + Flat - - bnShiftGyroXP + + NoControl - - 71, 33 + + 175, 0 - - Fall Back + + 40, 13 - - 211, 149 + + 89 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fall Back - - 22 + + bnShiftR2 - - StretchImage + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 49, 20 + + pnlShiftMain - - 23, 23 + + 17 - - 15, 13 + + None - - MiddleCenter + + Flat - - nUDSixaxis + + NoControl - - 25, 49 + + 31, 61 - - Mouse Sensitivity: + + 15, 12 - - lbShift + + 83 - + Fall Back - - pnlLowBattery - - - pnlMain + + bnShiftLeft - - gBDeadzone + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StretchImage + + pnlShiftMain - - secs/cycle + + 18 - - L3 : + + None - - Sixaxis X + + Flat - - bnShiftTriangle + + NoControl - - 57, 7 + + 31, 13 - - gBOther + + 43, 15 - - btnBrowse + + 88 - - NoControl + + Fall Back - - Flat + + bnShiftL1 - - nUDL2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + pnlShiftMain - - 300, 88 + + 19 - - 43, 12 + + None - - 223 + + Flat - + NoControl - - bnShiftR3 - - - 19, 17 + + 167, 33 - - 73, 31 + + 11, 21 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 84 - - 1 + + Fall Back - - 1 + + bnShiftOptions - - pnlLowBattery + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + pnlShiftMain - - NoControl + + 20 - - 8 + + None - - 40, 20 + + Flat - + NoControl - - 11 + + 115, 87 - - lbLSTip + + 17, 17 - - 107, 30 + + 86 - - NoControl + + Fall Back - - tPShiftMod + + bnShiftPS - - 31, 15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tBL2 + + pnlShiftMain - - 10 + + 21 - - NoControl + + None - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - 72, 49 + + NoControl - - Touchpad (not clicked in) + + 71, 33 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11, 17 - - L3 + + 85 - - bnShiftGyroXN + + Fall Back - - 246 + + bnShiftShare - - 254 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 237 + + pnlShiftMain - - Sixaxis Gyro: + + 22 - - nUDTouch + + 7, 41 - - tPControls + + 249, 137 - - 18 + + 190 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlShiftMain - - bnRSUp + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + tPShiftMod - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 7, 41 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71, 9 - - False + + 105, 23 - - 125, 31 + + 184 - - 10 + + <- Back to full view - - True + + btnShiftFullView - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlShiftSticks + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - gBLightbar + + NoControl - - $this + + 0, 1 - - 111, 15 + + 245, 132 - - True + + StretchImage - - 11, 23 + + 161 - - 16, 17 + + pBShiftSticks - - 89, 3 + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Swipe Down + + pnlShiftSticks - - RS + + 1 - - 45, 17 + + None - - True + + Flat - - MiddleCenter + + NoControl - - 4 + + 36, 92 - - 0 + + 23, 23 - - 1 + + 163 - - 105, 23 + + Fall Back - - 12, 12 + + bnShiftL3 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - numUDMouseSens + + pnlShiftSticks - - 4 + + 2 + + + None Flat - - pnlShiftSticks + + NoControl - - 117, 73 + + 183, 116 - - 169, 173 + + 23, 11 - - 3, 24 + + 172 - - NoControl + + Fall Back - - bnLeft + + bnShiftRSDown - - nUDTap + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 12 + + pnlShiftSticks - + + 3 + + + None + + + Flat + + NoControl - - lbIdleMinutes + + 36, 77 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 11 - - 239 + + 167 - - 31, 0 + + Fall Back - - 203 + + bnShiftLSUp - - 3, 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + pnlShiftSticks - - 261, 3 + + 4 - - button1 + + None - + + Flat + + NoControl - - 3 + + 183, 79 - - Down + + 23, 11 - - NoControl + + 171 - - None + + Fall Back - - 31, 61 + + bnShiftRSUp - - Swipe Up + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 115, 30 + + pnlShiftSticks - - 1 + + 5 - - tPController + + None - - 176, 17 + + Flat - + + NoControl + + + 21, 92 + + + 11, 23 + + + 164 + + Fall Back - + + bnShiftLSLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlShift + + pnlShiftSticks - - (nothing)/shift off + + 6 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None + + + Flat - + NoControl - - 67, 23 + + 209, 92 - - 7 + + 13, 23 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 170 - - False + + Fall Back - - NoControl + + bnShiftRSRight - - 23, 23 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 74 + + pnlShiftSticks - - 15 + + 7 - - 167 + + None - - 208, 60 + + Flat - - 49 + + NoControl - - pnlShiftMain + + 65, 92 - - Controller Readings + + 11, 23 - - 23, 11 + + 165 - - 88, 17 + + Fall Back - - 163 + + bnShiftLSRight - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 81 - - + pnlShiftSticks - - 239 - - - 6 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - + None - + Flat - - 67, 149 - - - pnlMain + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 165, 92 - - Flat + + 11, 23 - - 13, 13 + + 169 - - 183, 116 + + Fall Back - - Left Stick + + bnShiftRSLeft - - 19, 13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Swipe Right + + pnlShiftSticks - - 308, 7 + + 9 - - pnlShift + + None - - 25, 49 + + Flat - + NoControl - - Down : + + 36, 120 - - False + + 23, 11 - - Profile Options + + 166 - - bnShiftSwipeLeft + + Fall Back - - cBControllerInput + + bnShiftLSDown - - pBSADeadzone + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlShiftSticks - + + 10 + + + None + + + Flat + + NoControl - - Fall Back + + 183, 92 - - 221 + + 23, 23 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 168 - - None + + Fall Back - - 9 + + bnShiftR3 - - 23, 11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlShiftSticks - - None + + 11 - - NoControl + + 7, 41 - - lbR2Track + + 249, 143 - - 1 + + 191 - - Popup + + False - - StretchImage + + pnlShiftSticks - - 82, 17 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fall Back + + tPShiftMod - - 85 + + 9 - - 26, 13 + + 4, 22 - - 49, 20 + + 3, 3, 3, 3 - - 43, 15 + + 428, 216 - - 109, 16 + + 1 + + + Shift Modifier - - cBDinput + + tPShiftMod - - Flat + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 196, 4 + + tabControls - - NoControl + + 1 - - 11 + + True - + NoControl - - 13 + + 5, 221 - - 250 + + 59, 26 - - 232 + + 255 - - 357, 73 + + Touchpad +Swipes: - - NoControl + + label1 - - No + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + tPControls - - LS + + 0 - + + NoControl + + 3, 3 - - 9 + + 80, 23 - - 175, 0 + + 250 - - pnlSticks + + Swipe Up - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnSwipeUp - - 161 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 173, 61 + + fLPTouchSwipe - - 3, 3 + + 0 - + + NoControl + + + 89, 3 + + 80, 23 - - 351, 31 + + 250 - - Sixaxis Right : + + Swipe Down - - NoControl + + bnSwipeDown - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 160 + + fLPTouchSwipe - - lbLS + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 3 - - 82 + + 80, 23 - - Right Touch + + 250 - - None + + Swipe Left - - tPControls + + bnSwipeLeft - - tPController + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + fLPTouchSwipe - - NoControl + + 2 - - 8 + + NoControl - - 250 + + 261, 3 - - lowColorChooserButton + + 80, 23 - - 28, 28 + + 250 - - Flat + + Swipe Right - - 222 + + bnSwipeRight - - 99, 17 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + fLPTouchSwipe - - True + + 3 - - bnR2 + + 72, 219 - - fLPTiltControls + + 351, 31 - - NoControl + + 256 - - NoControl + + fLPTouchSwipe - - lbPercentFlashBar + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flash at + + tPControls - - 16, 16 + + 1 - - Flat + + True - - 23, 11 + + NoControl - - 71, 23 + + 5, 192 - - 189 + + 67, 13 - - to use these controls + + 253 - - 0, 0 + + Sixaxis Gyro: - - 5 + + lbGryo - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 188, 45 + + tPControls - - tPController + + 2 - - tPShiftMod + + NoControl - - 167 + + 3, 3 - - 43, 15 + + 80, 23 - - Fall Back + + 250 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Tilt Up - - None + + bnGyroZN - - False + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + fLPTiltControls - - bnShiftDown + + 0 - - None + + NoControl - - tPController + + 89, 3 - - Vertical + + 80, 23 - - 216 + + 250 - - tPController + + Tilt Down - - 43, 15 + + bnGyroZP - - 231 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + fLPTiltControls - - 3 + + 1 - + NoControl - - 15, 15 + + 175, 3 - - 445, 225 + + 80, 23 - - None + + 250 - - 9 + + Tilt Left - - 172 + + bnGyroXP - - False + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 435, 106 + + fLPTiltControls - - 190 + + 2 - - gBLightbar + + NoControl - - Launch Program -with profile + + 261, 3 - - 75, 39 + + 80, 23 - - 31, 13 + + 250 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Tilt Right - - 4 + + bnGyroXN - - lbBlue + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 36, 77 + + fLPTiltControls - - Flat + + 3 - - pnlShiftSticks + + 72, 185 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 351, 31 - - lb6Gryo + + 254 - - 4 + + fLPTiltControls - - 237 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPShiftTiltControls + + tPControls - - Flat + + 3 - - Yes + + Stretch - - 11, 17 + + False - - 2 + + NoControl - - 256 + + 0, 0 - - 6, 96 + + 245, 132 - - 4 + + StretchImage - - 92, 13 + + 1 - - 83 + + pBController - - NoControl + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + pnlMain - - fLPShiftTiltControls + + 0 - - 87 + + None - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - + NoControl - - bnShiftRSRight + + 84, 25 - - 0 + + 79, 16 - - Fall Back + + 193 - - tPController + + Middle Mouse Button + + + bnTouchUpper + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain - - 49, 19 + + 1 - + None - + + Flat + + NoControl - - 196 + + 84, 40 - - Swipe Down + + 25, 35 - - True + + 191 - - Flat + + Left Mouse Button - - 183, 92 + + bnTouchLeft - - 165, 92 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 3 + + pnlMain - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - bnShiftGyroZP + + None - - tPShiftMod + + Flat - - Swipe Left + + NoControl - - 228 + + 139, 40 - - 67, 13 + + 23, 33 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 190 - - 247 + + Left Mouse Button - - 250 + + bnTouchRight - - pnlSixaxis + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbFull + + pnlMain - - lbShiftGreen + + 3 - - tPControls + + None - - gBTouchpad + + Flat - - 13 + + NoControl - - pnlShiftMain + + 109, 40 - - 100, 20 + + 31, 33 - - NoControl + + 192 - - No + + Right Mouse Button - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnTouchMulti - - gBTouchpad + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + pnlMain - - 1, 41 - - - 65, 92 - - - pnlLowBattery + + 4 - - False + + None - - lbUseController + + Flat - - 226 + + NoControl - - pnlLowBattery + + 175, 13 - - 0 + + 43, 15 - - pnlSixaxis + + 87 - - 57, 9 + + Right Bumper - - 236 + + bnR1 - - RS + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlMain - - NoControl + + 5 - - 601, 11 + + None - + Flat - + NoControl - - 164 + + 187, 76 - - PS : + + 19, 17 - - 12, 79 + + 74 - - Fall Back + + A Button - + + bnCross + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - rBColor + + pnlMain - - Fall Back + + 6 - - Fall Back + + None - - 6 + + Flat - - fLPTiltControls + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 208, 60 - - 11 + + 16, 17 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71 - - 197 + + B Button - - Flat + + bnCircle - - 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlMain - - 435, 29 + + 7 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - - fLPShiftTouchSwipe + + Flat - - 316, 33 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 151, 89 - - Cross : + + 28, 28 - - 253 + + 91 - - Test Heavy + + RS - - bnLSRight + + btnRightStick - - Fall Back + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnFullView + + pnlMain - - 80, 23 + + 8 - + None - - 124, 17 + + Flat - - 73, 5 + + NoControl - - pnlLowBattery + + 173, 61 - - gBDeadzone + + 15, 15 - - R3 : + + 72 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + X Button - - Yes + + bnSquare - - Right Stick Down : + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233 + + pnlMain - + + 9 + + None - - pnlFull + + Flat - + NoControl - - 906, 400 + + 84, 7 - - pBDelayTracker + + 79, 19 - - NoControl + + 91 - - 115, 87 + + Lightbar - - Cross : + + btnLightbar - - Tilt Right + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 49, 19 + + pnlMain - - 82, 13 + + 10 - - pnlMain + + None - - tPController + + Flat - - pnlLowBattery + + NoControl - - 111, 43 + + 188, 45 - - False + + 20, 16 - - 249, 143 + + 73 - - 1 + + Y Button - - gBLightbar + + bnTriangle - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11, 23 + + pnlMain - - 85 + + 11 - + + None + + Flat - - pBRSDeadzone + + NoControl - - 0, 1 + + 44, 48 - - lbEmpty + + 11, 15 - - 80, 23 + + 80 - - Color + + Up Button - - gBOther + + bnUp - - tPControls + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + pnlMain - - 106, 50 + + 12 - + None - - 79, 16 + + Flat - - 163, 47 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71, 89 - - 31, 13 + + 28, 28 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 91 - - False + + LS - - 1 + + btnLeftStick - - gBDeadzone + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + pnlMain - - 207, 145 + + 13 - + + None + + Flat - - 90 + + NoControl - - 435, 60 + + 44, 73 - - 24, 5 + + 12, 12 - - 3 + + 81 - - Zoom + + Down Button - - 18 + + bnDown - - 43, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pBSticks + + pnlMain - - 7 + + 14 - + None - - Tap - - - 3, 251 + + Flat - - StretchImage + + NoControl - - R3 : + + 55, 61 - - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.155.0, Culture=neutral, PublicKeyToken=null + + 15, 15 - - 28, 13 + + 82 - - None + + Right Button - - cBShiftControl + + bnRight - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14, 13 + + pnlMain - - NoControl + + 15 - - True + + None - - tPShiftMod + + Flat - - 31, 13 + + NoControl - - 44, 48 + + 31, 61 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15, 12 - - bnShiftL1 + + 83 - - 71, 9 + + Left Button - - pnlMain + + bnLeft - - 7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnL1 + + pnlMain - - 216 + + 16 - - pnlShiftMain + + None - - 79, 3 + + Flat - - gBLightbar + + NoControl - - Lightbar + + 31, 13 - - NoControl + + 43, 15 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 88 - - 71, 33 + + Left Bumper - - False + + bnL1 - - B Button + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 250 + + pnlMain - - NoControl + + 17 - - 201 + + None - + + Flat + + NoControl - - 49, 20 + + 167, 33 - - bnSwipeLeft + + 11, 21 - - 180, 33 + + 84 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Start - - bnShiftTouchUpper + + bnOptions - - btnShiftLightbar + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - R3 + + pnlMain - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None - + Flat - - 7, 41 - - + NoControl - - 261, 3 - - - tPControls + + 115, 87 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 86 - - 281, 67 + + Guide - - 15, 13 + + bnPS - - pnlSticks + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + pnlMain + + + 19 + + + None - - R + + Flat - + NoControl - - L1 : + + 71, 33 - - 18 + + 11, 17 - - NoControl + + 85 - - tBsixaxisAccelZ + + Back - - Circle : + + bnShare - - Tilt Up + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 203 + + pnlMain - - 4 + + 20 - - cBLaunchProgram + + None - + + Flat + + NoControl - - 216 + + 31, 0 - - pnlShiftMain + + 43, 12 - - gBLightbar + + 90 - - pnlShiftMain + + Left Trigger - - 8, 50 + + bnL2 - - 428, 216 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + pnlMain - - gBLightbar + + 21 - - cbStartTouchpadOff + + None - - Sixaxis Z + + Flat - - 7 + + NoControl - - bnShiftLSDown + + 175, 0 - - 28, 28 + + 40, 13 - - Guide + + 89 - - Flat + + Right Trigger - - pnlShift + + bnR2 - - tPShiftMod + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + pnlMain - - lbSixaxisX + + 22 - - Fall Back + + 7, 41 - - True + + 249, 137 - - Rainbow + + 185 - - fLPShiftTiltControls + + pnlMain - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16 + + tPControls - - False + + 4 - - True + + Cross : - - NoControl + + Circle : - - 247 + + Square : - - Mouse Acceleration + + Triangle : - - 165 + + Options : - - 4 + + Share : - - Flat + + Up : - - NoControl + + Down : - - MiddleCenter + + Left : - - 109, 40 + + Right : - - pnlMain + + PS : - - bnTouchLeft + + L1 : - + + R1 : + + + L2 : + + R2 : - - pnlSixaxis + + L3 : - - pnlSticks + + R3 : - - 4 + + Left Touch : - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Upper Touch : - - 234 + + Multitouch : - - 175, 13 + + Right Touch : - - pnlMain + + Left Stick Up : - - TopCenter + + Left Stick Down : - - 91 + + Left Stick Left : - - lbRSTip + + Left Stick Right : + + + Right Stick Up : + + + Right Stick Down : + + + Right Stick Left : - - 244 + + Right Stick Right : - - True + + Sixaxis Up : - - gBTouchpad + + Sixaxis Down : - - tabControls + + Sixaxis Left : - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Right : - - 12 + + 257, 7 - - 5, 192 + + 169, 173 - - 232 + + 180 - - 1 + + lBControls - - pnlShiftMain + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tPControls - + 5 - - G + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24, 5 - - NoControl + + 219, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 181 - - True + + Click a part of the controller to change action +Click the lightbar for color picker - - 6 + + MiddleCenter - - 308, 9 + + lbControlTip - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tPControls - - tBsixaxisAccelY + + 6 - - pnlShiftSticks + + NoControl - - cBShiftLight + + 71, 9 - - 80, 23 + + 105, 23 - - 12 + + 184 - - 3 + + <- Back to full view - - 197 + + btnFullView - - 439, 129 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlSticks - - tBShiftGreenBar + + 0 - - 6 + + False - + NoControl - - 118, 17 - - - 250 + + 0, 1 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 245, 132 - - nUDIdleDisconnect + + StretchImage - - pnlSticks + + 161 - - Left Touch : + + pBSticks - - tBsixaxisAccelX + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlShiftMain + + pnlSticks - - 89 + + 1 - - 160 + + None - - gBOther + + Flat - - 63, 145 + + NoControl - - Yes + + 36, 92 - - Up : + + 23, 23 - - bnGyroZP + + 163 - - pnlMain + + Left Stick - - 5, 192 + + bnL3 - - 49, 17 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 20 + + pnlSticks - - Left Mouse Button + + 2 - - 158 + + None - - 180, 7 + + Flat - - Fall Back + + NoControl - - 12, 12 + + 183, 116 - - 8 + + 23, 11 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 172 - - tBsixaxisGyroY + + Right Y-Axis+ - - 11 + + bnRSDown - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 159, 17 + + pnlSticks - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - pnlShiftSticks + + None + + + Flat - - 225 + + NoControl - - 73, 4 + + 36, 77 - - None + + 23, 11 - - 9, 17 + + 167 - - 237 + + Left Y-Axis- - - 189, 96 + + bnLSUp - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + pnlSticks - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - NoControl + + None - - 17 + + Flat - - 445, 12 + + NoControl - - tPShiftMod + + 183, 79 - - 197 + + 23, 11 - - True + + 171 - - Swipe Left + + Right Y-Axis- - - StretchImage + + bnRSUp - - pnlShiftSticks + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPController + + pnlSticks - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 49, 19 + + None - + Flat - - 185 - - - R1 : + + NoControl - - fLPShiftTouchSwipe + + 21, 92 - - NoControl + + 11, 23 - - 315, 36 + + 164 - - 16 + + Left X-Axis- - - 2 + + bnLSLeft - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - L1 + + pnlSticks - - 385, 33 + + 6 - + None - - 12 - - - MiddleCenter + + Flat - - 8 + + NoControl - - Fade in and out + + 209, 92 - - 49, 20 + + 13, 23 - - G + + 170 - - 15 + + Right X-Axis+ - - Hold + + bnRSRight - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 - - - gBOther - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSticks - - 111, 17 + + 7 - - 80, 23 + + None - - 3 + + Flat - + NoControl - - 2 - - - 99, 17 + + 65, 92 - - R + + 11, 23 - - 3 + + 165 - - 79, 19 + + Left X-Axis+ - - nUDflashLED + + bnLSRight - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Yes - - - 168 - - - pnlFull + + pnlSticks - - 80 + + 8 - - 120, 17 + + None - - True + + Flat - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 + + 165, 92 - - Shift: + + 11, 23 - - Flat + + 169 - - 263, 105 + + Right X-Axis- - - 300, 56 + + bnRSLeft - - 252 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPController + + pnlSticks - - Flat + + 9 - - tPController + + None - - R + + Flat - - gBLightbar + + NoControl - - pnlSixaxis + + 36, 120 - - pnlShiftMain + + 23, 11 - - True + + 166 - - 1, 72 + + Left Y-Axis+ - - 100, 20 + + bnLSDown - - 36, 92 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 244 + + pnlSticks - - 15, 15 + + 10 - - 142, 17 + + None - - False + + Flat - - 14, 13 + + NoControl - - nUDRumbleBoost + + 183, 92 - - None + + 23, 23 - - 21, 13 + + 168 - - 251 + + Right Stick - - 20, 13 + + bnR3 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 - - - bnPS + + pnlSticks - - 91 + + 11 - - bnGyroXP + + 7, 41 - - 175, 3 + + 249, 143 - - for Mapping and readout + + 187 - - rBRainbow + + False - - 125, 125 + + pnlSticks - - 196, 5 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 23 + + tPControls - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - 23, 11 + + 4, 22 - - Flat + + 3, 3, 3, 3 - - tPController + + 428, 216 - - Upper Touch : + + 0 - - gBOther + + Controls - - Right Stick Right : + + tPControls - - 192 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tabControls - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - False + + 3, 3 - - None + + 436, 242 - - gBOther + + 253 - - 23, 11 + + tabControls - - bnShiftLeft + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Deadzone + + $this - - 109, 44 + + 0 - - 4, 20 + + 17, 17 + + + True + + + 96, 96 - - 22 + + True - - Sixaxis Up + + 890, 361 - - fLPShiftTiltControls + + 906, 400 - - Upper Touch : + + 99, 96 - - pnlShiftMain + + Profile Options - - 31, 44 + + openFileDialog1 - - NoControl + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + advColorDialog - - btnRSTrack + + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.157.0, Culture=neutral, PublicKeyToken=null - - pnlSixaxis + + Options - - fLPTouchSwipe + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 153, 17 - - - True - - - 17, 17 - \ No newline at end of file diff --git a/DS4Tool/Program.cs b/DS4Tool/Program.cs index c9ba2d75a3..408dece814 100644 --- a/DS4Tool/Program.cs +++ b/DS4Tool/Program.cs @@ -117,6 +117,7 @@ static private void ThreadFormVisable(Form frm) else { WinProgs wp = (WinProgs)frm; + wp.form.mAllowVisible = true; wp.ShowMainWindow(); SetForegroundWindow(wp.form.Handle); } diff --git a/DS4Tool/Properties/AssemblyInfo.cs b/DS4Tool/Properties/AssemblyInfo.cs index ee9882e1ce..392d27be00 100644 --- a/DS4Tool/Properties/AssemblyInfo.cs +++ b/DS4Tool/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.156")] -[assembly: AssemblyFileVersion("1.4.156")] +[assembly: AssemblyVersion("1.4.157")] +[assembly: AssemblyFileVersion("1.4.157")] diff --git a/DS4Tool/Properties/Resources.resx b/DS4Tool/Properties/Resources.resx index 9d40489f4e..9957b8101d 100644 --- a/DS4Tool/Properties/Resources.resx +++ b/DS4Tool/Properties/Resources.resx @@ -577,4 +577,7 @@ Plein: + + EXPERIMENTAL: Auto-Disable BT when conencting to USB + \ No newline at end of file diff --git a/DS4Tool/Properties/Resources1.Designer.cs b/DS4Tool/Properties/Resources1.Designer.cs index bf229ae29a..9498776070 100644 --- a/DS4Tool/Properties/Resources1.Designer.cs +++ b/DS4Tool/Properties/Resources1.Designer.cs @@ -917,6 +917,15 @@ internal static string ProfileFolderMoved { } } + /// + /// Looks up a localized string similar to EXPERIMENTAL: Auto-Disable BT when conencting to USB. + /// + internal static string QuickCharge { + get { + return ResourceManager.GetString("QuickCharge", resourceCulture); + } + } + /// /// Looks up a localized string similar to You must quit other applications like Steam, Uplay before activating the 'Hide DS4 Controller' option.". ///