From fa639ba31c8dd0eeb19a2fbada4bae95a354a7e4 Mon Sep 17 00:00:00 2001 From: Jays2Kings Date: Sun, 13 Dec 2015 16:30:54 -0500 Subject: [PATCH] Version 1.4.321 Changed the Rainbow button to an actual button For using the sixaxis as a mouse, changed none to Always on, also better movement for the gyro when the sensitivity is lowered Updated Hebrew, Chinese (Traditional), Itilian, Chinese (Simplified) --- DS4Windows/DS4Control/Mouse.cs | 12 +- DS4Windows/DS4Control/MouseCursor.cs | 33 +- DS4Windows/DS4Forms/DS4Form.Designer.cs | 182 +- DS4Windows/DS4Forms/DS4Form.ar.resx | 4 +- DS4Windows/DS4Forms/DS4Form.cs | 27 +- DS4Windows/DS4Forms/DS4Form.de-DE.resx | 2 +- DS4Windows/DS4Forms/DS4Form.es.resx | 4 +- DS4Windows/DS4Forms/DS4Form.fr-FR.resx | 2 +- DS4Windows/DS4Forms/DS4Form.he.resx | 25 +- DS4Windows/DS4Forms/DS4Form.it-IT.resx | 31 +- DS4Windows/DS4Forms/DS4Form.pt-BR.resx | 4 +- DS4Windows/DS4Forms/DS4Form.resx | 5954 +++++++++--------- DS4Windows/DS4Forms/DS4Form.ro-RO.resx | 4 +- DS4Windows/DS4Forms/DS4Form.ru-RU.resx | 2 +- DS4Windows/DS4Forms/DS4Form.tr.resx | 4 +- DS4Windows/DS4Forms/DS4Form.vi.resx | 205 +- DS4Windows/DS4Forms/DS4Form.zh-Hans.resx | 25 +- DS4Windows/DS4Forms/DS4Form.zh-Hant.resx | 7 +- DS4Windows/DS4Forms/DupBox.resx | 2 +- DS4Windows/DS4Forms/DupBox.zh-Hans.resx | 2 +- DS4Windows/DS4Forms/Hotkeys.it-IT.resx | 4 +- DS4Windows/DS4Forms/Hotkeys.resx | 34 +- DS4Windows/DS4Forms/KBM360.it-IT.resx | 22 +- DS4Windows/DS4Forms/KBM360.resx | 250 +- DS4Windows/DS4Forms/KBM360.zh-Hans.resx | 2 +- DS4Windows/DS4Forms/Options.Designer.cs | 41 +- DS4Windows/DS4Forms/Options.cs | 83 +- DS4Windows/DS4Forms/Options.he.resx | 4 + DS4Windows/DS4Forms/Options.it-IT.resx | 96 +- DS4Windows/DS4Forms/Options.resx | 1832 +++--- DS4Windows/DS4Forms/Options.zh-Hans.resx | 161 +- DS4Windows/DS4Forms/Options.zh-Hant.resx | 9 + DS4Windows/DS4Forms/RecordBox.it-IT.resx | 3 + DS4Windows/DS4Forms/RecordBox.resx | 8 +- DS4Windows/DS4Forms/SaveWhere.it-IT.resx | 4 +- DS4Windows/DS4Forms/SpecActions.it-IT.resx | 11 +- DS4Windows/DS4Library/DS4Sixaxis.cs | 16 +- DS4Windows/DS4Library/DS4StateExposed.cs | 12 +- DS4Windows/Properties/AssemblyInfo.cs | 4 +- DS4Windows/Properties/Resources.it-IT.resx | 84 +- DS4Windows/Properties/Resources.zh-hans.resx | 66 +- 41 files changed, 4575 insertions(+), 4702 deletions(-) diff --git a/DS4Windows/DS4Control/Mouse.cs b/DS4Windows/DS4Control/Mouse.cs index ef76f88da6..2f444cfffa 100644 --- a/DS4Windows/DS4Control/Mouse.cs +++ b/DS4Windows/DS4Control/Mouse.cs @@ -34,15 +34,15 @@ public Mouse(int deviceID, DS4Device d) public virtual void sixaxisMoved(object sender, SixAxisEventArgs arg) { - if (Global.UseSAforMouse[deviceNum]) + if (Global.UseSAforMouse[deviceNum] && Global.GyroSensitivity[deviceNum] > 0) { bool triggeractivated = true; int i = 0; string[] ss = Global.SATriggers[deviceNum].Split(','); - //List ds4C = new List(); - foreach (string s in ss) - if (!(int.TryParse(s, out i) && getDS4ControlsByName(i))) - triggeractivated = false; + if (!string.IsNullOrEmpty(ss[0])) + foreach (string s in ss) + if (!(int.TryParse(s, out i) && getDS4ControlsByName(i))) + triggeractivated = false; if (triggeractivated) cursor.sixaxisMoved(arg); dev.getCurrentState(s); @@ -53,6 +53,7 @@ private bool getDS4ControlsByName(int key) { switch (key) { + case -1: return true; case 0: return s.Cross; case 1: return s.Circle; case 2: return s.Square; @@ -71,6 +72,7 @@ private bool getDS4ControlsByName(int key) case 15: return s.Touch2; case 16: return s.Options; case 17: return s.Share; + case 18: return s.PS; } return false; } diff --git a/DS4Windows/DS4Control/MouseCursor.cs b/DS4Windows/DS4Control/MouseCursor.cs index 64e6d9680a..0a5870d3b7 100644 --- a/DS4Windows/DS4Control/MouseCursor.cs +++ b/DS4Windows/DS4Control/MouseCursor.cs @@ -28,35 +28,20 @@ public virtual void sixaxisMoved(SixAxisEventArgs arg) int deltaX = 0, deltaY = 0; deltaX = -arg.sixAxis.accelX; deltaY = -arg.sixAxis.accelY; + //Console.WriteLine(arg.sixAxis.deltaX); + double coefficient = Global.GyroSensitivity[deviceNumber] / 100f; - // Collect rounding errors instead of losing motion. + //Collect rounding errors instead of losing motion. double xMotion = coefficient * deltaX; - if (xMotion > 0.0) - { - if (horizontalRemainder > 0.0) - xMotion += horizontalRemainder; - } - else if (xMotion < 0.0) - { - if (horizontalRemainder < 0.0) - xMotion += horizontalRemainder; - } + xMotion += hRemainder; int xAction = (int)xMotion; - hRemainder = xMotion - xAction; - + hRemainder += xMotion - xAction; + hRemainder -= (int)hRemainder; double yMotion = coefficient * deltaY; - if (yMotion > 0.0) - { - if (verticalRemainder > 0.0) - yMotion += verticalRemainder; - } - else if (yMotion < 0.0) - { - if (verticalRemainder < 0.0) - yMotion += verticalRemainder; - } + yMotion += vRemainder; int yAction = (int)yMotion; - vRemainder = yMotion - yAction; + vRemainder += yMotion - yAction; + vRemainder -= (int)vRemainder; if (Global.GyroInvert[deviceNumber] == 2 || Global.GyroInvert[deviceNumber] == 3) xAction *= -1; if (Global.GyroInvert[deviceNumber] == 1 || Global.GyroInvert[deviceNumber] == 3) diff --git a/DS4Windows/DS4Forms/DS4Form.Designer.cs b/DS4Windows/DS4Forms/DS4Form.Designer.cs index 3f326bd1fa..52cbc3190f 100644 --- a/DS4Windows/DS4Forms/DS4Form.Designer.cs +++ b/DS4Windows/DS4Forms/DS4Form.Designer.cs @@ -181,13 +181,12 @@ private void InitializeComponent() // // lvDebug // - resources.ApplyResources(this.lvDebug, "lvDebug"); this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.chTime, this.chData}); + resources.ApplyResources(this.lvDebug, "lvDebug"); this.lvDebug.FullRowSelect = true; this.lvDebug.Name = "lvDebug"; - this.toolTip1.SetToolTip(this.lvDebug, resources.GetString("lvDebug.ToolTip")); this.lvDebug.UseCompatibleStateImageBehavior = false; this.lvDebug.View = System.Windows.Forms.View.Details; this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate); @@ -207,27 +206,24 @@ private void InitializeComponent() // // pnlButton // - resources.ApplyResources(this.pnlButton, "pnlButton"); this.pnlButton.BackColor = System.Drawing.SystemColors.Control; this.pnlButton.Controls.Add(this.lbTest); this.pnlButton.Controls.Add(this.btnStartStop); this.pnlButton.Controls.Add(this.lbLastMessage); this.pnlButton.Controls.Add(this.llbHelp); + resources.ApplyResources(this.pnlButton, "pnlButton"); this.pnlButton.Name = "pnlButton"; - this.toolTip1.SetToolTip(this.pnlButton, resources.GetString("pnlButton.ToolTip")); this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave); // // lbTest // resources.ApplyResources(this.lbTest, "lbTest"); this.lbTest.Name = "lbTest"; - this.toolTip1.SetToolTip(this.lbTest, resources.GetString("lbTest.ToolTip")); // // btnStartStop // resources.ApplyResources(this.btnStartStop, "btnStartStop"); this.btnStartStop.Name = "btnStartStop"; - this.toolTip1.SetToolTip(this.btnStartStop, resources.GetString("btnStartStop.ToolTip")); this.btnStartStop.UseVisualStyleBackColor = true; this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click); // @@ -236,7 +232,6 @@ private void InitializeComponent() resources.ApplyResources(this.lbLastMessage, "lbLastMessage"); this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText; this.lbLastMessage.Name = "lbLastMessage"; - this.toolTip1.SetToolTip(this.lbLastMessage, resources.GetString("lbLastMessage.ToolTip")); this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover); // // llbHelp @@ -244,14 +239,12 @@ private void InitializeComponent() resources.ApplyResources(this.llbHelp, "llbHelp"); this.llbHelp.Name = "llbHelp"; this.llbHelp.TabStop = true; - this.toolTip1.SetToolTip(this.llbHelp, resources.GetString("llbHelp.ToolTip")); this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked); // // btnClear // resources.ApplyResources(this.btnClear, "btnClear"); this.btnClear.Name = "btnClear"; - this.toolTip1.SetToolTip(this.btnClear, resources.GetString("btnClear.ToolTip")); this.btnClear.UseVisualStyleBackColor = true; this.btnClear.Click += new System.EventHandler(this.btnClear_Click); // @@ -266,7 +259,6 @@ private void InitializeComponent() // // cMTaskbar // - resources.ApplyResources(this.cMTaskbar, "cMTaskbar"); this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editProfileForController1ToolStripMenuItem, @@ -278,46 +270,46 @@ private void InitializeComponent() this.openToolStripMenuItem, this.exitToolStripMenuItem}); this.cMTaskbar.Name = "cMTaskbar"; + resources.ApplyResources(this.cMTaskbar, "cMTaskbar"); this.cMTaskbar.Tag = "25"; - this.toolTip1.SetToolTip(this.cMTaskbar, resources.GetString("cMTaskbar.ToolTip")); // // editProfileForController1ToolStripMenuItem // - resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem"); this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem"; + resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem"); this.editProfileForController1ToolStripMenuItem.Tag = "0"; this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); // // editProfileForController2ToolStripMenuItem // - resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem"); this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem"; + resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem"); this.editProfileForController2ToolStripMenuItem.Tag = "1"; this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); // // editProfileForController3ToolStripMenuItem // - resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem"); this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem"; + resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem"); this.editProfileForController3ToolStripMenuItem.Tag = "2"; this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); // // editProfileForController4ToolStripMenuItem // - resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem"); this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem"; + resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem"); this.editProfileForController4ToolStripMenuItem.Tag = "4"; this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); // // toolStripSeparator1 // - resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); this.toolStripSeparator1.Name = "toolStripSeparator1"; + resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // // startToolStripMenuItem // - resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); this.startToolStripMenuItem.Name = "startToolStripMenuItem"; + resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); // // openToolStripMenuItem @@ -328,14 +320,14 @@ private void InitializeComponent() // // exitToolStripMenuItem // - resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // toolStripSeparator2 // - resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); this.toolStripSeparator2.Name = "toolStripSeparator2"; + resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); // // openProfiles // @@ -344,32 +336,29 @@ private void InitializeComponent() // // tabMain // - resources.ApplyResources(this.tabMain, "tabMain"); this.tabMain.Controls.Add(this.tabControllers); this.tabMain.Controls.Add(this.tabProfiles); this.tabMain.Controls.Add(this.tabAutoProfiles); this.tabMain.Controls.Add(this.tabSettings); this.tabMain.Controls.Add(this.tabLog); + resources.ApplyResources(this.tabMain, "tabMain"); this.tabMain.Name = "tabMain"; this.tabMain.SelectedIndex = 0; - this.toolTip1.SetToolTip(this.tabMain, resources.GetString("tabMain.ToolTip")); this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged); // // tabControllers // - resources.ApplyResources(this.tabControllers, "tabControllers"); this.tabControllers.Controls.Add(this.btnConnectDS4Win10); this.tabControllers.Controls.Add(this.tLPControllers); this.tabControllers.Controls.Add(this.lbNoControllers); + resources.ApplyResources(this.tabControllers, "tabControllers"); this.tabControllers.Name = "tabControllers"; - this.toolTip1.SetToolTip(this.tabControllers, resources.GetString("tabControllers.ToolTip")); this.tabControllers.UseVisualStyleBackColor = true; // // btnConnectDS4Win10 // resources.ApplyResources(this.btnConnectDS4Win10, "btnConnectDS4Win10"); this.btnConnectDS4Win10.Name = "btnConnectDS4Win10"; - this.toolTip1.SetToolTip(this.btnConnectDS4Win10, resources.GetString("btnConnectDS4Win10.ToolTip")); this.btnConnectDS4Win10.UseVisualStyleBackColor = true; this.btnConnectDS4Win10.Click += new System.EventHandler(this.btnConnectDS4Win10_Click); // @@ -405,15 +394,13 @@ private void InitializeComponent() this.tLPControllers.Controls.Add(this.bnLight2, 5, 2); this.tLPControllers.Controls.Add(this.bnLight4, 5, 4); this.tLPControllers.Name = "tLPControllers"; - this.toolTip1.SetToolTip(this.tLPControllers, resources.GetString("tLPControllers.ToolTip")); // // bnLight3 // - resources.ApplyResources(this.bnLight3, "bnLight3"); this.bnLight3.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.bnLight3, "bnLight3"); this.bnLight3.Name = "bnLight3"; this.bnLight3.Tag = "2"; - this.toolTip1.SetToolTip(this.bnLight3, resources.GetString("bnLight3.ToolTip")); this.bnLight3.UseVisualStyleBackColor = false; this.bnLight3.Click += new System.EventHandler(this.EditCustomLed); // @@ -424,7 +411,6 @@ private void InitializeComponent() this.pBStatus1.Name = "pBStatus1"; this.pBStatus1.TabStop = false; this.pBStatus1.Tag = "0"; - this.toolTip1.SetToolTip(this.pBStatus1, resources.GetString("pBStatus1.ToolTip")); this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // lbPad1 @@ -432,7 +418,6 @@ private void InitializeComponent() resources.ApplyResources(this.lbPad1, "lbPad1"); this.lbPad1.Name = "lbPad1"; this.lbPad1.Tag = "0"; - this.toolTip1.SetToolTip(this.lbPad1, resources.GetString("lbPad1.ToolTip")); this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover); // @@ -441,7 +426,6 @@ private void InitializeComponent() resources.ApplyResources(this.lbPad2, "lbPad2"); this.lbPad2.Name = "lbPad2"; this.lbPad2.Tag = "1"; - this.toolTip1.SetToolTip(this.lbPad2, resources.GetString("lbPad2.ToolTip")); this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover); // @@ -450,7 +434,6 @@ private void InitializeComponent() resources.ApplyResources(this.bnEditC3, "bnEditC3"); this.bnEditC3.Name = "bnEditC3"; this.bnEditC3.Tag = "2"; - this.toolTip1.SetToolTip(this.bnEditC3, resources.GetString("bnEditC3.ToolTip")); this.bnEditC3.UseVisualStyleBackColor = true; this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click); // @@ -459,7 +442,6 @@ private void InitializeComponent() resources.ApplyResources(this.bnEditC4, "bnEditC4"); this.bnEditC4.Name = "bnEditC4"; this.bnEditC4.Tag = "3"; - this.toolTip1.SetToolTip(this.bnEditC4, resources.GetString("bnEditC4.ToolTip")); this.bnEditC4.UseVisualStyleBackColor = true; this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click); // @@ -468,7 +450,6 @@ private void InitializeComponent() resources.ApplyResources(this.lbPad3, "lbPad3"); this.lbPad3.Name = "lbPad3"; this.lbPad3.Tag = "2"; - this.toolTip1.SetToolTip(this.lbPad3, resources.GetString("lbPad3.ToolTip")); this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover); // @@ -477,7 +458,6 @@ private void InitializeComponent() resources.ApplyResources(this.lbPad4, "lbPad4"); this.lbPad4.Name = "lbPad4"; this.lbPad4.Tag = "3"; - this.toolTip1.SetToolTip(this.lbPad4, resources.GetString("lbPad4.ToolTip")); this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover); // @@ -488,7 +468,6 @@ private void InitializeComponent() this.cBController1.FormattingEnabled = true; this.cBController1.Name = "cBController1"; this.cBController1.Tag = "0"; - this.toolTip1.SetToolTip(this.cBController1, resources.GetString("cBController1.ToolTip")); this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); // // bnEditC2 @@ -496,7 +475,6 @@ private void InitializeComponent() resources.ApplyResources(this.bnEditC2, "bnEditC2"); this.bnEditC2.Name = "bnEditC2"; this.bnEditC2.Tag = "1"; - this.toolTip1.SetToolTip(this.bnEditC2, resources.GetString("bnEditC2.ToolTip")); this.bnEditC2.UseVisualStyleBackColor = true; this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click); // @@ -507,7 +485,6 @@ private void InitializeComponent() this.cBController2.FormattingEnabled = true; this.cBController2.Name = "cBController2"; this.cBController2.Tag = "1"; - this.toolTip1.SetToolTip(this.cBController2, resources.GetString("cBController2.ToolTip")); this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); // // cBController3 @@ -517,7 +494,6 @@ private void InitializeComponent() this.cBController3.FormattingEnabled = true; this.cBController3.Name = "cBController3"; this.cBController3.Tag = "2"; - this.toolTip1.SetToolTip(this.cBController3, resources.GetString("cBController3.ToolTip")); this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); // // bnEditC1 @@ -525,7 +501,6 @@ private void InitializeComponent() resources.ApplyResources(this.bnEditC1, "bnEditC1"); this.bnEditC1.Name = "bnEditC1"; this.bnEditC1.Tag = "0"; - this.toolTip1.SetToolTip(this.bnEditC1, resources.GetString("bnEditC1.ToolTip")); this.bnEditC1.UseVisualStyleBackColor = true; this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click); // @@ -536,56 +511,47 @@ private void InitializeComponent() this.cBController4.FormattingEnabled = true; this.cBController4.Name = "cBController4"; this.cBController4.Tag = "3"; - this.toolTip1.SetToolTip(this.cBController4, resources.GetString("cBController4.ToolTip")); this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); // // lbSelectedProfile // resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile"); this.lbSelectedProfile.Name = "lbSelectedProfile"; - this.toolTip1.SetToolTip(this.lbSelectedProfile, resources.GetString("lbSelectedProfile.ToolTip")); // // lbID // resources.ApplyResources(this.lbID, "lbID"); this.lbID.Name = "lbID"; - this.toolTip1.SetToolTip(this.lbID, resources.GetString("lbID.ToolTip")); // // lbStatus // resources.ApplyResources(this.lbStatus, "lbStatus"); this.lbStatus.Name = "lbStatus"; - this.toolTip1.SetToolTip(this.lbStatus, resources.GetString("lbStatus.ToolTip")); // // lbBattery // resources.ApplyResources(this.lbBattery, "lbBattery"); this.lbBattery.Name = "lbBattery"; - this.toolTip1.SetToolTip(this.lbBattery, resources.GetString("lbBattery.ToolTip")); // // lbBatt1 // resources.ApplyResources(this.lbBatt1, "lbBatt1"); this.lbBatt1.Name = "lbBatt1"; - this.toolTip1.SetToolTip(this.lbBatt1, resources.GetString("lbBatt1.ToolTip")); // // lbBatt2 // resources.ApplyResources(this.lbBatt2, "lbBatt2"); this.lbBatt2.Name = "lbBatt2"; - this.toolTip1.SetToolTip(this.lbBatt2, resources.GetString("lbBatt2.ToolTip")); // // lbBatt3 // resources.ApplyResources(this.lbBatt3, "lbBatt3"); this.lbBatt3.Name = "lbBatt3"; - this.toolTip1.SetToolTip(this.lbBatt3, resources.GetString("lbBatt3.ToolTip")); // // lbBatt4 // resources.ApplyResources(this.lbBatt4, "lbBatt4"); this.lbBatt4.Name = "lbBatt4"; - this.toolTip1.SetToolTip(this.lbBatt4, resources.GetString("lbBatt4.ToolTip")); // // pBStatus2 // @@ -594,7 +560,6 @@ private void InitializeComponent() this.pBStatus2.Name = "pBStatus2"; this.pBStatus2.TabStop = false; this.pBStatus2.Tag = "1"; - this.toolTip1.SetToolTip(this.pBStatus2, resources.GetString("pBStatus2.ToolTip")); this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // pBStatus3 @@ -604,7 +569,6 @@ private void InitializeComponent() this.pBStatus3.Name = "pBStatus3"; this.pBStatus3.TabStop = false; this.pBStatus3.Tag = "2"; - this.toolTip1.SetToolTip(this.pBStatus3, resources.GetString("pBStatus3.ToolTip")); this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // pBStatus4 @@ -614,36 +578,32 @@ private void InitializeComponent() this.pBStatus4.Name = "pBStatus4"; this.pBStatus4.TabStop = false; this.pBStatus4.Tag = "3"; - this.toolTip1.SetToolTip(this.pBStatus4, resources.GetString("pBStatus4.ToolTip")); this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // bnLight1 // - resources.ApplyResources(this.bnLight1, "bnLight1"); this.bnLight1.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.bnLight1, "bnLight1"); this.bnLight1.Name = "bnLight1"; this.bnLight1.Tag = "0"; - this.toolTip1.SetToolTip(this.bnLight1, resources.GetString("bnLight1.ToolTip")); this.bnLight1.UseVisualStyleBackColor = false; this.bnLight1.Click += new System.EventHandler(this.EditCustomLed); // // bnLight2 // - resources.ApplyResources(this.bnLight2, "bnLight2"); this.bnLight2.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.bnLight2, "bnLight2"); this.bnLight2.Name = "bnLight2"; this.bnLight2.Tag = "1"; - this.toolTip1.SetToolTip(this.bnLight2, resources.GetString("bnLight2.ToolTip")); this.bnLight2.UseVisualStyleBackColor = false; this.bnLight2.Click += new System.EventHandler(this.EditCustomLed); // // bnLight4 // - resources.ApplyResources(this.bnLight4, "bnLight4"); this.bnLight4.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.bnLight4, "bnLight4"); this.bnLight4.Name = "bnLight4"; this.bnLight4.Tag = "3"; - this.toolTip1.SetToolTip(this.bnLight4, resources.GetString("bnLight4.ToolTip")); this.bnLight4.UseVisualStyleBackColor = false; this.bnLight4.Click += new System.EventHandler(this.EditCustomLed); // @@ -651,34 +611,30 @@ private void InitializeComponent() // resources.ApplyResources(this.lbNoControllers, "lbNoControllers"); this.lbNoControllers.Name = "lbNoControllers"; - this.toolTip1.SetToolTip(this.lbNoControllers, resources.GetString("lbNoControllers.ToolTip")); // // tabProfiles // - resources.ApplyResources(this.tabProfiles, "tabProfiles"); this.tabProfiles.Controls.Add(this.lBProfiles); this.tabProfiles.Controls.Add(this.tSOptions); this.tabProfiles.Controls.Add(this.toolStrip1); + resources.ApplyResources(this.tabProfiles, "tabProfiles"); this.tabProfiles.Name = "tabProfiles"; - this.toolTip1.SetToolTip(this.tabProfiles, resources.GetString("tabProfiles.ToolTip")); this.tabProfiles.UseVisualStyleBackColor = true; // // lBProfiles // - resources.ApplyResources(this.lBProfiles, "lBProfiles"); this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lBProfiles.ContextMenuStrip = this.cMProfile; + resources.ApplyResources(this.lBProfiles, "lBProfiles"); this.lBProfiles.FormattingEnabled = true; this.lBProfiles.MultiColumn = true; this.lBProfiles.Name = "lBProfiles"; - this.toolTip1.SetToolTip(this.lBProfiles, resources.GetString("lBProfiles.ToolTip")); this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown); this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick); this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown); // // cMProfile // - resources.ApplyResources(this.cMProfile, "cMProfile"); this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editToolStripMenuItem, @@ -692,7 +648,7 @@ private void InitializeComponent() this.importToolStripMenuItem, this.exportToolStripMenuItem}); this.cMProfile.Name = "cMProfile"; - this.toolTip1.SetToolTip(this.cMProfile, resources.GetString("cMProfile.ToolTip")); + resources.ApplyResources(this.cMProfile, "cMProfile"); // // editToolStripMenuItem // @@ -702,61 +658,60 @@ private void InitializeComponent() // // assignToController1ToolStripMenuItem // - resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem"); this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem"; + resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem"); this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click); // // assignToController2ToolStripMenuItem // - resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem"); this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem"; + resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem"); this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click); // // assignToController3ToolStripMenuItem // - resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem"); this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem"; + resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem"); this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click); // // assignToController4ToolStripMenuItem // - resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem"); this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem"; + resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem"); this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click); // // deleteToolStripMenuItem // - resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem"); this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; + resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem"); this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click); // // duplicateToolStripMenuItem // - resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem"); this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem"; + resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem"); this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click); // // newProfileToolStripMenuItem // - resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem"); this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem"; + resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem"); this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click); // // importToolStripMenuItem // - resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem"); this.importToolStripMenuItem.Name = "importToolStripMenuItem"; + resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem"); this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click); // // exportToolStripMenuItem // - resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem"); this.exportToolStripMenuItem.Name = "exportToolStripMenuItem"; + resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem"); this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click); // // tSOptions // - resources.ApplyResources(this.tSOptions, "tSOptions"); this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.tSOptions.ImageScalingSize = new System.Drawing.Size(20, 20); this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -766,55 +721,54 @@ private void InitializeComponent() this.tSBCancel, this.toolStripSeparator3, this.tSBKeepSize}); + resources.ApplyResources(this.tSOptions, "tSOptions"); this.tSOptions.Name = "tSOptions"; this.tSOptions.ShowItemToolTips = false; - this.toolTip1.SetToolTip(this.tSOptions, resources.GetString("tSOptions.ToolTip")); // // toolStripLabel1 // - resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1"); this.toolStripLabel1.Name = "toolStripLabel1"; + resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1"); // // tSTBProfile // - resources.ApplyResources(this.tSTBProfile, "tSTBProfile"); this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText; this.tSTBProfile.Name = "tSTBProfile"; + resources.ApplyResources(this.tSTBProfile, "tSTBProfile"); this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter); this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave); this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged); // // tSBSaveProfile // - resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile"); this.tSBSaveProfile.AutoToolTip = false; this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile; + resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile"); this.tSBSaveProfile.Name = "tSBSaveProfile"; this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click); // // tSBCancel // - resources.ApplyResources(this.tSBCancel, "tSBCancel"); this.tSBCancel.AutoToolTip = false; this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete; + resources.ApplyResources(this.tSBCancel, "tSBCancel"); this.tSBCancel.Name = "tSBCancel"; this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click); // // toolStripSeparator3 // - resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); this.toolStripSeparator3.Name = "toolStripSeparator3"; + resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); // // tSBKeepSize // - resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize"); this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size; + resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize"); this.tSBKeepSize.Name = "tSBKeepSize"; this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click); // // toolStrip1 // - resources.ApplyResources(this.toolStrip1, "toolStrip1"); this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -824,20 +778,20 @@ private void InitializeComponent() this.tSBDupProfile, this.tSBImportProfile, this.tSBExportProfile}); + resources.ApplyResources(this.toolStrip1, "toolStrip1"); this.toolStrip1.Name = "toolStrip1"; - this.toolTip1.SetToolTip(this.toolStrip1, resources.GetString("toolStrip1.ToolTip")); // // tsBNewProfle // - resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle"); this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile; + resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle"); this.tsBNewProfle.Name = "tsBNewProfle"; this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click); // // tsBEditProfile // - resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile"); this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit; + resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile"); this.tsBEditProfile.Name = "tsBEditProfile"; this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click); // @@ -855,8 +809,8 @@ private void InitializeComponent() // // tSBImportProfile // - resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile"); this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import; + resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile"); this.tSBImportProfile.Name = "tSBImportProfile"; this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click); // @@ -870,15 +824,13 @@ private void InitializeComponent() // resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles"); this.tabAutoProfiles.Name = "tabAutoProfiles"; - this.toolTip1.SetToolTip(this.tabAutoProfiles, resources.GetString("tabAutoProfiles.ToolTip")); this.tabAutoProfiles.UseVisualStyleBackColor = true; // // tabSettings // - resources.ApplyResources(this.tabSettings, "tabSettings"); this.tabSettings.Controls.Add(this.fLPSettings); + resources.ApplyResources(this.tabSettings, "tabSettings"); this.tabSettings.Name = "tabSettings"; - this.toolTip1.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip")); this.tabSettings.UseVisualStyleBackColor = true; // // fLPSettings @@ -899,13 +851,11 @@ private void InitializeComponent() this.fLPSettings.Controls.Add(this.pnlXIPorts); this.fLPSettings.Controls.Add(this.flowLayoutPanel1); this.fLPSettings.Name = "fLPSettings"; - this.toolTip1.SetToolTip(this.fLPSettings, resources.GetString("fLPSettings.ToolTip")); // // hideDS4CheckBox // resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox"); this.hideDS4CheckBox.Name = "hideDS4CheckBox"; - this.toolTip1.SetToolTip(this.hideDS4CheckBox, resources.GetString("hideDS4CheckBox.ToolTip")); this.hideDS4CheckBox.UseVisualStyleBackColor = true; this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged); // @@ -915,7 +865,6 @@ private void InitializeComponent() this.cBSwipeProfiles.Checked = true; this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked; this.cBSwipeProfiles.Name = "cBSwipeProfiles"; - this.toolTip1.SetToolTip(this.cBSwipeProfiles, resources.GetString("cBSwipeProfiles.ToolTip")); this.cBSwipeProfiles.UseVisualStyleBackColor = true; this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged); // @@ -923,7 +872,6 @@ private void InitializeComponent() // resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox"); this.StartWindowsCheckBox.Name = "StartWindowsCheckBox"; - this.toolTip1.SetToolTip(this.StartWindowsCheckBox, resources.GetString("StartWindowsCheckBox.ToolTip")); this.StartWindowsCheckBox.UseVisualStyleBackColor = true; this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged); // @@ -931,23 +879,20 @@ private void InitializeComponent() // resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox"); this.startMinimizedCheckBox.Name = "startMinimizedCheckBox"; - this.toolTip1.SetToolTip(this.startMinimizedCheckBox, resources.GetString("startMinimizedCheckBox.ToolTip")); this.startMinimizedCheckBox.UseVisualStyleBackColor = true; this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged); // // panel1 // - resources.ApplyResources(this.panel1, "panel1"); this.panel1.Controls.Add(this.lbNotifications); this.panel1.Controls.Add(this.cBoxNotifications); + resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; - this.toolTip1.SetToolTip(this.panel1, resources.GetString("panel1.ToolTip")); // // lbNotifications // resources.ApplyResources(this.lbNotifications, "lbNotifications"); this.lbNotifications.Name = "lbNotifications"; - this.toolTip1.SetToolTip(this.lbNotifications, resources.GetString("lbNotifications.ToolTip")); // // cBoxNotifications // @@ -959,25 +904,22 @@ private void InitializeComponent() resources.GetString("cBoxNotifications.Items1"), resources.GetString("cBoxNotifications.Items2")}); this.cBoxNotifications.Name = "cBoxNotifications"; - this.toolTip1.SetToolTip(this.cBoxNotifications, resources.GetString("cBoxNotifications.ToolTip")); this.cBoxNotifications.SelectedIndexChanged += new System.EventHandler(this.cBoxNotifications_SelectedIndexChanged); // // cBDisconnectBT // resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT"); this.cBDisconnectBT.Name = "cBDisconnectBT"; - this.toolTip1.SetToolTip(this.cBDisconnectBT, resources.GetString("cBDisconnectBT.ToolTip")); this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); // // panel2 // - resources.ApplyResources(this.panel2, "panel2"); this.panel2.Controls.Add(this.nUDLatency); this.panel2.Controls.Add(this.lbMsLatency); this.panel2.Controls.Add(this.cBFlashWhenLate); + resources.ApplyResources(this.panel2, "panel2"); this.panel2.Name = "panel2"; - this.toolTip1.SetToolTip(this.panel2, resources.GetString("panel2.ToolTip")); // // nUDLatency // @@ -988,7 +930,6 @@ private void InitializeComponent() 0, 0}); this.nUDLatency.Name = "nUDLatency"; - this.toolTip1.SetToolTip(this.nUDLatency, resources.GetString("nUDLatency.ToolTip")); this.nUDLatency.Value = new decimal(new int[] { 10, 0, @@ -1000,7 +941,6 @@ private void InitializeComponent() // resources.ApplyResources(this.lbMsLatency, "lbMsLatency"); this.lbMsLatency.Name = "lbMsLatency"; - this.toolTip1.SetToolTip(this.lbMsLatency, resources.GetString("lbMsLatency.ToolTip")); // // cBFlashWhenLate // @@ -1008,7 +948,6 @@ private void InitializeComponent() this.cBFlashWhenLate.Checked = true; this.cBFlashWhenLate.CheckState = System.Windows.Forms.CheckState.Checked; this.cBFlashWhenLate.Name = "cBFlashWhenLate"; - this.toolTip1.SetToolTip(this.cBFlashWhenLate, resources.GetString("cBFlashWhenLate.ToolTip")); this.cBFlashWhenLate.UseVisualStyleBackColor = true; this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged); // @@ -1016,7 +955,6 @@ private void InitializeComponent() // resources.ApplyResources(this.cBCloseMini, "cBCloseMini"); this.cBCloseMini.Name = "cBCloseMini"; - this.toolTip1.SetToolTip(this.cBCloseMini, resources.GetString("cBCloseMini.ToolTip")); this.cBCloseMini.UseVisualStyleBackColor = true; this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged); // @@ -1024,7 +962,6 @@ private void InitializeComponent() // resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); this.cBQuickCharge.Name = "cBQuickCharge"; - this.toolTip1.SetToolTip(this.cBQuickCharge, resources.GetString("cBQuickCharge.ToolTip")); this.cBQuickCharge.UseVisualStyleBackColor = true; this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); // @@ -1034,7 +971,6 @@ private void InitializeComponent() this.cBDownloadLangauge.Checked = true; this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked; this.cBDownloadLangauge.Name = "cBDownloadLangauge"; - this.toolTip1.SetToolTip(this.cBDownloadLangauge, resources.GetString("cBDownloadLangauge.ToolTip")); this.cBDownloadLangauge.UseVisualStyleBackColor = true; this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged); // @@ -1042,18 +978,16 @@ private void InitializeComponent() // resources.ApplyResources(this.cBUpdate, "cBUpdate"); this.cBUpdate.Name = "cBUpdate"; - this.toolTip1.SetToolTip(this.cBUpdate, resources.GetString("cBUpdate.ToolTip")); this.cBUpdate.UseVisualStyleBackColor = true; this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged); // // pNUpdate // - resources.ApplyResources(this.pNUpdate, "pNUpdate"); this.pNUpdate.Controls.Add(this.cBUpdateTime); this.pNUpdate.Controls.Add(this.lbCheckEvery); this.pNUpdate.Controls.Add(this.nUDUpdateTime); + resources.ApplyResources(this.pNUpdate, "pNUpdate"); this.pNUpdate.Name = "pNUpdate"; - this.toolTip1.SetToolTip(this.pNUpdate, resources.GetString("pNUpdate.ToolTip")); // // cBUpdateTime // @@ -1064,14 +998,12 @@ private void InitializeComponent() resources.GetString("cBUpdateTime.Items"), resources.GetString("cBUpdateTime.Items1")}); this.cBUpdateTime.Name = "cBUpdateTime"; - this.toolTip1.SetToolTip(this.cBUpdateTime, resources.GetString("cBUpdateTime.ToolTip")); this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged); // // lbCheckEvery // resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery"); this.lbCheckEvery.Name = "lbCheckEvery"; - this.toolTip1.SetToolTip(this.lbCheckEvery, resources.GetString("lbCheckEvery.ToolTip")); // // nUDUpdateTime // @@ -1082,17 +1014,15 @@ private void InitializeComponent() 0, 0}); this.nUDUpdateTime.Name = "nUDUpdateTime"; - this.toolTip1.SetToolTip(this.nUDUpdateTime, resources.GetString("nUDUpdateTime.ToolTip")); this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged); // // pnlXIPorts // - resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts"); this.pnlXIPorts.Controls.Add(this.lbUseXIPorts); this.pnlXIPorts.Controls.Add(this.nUDXIPorts); this.pnlXIPorts.Controls.Add(this.lbLastXIPort); + resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts"); this.pnlXIPorts.Name = "pnlXIPorts"; - this.toolTip1.SetToolTip(this.pnlXIPorts, resources.GetString("pnlXIPorts.ToolTip")); this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter); this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave); // @@ -1100,7 +1030,6 @@ private void InitializeComponent() // resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts"); this.lbUseXIPorts.Name = "lbUseXIPorts"; - this.toolTip1.SetToolTip(this.lbUseXIPorts, resources.GetString("lbUseXIPorts.ToolTip")); // // nUDXIPorts // @@ -1116,7 +1045,6 @@ private void InitializeComponent() 0, 0}); this.nUDXIPorts.Name = "nUDXIPorts"; - this.toolTip1.SetToolTip(this.nUDXIPorts, resources.GetString("nUDXIPorts.ToolTip")); this.nUDXIPorts.Value = new decimal(new int[] { 1, 0, @@ -1130,7 +1058,6 @@ private void InitializeComponent() // resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort"); this.lbLastXIPort.Name = "lbLastXIPort"; - this.toolTip1.SetToolTip(this.lbLastXIPort, resources.GetString("lbLastXIPort.ToolTip")); // // flowLayoutPanel1 // @@ -1141,14 +1068,12 @@ private void InitializeComponent() this.flowLayoutPanel1.Controls.Add(this.linkSetup); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; - this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip")); // // linkProfiles // resources.ApplyResources(this.linkProfiles, "linkProfiles"); this.linkProfiles.Name = "linkProfiles"; this.linkProfiles.TabStop = true; - this.toolTip1.SetToolTip(this.linkProfiles, resources.GetString("linkProfiles.ToolTip")); this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked); // // lnkControllers @@ -1156,7 +1081,6 @@ private void InitializeComponent() resources.ApplyResources(this.lnkControllers, "lnkControllers"); this.lnkControllers.Name = "lnkControllers"; this.lnkControllers.TabStop = true; - this.toolTip1.SetToolTip(this.lnkControllers, resources.GetString("lnkControllers.ToolTip")); this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked); // // linkUninstall @@ -1164,7 +1088,6 @@ private void InitializeComponent() resources.ApplyResources(this.linkUninstall, "linkUninstall"); this.linkUninstall.Name = "linkUninstall"; this.linkUninstall.TabStop = true; - this.toolTip1.SetToolTip(this.linkUninstall, resources.GetString("linkUninstall.ToolTip")); this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked); // // linkSetup @@ -1172,7 +1095,6 @@ private void InitializeComponent() resources.ApplyResources(this.linkSetup, "linkSetup"); this.linkSetup.Name = "linkSetup"; this.linkSetup.TabStop = true; - this.toolTip1.SetToolTip(this.linkSetup, resources.GetString("linkSetup.ToolTip")); this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked); // // lLBUpdate @@ -1180,16 +1102,14 @@ private void InitializeComponent() resources.ApplyResources(this.lLBUpdate, "lLBUpdate"); this.lLBUpdate.Name = "lLBUpdate"; this.lLBUpdate.TabStop = true; - this.toolTip1.SetToolTip(this.lLBUpdate, resources.GetString("lLBUpdate.ToolTip")); this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked); // // tabLog // - resources.ApplyResources(this.tabLog, "tabLog"); this.tabLog.Controls.Add(this.lvDebug); this.tabLog.Controls.Add(this.btnClear); + resources.ApplyResources(this.tabLog, "tabLog"); this.tabLog.Name = "tabLog"; - this.toolTip1.SetToolTip(this.tabLog, resources.GetString("tabLog.ToolTip")); this.tabLog.UseVisualStyleBackColor = true; // // saveProfiles @@ -1198,7 +1118,6 @@ private void InitializeComponent() // // cMCustomLed // - resources.ApplyResources(this.cMCustomLed, "cMCustomLed"); this.cMCustomLed.ImageScalingSize = new System.Drawing.Size(20, 20); this.cMCustomLed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.useProfileColorToolStripMenuItem, @@ -1206,20 +1125,20 @@ private void InitializeComponent() this.cMCustomLed.Name = "cMCustomLed"; this.cMCustomLed.ShowCheckMargin = true; this.cMCustomLed.ShowImageMargin = false; - this.toolTip1.SetToolTip(this.cMCustomLed, resources.GetString("cMCustomLed.ToolTip")); + resources.ApplyResources(this.cMCustomLed, "cMCustomLed"); // // useProfileColorToolStripMenuItem // - resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem"); this.useProfileColorToolStripMenuItem.Checked = true; this.useProfileColorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.useProfileColorToolStripMenuItem.Name = "useProfileColorToolStripMenuItem"; + resources.ApplyResources(this.useProfileColorToolStripMenuItem, "useProfileColorToolStripMenuItem"); this.useProfileColorToolStripMenuItem.Click += new System.EventHandler(this.useProfileColorToolStripMenuItem_Click); // // useCustomColorToolStripMenuItem // - resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem"); this.useCustomColorToolStripMenuItem.Name = "useCustomColorToolStripMenuItem"; + resources.ApplyResources(this.useCustomColorToolStripMenuItem, "useCustomColorToolStripMenuItem"); this.useCustomColorToolStripMenuItem.Click += new System.EventHandler(this.useCustomColorToolStripMenuItem_Click); // // advColorDialog @@ -1228,14 +1147,13 @@ private void InitializeComponent() // // DS4Form // - resources.ApplyResources(this, "$this"); this.AllowDrop = true; + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.White; this.Controls.Add(this.tabMain); this.Controls.Add(this.pnlButton); this.Name = "DS4Form"; - this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip")); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter); diff --git a/DS4Windows/DS4Forms/DS4Form.ar.resx b/DS4Windows/DS4Forms/DS4Form.ar.resx index eccf1f3082..c5d33443ba 100644 --- a/DS4Windows/DS4Forms/DS4Form.ar.resx +++ b/DS4Windows/DS4Forms/DS4Form.ar.resx @@ -6743,7 +6743,7 @@ 171, 26 - تكرير (Ctrl+C) + تكرير (Ctrl+D) 171, 26 @@ -6845,7 +6845,7 @@ كرر - كرر السجل المحدد (Ctrl+C) + كرر السجل المحدد (Ctrl+D) 77, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 8e8738a737..d8e2a37c60 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -329,7 +329,7 @@ public DS4Form(string[] args) hotkeysTimer.Start(); hotkeysTimer.Tick += Hotkeys; test.Tick += test_Tick; - if (!System.IO.Directory.Exists(appdatapath + "\\Virtual Bus Driver")) + if (!Directory.Exists(appdatapath + "\\Virtual Bus Driver")) linkUninstall.Visible = false; if (File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk")) { @@ -357,23 +357,6 @@ private async void UpdateTheUpdater() File.Move(exepath + "\\Update Files\\DS4Updater.exe", exepath + "\\DS4Updater.exe"); Directory.Delete(exepath + "\\Update Files"); } - if(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileBuildPart == 32 && - (!File.Exists(exepath + "\\DS4Updater.exe") || - (File.Exists(exepath + "\\DS4Updater.exe") && FileVersionInfo.GetVersionInfo(exepath + "\\DS4Updater.exe").FileBuildPart < 32))) - { - Uri url2 = new Uri("https://github.com/Jays2Kings/DS4Windows/releases/download/v1.4.32/DS4Updater.exe"); - WebClient wc2 = new WebClient(); - if (appdatapath == exepath || !AdminNeeded()) - { - File.Delete(exepath + "\\DS4Updater.exe"); - wc2.DownloadFileAsync(url2, exepath + "\\DS4Updater.exe"); - } - else - { - MessageBox.Show(Properties.Resources.PleaseDownloadUpdater); - Process.Start("https://github.com/Jays2Kings/DS4Windows/releases/download/v1.4.32/DS4Updater.exe"); - } - } } void NewVersion() @@ -480,9 +463,9 @@ private void OnPowerChange(object s, PowerModeChangedEventArgs e) private void test_Tick(object sender, EventArgs e) { - /*testing values + //testing values lbTest.Visible = true; - lbTest.Text = Program.rootHub.oldtouchvalue[0].ToString();//*/ + lbTest.Text = ((int)(Program.rootHub.ExposedState[0].AccelX * 2) / 2f).ToString(); } void Hotkeys(object sender, EventArgs e) { @@ -932,13 +915,13 @@ private void lBProfiles_MouseDoubleClick(object sender, MouseEventArgs e) private void lBProfiles_KeyDown(object sender, KeyEventArgs e) { - if (lBProfiles.SelectedIndex >= 0 && opt == null) + if (lBProfiles.SelectedIndex >= 0 && !opt.Visible) { if (e.KeyValue == 13) ShowOptions(4, lBProfiles.SelectedItem.ToString()); if (e.KeyValue == 46) tsBDeleteProfle_Click(this, e); - if (e.KeyValue == 67 && e.Modifiers == Keys.Control) + if (e.KeyValue == 68 && e.Modifiers == Keys.Control) tSBDupProfile_Click(this, e); } diff --git a/DS4Windows/DS4Forms/DS4Form.de-DE.resx b/DS4Windows/DS4Forms/DS4Form.de-DE.resx index 8004bdb52a..e6f24741c4 100644 --- a/DS4Windows/DS4Forms/DS4Form.de-DE.resx +++ b/DS4Windows/DS4Forms/DS4Form.de-DE.resx @@ -6744,7 +6744,7 @@ 226, 26 - Kopieren (Strg+C) + Kopieren (Strg+D) 226, 26 diff --git a/DS4Windows/DS4Forms/DS4Form.es.resx b/DS4Windows/DS4Forms/DS4Form.es.resx index 37ec6fe39f..cf788693ea 100644 --- a/DS4Windows/DS4Forms/DS4Form.es.resx +++ b/DS4Windows/DS4Forms/DS4Form.es.resx @@ -6743,7 +6743,7 @@ 240, 24 - Duplicar (Ctrl+C) + Duplicar (Ctrl+D) 240, 24 @@ -6851,7 +6851,7 @@ Duplicar - Duplicar perfil seleccionado (Ctrl+C) + Duplicar perfil seleccionado (Ctrl+D) 91, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.fr-FR.resx b/DS4Windows/DS4Forms/DS4Form.fr-FR.resx index 259f1f57b0..9696c5d79e 100644 --- a/DS4Windows/DS4Forms/DS4Form.fr-FR.resx +++ b/DS4Windows/DS4Forms/DS4Form.fr-FR.resx @@ -6773,7 +6773,7 @@ 206, 26 - Dupliquer (Ctrl+C) + Dupliquer (Ctrl+D) 206, 26 diff --git a/DS4Windows/DS4Forms/DS4Form.he.resx b/DS4Windows/DS4Forms/DS4Form.he.resx index 60171b6616..f01f7eb68a 100644 --- a/DS4Windows/DS4Forms/DS4Form.he.resx +++ b/DS4Windows/DS4Forms/DS4Form.he.resx @@ -121,7 +121,7 @@ זמן - דאטה + נתונים התחל @@ -6366,7 +6366,7 @@ בקרים - התחבר ל-DS4 בלעדית + התחבר ל-DS4 בלעדית (ניסיוני) 1085, 94 @@ -6716,37 +6716,37 @@ 186, 26 - הגדר בבקר 1 + הגדר כבקר 1 186, 26 - הגדר בבקר 2 + הגדר כבקר 2 186, 26 - הגדר בבקר 3 + הגדר כבקר 3 186, 26 - הגדר בבקר 4 + הגדר כבקר 4 186, 26 - מחיקה (Delete) + מחק (Delete) 186, 26 - שכפל (Ctrl+C) + שכפל (Ctrl+D) 186, 26 @@ -6851,7 +6851,7 @@ שכפל - שכפל את הפרופיל הנבחר + שכפל את הפרופיל הנבחר (Ctrl+D) 60, 24 @@ -6860,7 +6860,7 @@ ייבא - ייבא את הפרופיל הנבחר + ייבא פרופיל/ים @@ -6940,7 +6940,7 @@ 224, 21 - נתק Bluetooth בעת השימוש בבקר + נתק Bluetooth בעת הסגירה 269, 28 @@ -7065,4 +7065,7 @@ שימוש בצבע מסוים + + סגירה ממזערת + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.it-IT.resx b/DS4Windows/DS4Forms/DS4Form.it-IT.resx index acf07b15aa..258122c23f 100644 --- a/DS4Windows/DS4Forms/DS4Form.it-IT.resx +++ b/DS4Windows/DS4Forms/DS4Form.it-IT.resx @@ -6737,7 +6737,7 @@ 233, 26 - Duplica (Ctrl+C) + Duplica (Ctrl+D) 233, 26 @@ -6845,7 +6845,7 @@ Duplica - Duplica Profilo Selezionato (Ctrl+C) + Duplica Profilo Selezionato (Ctrl+D) 86, 24 @@ -7035,4 +7035,31 @@ Registro + + Connetti Solo DS4 (sperimentale) + + + Nessuno + + + Solo Avvisi + + + Tutto + + + Data + + + ID + + + Hotkeys/About + + + Usa Colore Personalizzato + + + Usa Colore Profilo + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.pt-BR.resx b/DS4Windows/DS4Forms/DS4Form.pt-BR.resx index 58f907d393..869c629960 100644 --- a/DS4Windows/DS4Forms/DS4Form.pt-BR.resx +++ b/DS4Windows/DS4Forms/DS4Form.pt-BR.resx @@ -6746,7 +6746,7 @@ 202, 26 - Duplicar (Ctrl+C) + Duplicar (Ctrl+D) 202, 26 @@ -6854,7 +6854,7 @@ Duplicar - Duplicar perfil selecionado (Ctrl+C) + Duplicar perfil selecionado (Ctrl+D) 91, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.resx b/DS4Windows/DS4Forms/DS4Form.resx index f79d43321c..1b55dd9e2e 100644 --- a/DS4Windows/DS4Forms/DS4Form.resx +++ b/DS4Windows/DS4Forms/DS4Form.resx @@ -117,2208 +117,320 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Time + - - True + + 167 + + + Data + + + 84 - - 4, 4, 4, 4 + + Fill - - 158, 0 + + Lucida Console, 9.75pt - - 0 + + 4, 4 - + 4, 4, 4, 4 - - tLPControllers - - - bnEditC1 + + 1114, 415 - - Use Profile Color + + 0 - - 0, 0 + + lvDebug - - Fill + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + tabLog - - tLPControllers + + 0 - - + + 17, 17 + + + Bottom, Right - - 52 + + True - - 141, 17 + + NoControl - - 53 + + 812, 11 - - None + + 4, 0, 4, 0 - - Hide DS4 Controller + + 129, 17 - - 43 + + 46 - - True + + Used to test values - - cMTaskbar + + False - - 0 + + lbTest - - tSBKeepSize + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 48 + + pnlButton - - 739, 0 + + 0 - - 100% + + Bottom, Right - - tabLog + + NoControl - - 227, 26 + + 1050, 5 - - tLPControllers + + 4, 4, 4, 4 - - 2 + + 72, 29 - - 1122, 162 + + 1 - - 53 + + Start - - None + + btnStartStop - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Edit + + pnlButton - - lbID + + 1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom, Left, Right - - 59, 24 + + NoControl - - lbLastXIPort + + 5, 11 - - 155, 21 + + 4, 0, 4, 0 - - True + + 931, 22 - - 202, 26 + + 41 - - pnlButton + + lbLastMessage - - 84 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbPad2 + + pnlButton 2 - - 55 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom, Right - - importToolStripMenuItem + + True - - 13, 346 + + NoControl - - 42 + + 943, 11 - + 4, 0, 4, 0 - - 149, 17 - - - None - - - pNUpdate + + 100, 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - Save Profile + + Hotkeys/About - - editProfileForController4ToolStripMenuItem + + llbHelp - + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 - - - None + + pnlButton - + 3 - - Time + + Bottom - - days + + 0, 481 - - pBStatus4 + + 4, 4, 4, 4 - - NoControl + + 1130, 38 - - 1114, 415 - - - 747, 27 - - - 47 - - - System.Windows.Forms.ToolStripMenuItem, 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 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 126, 21 + + 10 - + pnlButton - - 1 - - - Edit - - - nUDXIPorts - - - 4, 0, 4, 0 - - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 - - - 4, 0, 4, 0 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 4, 4, 4, 4 - - - 1032, 130 - - - 747, 99 - - - 265, 24 - - - None - - - 4, 0, 4, 0 - - - chData - - - - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None + + $this - - + + 4 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom - - + + False - + NoControl - - 886, 23 - - - tLPControllers - - - Dupliacate Selected Profile (Ctrl+C) - - - 0 - - - 4, 4 - - - 44 - - - tSBExportProfile - - - Check for Update Now - - - - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tLPControllers - - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - toolTip1 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Left + + 4, 419 - - tabControllers + + 4, 4, 4, 4 - - NoControl + + 1114, 29 - + 9 - - tLPControllers - - - editProfileForController2ToolStripMenuItem - - - 122, 21 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Microsoft Sans Serif, 9pt - - - 0 - - - 7 + + Clear - - cBController4 + + btnClear - - System.Windows.Forms.FlowLayoutPanel, 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 - - NoControl + + tabLog - - 943, 11 + + 1 - - Keep this window size after closing + + 226, 17 + + + Scp server - - + + 339, 17 + + + 262, 26 - - New + + Edit Profile for Controller 1 - - + + 262, 26 - - Top + + Edit Profile for Controller 2 - - 1 + + 262, 26 - - 513, 62 + + Edit Profile for Controller 3 - - tLPControllers + + 262, 26 - - tLPControllers + + Edit Profile for Controller 4 - - 9 + + 259, 6 - - + + 262, 26 - - Microsoft Sans Serif, 9pt + + Start - - Hotkeys/About + + Segoe UI, 9pt, style=Bold - - Magenta + + 262, 26 - - 32, 28 + + Open - - 1050, 5 + + 262, 26 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Exit (Middle Mouse) - - 931, 22 + + 263, 192 - - Top, Right + + cMTaskbar - - 4 - - - pnlXIPorts - - - Edit - - - 44 - - - pnlXIPorts - - - linkProfiles - - - NoControl - - - 44 - - - flowLayoutPanel1 - - - 4, 4, 4, 4 - - - - - - - - - 3 - - - - - - New Profile - - - - - - 45 - - - lLBUpdate - - - 4, 4, 4, 4 - - - 4, 99 - - - assignToController3ToolStripMenuItem - - - 4, 4, 4, 4 - - - 45 - - - 54 - - - Magenta - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Left - - - 4, 25 - - - 4, 4, 4, 4 - - - cBDownloadLangauge - - - tabAutoProfiles - - - 0 - - - 11 - - - - - - - - - Edit Profile for Controller 1 - - - - - - 1 - - - None - - - 4, 0, 4, 0 - - - - - - - - - Used to test values - - - 3 - - - 4, 4, 4, 4 - - - 13 - - - 4 - - - Edit Selected Profile (Enter) - - - 4, 4, 4, 4 - - - 13, 317 - - - Flat - - - fLPSettings - - - - - - NoControl - - - 4, 4, 4, 4 - - - 55, 22 - - - - - - tabMain - - - 86, 17 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4, 4, 4, 4 - - - tSBCancel - - - Magenta - - - 4, 0, 4, 0 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1086, 94 - - - - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 45 - - - 44 - - - 42 - - - advColorDialog - - - fLPSettings - - - pBStatus2 - - - 40 - - - panel2 - - - Edit - - - - - - 4, 4, 4, 4 - - - 100% - - - 1086, 58 - - - toolStripLabel1 - - - 5, 11 - - - 4, 4, 4, 4 - - - tSBImportProfile - - - tLPControllers - - - fLPSettings - - - tLPControllers - - - lbBattery - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 262, 26 - - - True - - - 4, 4, 4, 4 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="bnLight3" Row="3" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="pBStatus1" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbPad1" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad2" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="bnEditC3" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC4" Row="4" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbPad3" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad4" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cBController1" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="bnEditC2" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController2" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="cBController3" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="bnEditC1" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController4" Row="4" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lbSelectedProfile" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lbID" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbStatus" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbBattery" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt1" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt2" Row="2" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt3" Row="3" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt4" Row="4" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="pBStatus2" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus3" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus4" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="bnLight1" Row="1" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnLight2" Row="2" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnLight4" Row="4" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Percent,46.27451,Percent,28.23529,Percent,25.4902,AutoSize,0,AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings> - - - 63, 24 - - - fLPSettings - - - bnEditC3 - - - lbUseXIPorts - - - 132, 24 - - - 12 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - Delete - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - No Controllers Connected (Max 4) - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - NoControl - - - 11 - - - 4, 0, 4, 0 - - - cBController2 - - - lbNoControllers - - - True - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1114, 27 - - - lbNotifications - - - 251, 21 - - - 44 - - - 43 - - - 9, 9, 0, 11 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1114, 390 - - - None - - - tabMain - - - 7 - - - useProfileColorToolStripMenuItem - - - 4, 4, 4, 4 - - - - - - 43 - - - 41 - - - NoControl - - - 120, 120 - - - - - - - - - True - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 232, 28 - - - startToolStripMenuItem - - - True - - - tLPControllers - - - tSBDupProfile - - - True - - - tSOptions - - - - - - 4, 4, 4, 4 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - llbHelp - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - tmrUpdate - - - 97, 24 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Import Profile or Profiles - - - - - - 55 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pnlButton - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TopDown - - - lbCheckEvery - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 13, 194 - - - - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5 - - - 46, 28 - - - 0 - - - 42 - - - 227, 26 - - - tLPControllers - - - - - - True - - - 1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Auto Profiles - - - tsBDeleteProfile - - - Lucida Console, 9.75pt - - - 1122, 452 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 257, 21 - - - - - - Microsoft Sans Serif, 9pt - - - tabProfiles - - - 44 - - - 2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Exit (Middle Mouse) - - - - - - Microsoft Sans Serif, 9pt - - - True - - - 1 - - - NoControl - - - 4, 0, 4, 0 - - - 4 - - - 1 - - - 56, 18 - - - NoControl - - - 3 - - - tabSettings - - - - - - 1032, 58 - - - 4, 4, 4, 4 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - True - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 39, 20 - - - tLPControllers - - - 202, 26 - - - TopDown - - - 266, 28 - - - 886, 95 - - - 0 - - - Import - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 85, 18 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - NoControl - - - 44 - - - 47 - - - None - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - bnLight1 - - - Edit Profile for Controller 2 - - - 46, 28 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - lvDebug - - - - - - AutoSize - - - 1122, 29 - - - 4, 0, 4, 0 - - - 263, 192 - - - NoControl - - - NoControl - - - 891, 0 - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel1 - - - Controller/Driver Setup - - - 46, 28 - - - True - - - Magenta - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - XML Files (*.xml)|*.xml - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 51 - - - Bottom - - - 0 - - - toolStripSeparator3 - - - fLPSettings - - - 32, 28 - - - 4, 4, 4, 4 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - - 1122, 452 - - - 4, 0, 4, 0 - - - hideDS4CheckBox - - - 39, 20 - - - 4, 4, 4, 4 - - - flowLayoutPanel1 - - - 1122, 452 - - - Fill - - - 13, 165 - - - Microsoft Sans Serif, 9pt - - - 4, 0, 4, 0 - - - 0 - - - 13 - - - False - - - btnClear - - - tLPControllers - - - toolStrip1 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tLPControllers - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 262, 26 - - - cBDisconnectBT - - - NoControl - - - Flash Lightbar when Latency is over - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - lbTest - - - tsBEditProfile - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - 39, 20 - - - 127, 18 - - - 45 - - - 1130, 519 - - - tsBNewProfle - - - 130, 21 - - - 4, 0, 4, 0 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabProfiles - - - tabProfiles - - - $this - - - NoControl - - - Fill - - - 369, 13 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAASlJREFUOE9jGFzgYnr0/7PJEf+hXAywxdf9/0YvZ+zy5xKC/39cOfP/x5kd/3fZ - m2AoWqCn/v/1gkn/X3cX/V9qpo9pyKlov//vpzb8/z6n9f/H3rL/G8314IpAmkGGf5taCzZgoaE2dleA - bH7dkPr/Q1vW/5d1yf9X6Kv/B2l+t6APLjZDQRq7ZhgA2fw0x/f/85JQsAaQjc8Lg8Bi0+Wl8GuGAZDN - D9Lc/j9IsPt/J8QAjAnajAxAzn6YG/T/pr8WHBNtO1hzYybcZhi+5q9H2BCQ5kftxWCn34qyBjsbpAnE - honhNGS9kzVYMyiw7qV6ovgZpAkkBpK7k+yOPRrX2Jv/v5fpD/Y7tgADGQKSA+H5+lrYXQHywjwdNeyS - QACSwyc/EICBAQCCn9usx9GsUgAAAABJRU5ErkJggg== - - - - hours - - - NoControl - - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 1122, 452 - - - 0 - - - NoControl - - - 4, 68 - - - - 4 - - - lbBatt1 - - - 259, 6 - - - Profile folder - - - cBQuickCharge - - - - - - True - - - NoControl - - - AutoSize - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAANBJREFUOE+VkLEKwjAQhvOI7voIvoJdg2MmXV0ydCkuhu4ubtWK4KRTBbWO0i1y - Z09teiHxg5+UcPn6c0JrbbmIWGDYBe7yPI+T+ARAlISGy/Pdro9X/IaHxphP2lEergGQJAmbXisS7E43 - bLAqLjbdVDjsQpL26Ru3QdM88fQJAKXUVxJqMF0e7CTdo1hKiY8pHYEL1wCoHzWmJwg1GC9KO5xv7UAV - eP93A9oNnR2BmyzL2AajGdPAByyMgL/+BggKYAAI7sAHCXxECUIRQogXJZdgeVgrrjcAAAAASUVORK5C - YII= - - - - 4 - - - 4, 4, 4, 4 - - - - - - tSTBProfile - - - 44 - - - Edit Profile for Controller 4 - - - 56 - - - cBUpdateTime - - - - - - flowLayoutPanel1 - - - 4, 0, 4, 0 - - - 886, 59 - - - - - - Microsoft Sans Serif, 9pt, style=Bold - - - duplicateToolStripMenuItem - - - 2 - - - Magenta - - - 13, 382 - - - True - - - NoControl - - - tLPControllers - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabSettings - - - 100% - - - Disconnect from BT when Stopping - - - 26, 17 - - - tabLog - - - Flat - - - Selected Profile - - - - - - 4, 25 - - - 32, 28 - - - 13, 259 - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 252, 21 - - - 47 - - - 4, 419 - - - 4, 4, 4, 4 - - - 227, 26 - - - 61, 18 - - - openProfiles - - - NoControl - - - 25 - - - 1130, 481 - - - 11 - - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 227, 26 - - - 0 - - - Bottom, Right - - - 99, 24 - - - 227, 26 - - - Microsoft Sans Serif, 9.75pt - - - 114, 17 - - - 4, 4, 4, 4 - - - 39, 20 - - - linkUninstall - - - True - - - 4, 4 - - - 2 - - - lbSelectedProfile - - - Battery - - - Warnings only - - - 0 - - - fLPSettings - - - 5 - - - 1 - - - 8 - - - chTime - - - tabProfiles - - - Run at Startup - - - 262, 26 - - - Left - - - 52 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4, 0, 4, 0 - - - True - - - 4, 58 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 100, 17 - - - None - - - lbBatt2 - - - 44 - - - deleteToolStripMenuItem - - - Microsoft Sans Serif, 9pt, style=Bold - - - - - - 49 - - - 4, 4, 4, 4 - - - True - - - fLPSettings - - - 504, 0 - - - Edit - - - 8 - - - - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1032, 22 - - - 10 - - - 4, 4 - - - 46 - - - - - - pnlButton - - - 77, 24 - - - 13, 100 - - - NoControl - - - Microsoft Sans Serif, 9pt - - - - - - 20 - - - nUDLatency - - - 1114, 29 - - - - - - Export Selected Profile - - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - - - - 4, 4, 4, 4 - - - 319, 5 - - - NoControl - - - NoControl - - - Left - - - 4, 4, 4, 4 - - - 4, 4, 4, 4 - - - tLPControllers - - - 4, 0, 4, 0 - - - 4, 0, 4, 0 - - - Download Language Pack with Update - - - 152, 17 - - - 45, 18 - - - cBController3 - - - Microsoft Sans Serif, 9pt - - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 45, 18 - - - NoControl - - - 15 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - Left - - - Settings - - - StartWindowsCheckBox - - - - - - fLPSettings - - - startMinimizedCheckBox - - - Open - - - tabControllers - - - 123, 17 - - - 4, 4, 4, 4 - - - Top, Right - - - pNUpdate - - - 4, 27 - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 44 - - - tabControllers - - - - - - Profile Name: - - - lbPad1 - - - openToolStripMenuItem - - - 4, 4, 4, 4 - - - Top, Right - - - True - - - None - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Swipe Touchpad to change profiles - - - NoControl - - - fLPSettings - - - Left - - - Use Custom Color - - - Fill - - - 256, 2 - - - True - - - Export - - - None - - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - - - - Segoe UI, 9pt, style=Bold - - - True - - - 262, 26 - - - Duplicate (Ctrl+C) - - - - - - ID - - - Log - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 74, 24 - - - Delete Selected Profile (Delete) - - - 0 - - - 3 - - - fLPSettings - - - 85, 18 - - - 41 - - - 43 - - - Top, Right - - - tLPControllers - - - - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 348, 28 - - - 2 - - - 46, 28 - - - assignToController1ToolStripMenuItem - - - tLPControllers - - - - - - 4, 4, 4, 4 - - - True - - - Fill - - - 4, 4, 4, 4 - - - False - - - 43 - - - 42 - - - 4, 4 - - - - - - 570, 277 - - - System.Windows.Forms.ToolStripMenuItem, 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 - - - Top - - - Edit Profile for Controller 3 - - - cBSwipeProfiles - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - True - - - Quick Charge - - - NoControl - - - 4, 17 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DS4 Xinput Tool - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 45 - - - NoControl - - - 1 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8492,1464 +6604,3104 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - 22 + + DS4 Xinput Tool + + + True + + + 211, 6 + + + 449, 17 + + + XML Files (*.xml)|*.xml + + + Top + + + NoControl + + + 0, 162 + + + 4, 4, 4, 4 + + + 1122, 29 + + + 48 + + + Connect DS4 exclusivly (experimental) + + + btnConnectDS4Win10 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControllers + + + 0 + + + 6 + + + Fill + + + Flat + + + NoControl + + + 1079, 94 + + + 4, 4, 4, 4 + + + 39, 28 + + + 50 + + + bnLight3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 0 + + + None + + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + NoControl + + + 509, 26 + + + 4, 4, 4, 4 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 1 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 4, 27 + + + 4, 0, 4, 0 + + + 133, 18 + + + 44 + + + MA:C1:23:45:67:89 + + + lbPad1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 2 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 4, 63 + + + 4, 0, 4, 0 + + + 85, 18 + + + 44 + + + Controller 2 + + + lbPad2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 3 + + + Left + + + NoControl + + + 1025, 94 + + + 4, 4, 4, 4 + + + 46, 28 + + + 43 + + + Edit + + + bnEditC3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 4 + + + Left + + + NoControl + + + 1025, 130 + + + 4, 4, 4, 4 + + + 46, 28 + + + 43 + + + Edit + + + bnEditC4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 5 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 4, 99 + + + 4, 0, 4, 0 + + + 85, 18 + + + 44 + + + Controller 3 + + + lbPad3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 6 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 4, 135 + + + 4, 0, 4, 0 + + + 85, 18 + + + 44 + + + Controller 4 + + + lbPad4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 7 + + + None + + + 879, 23 + + + 4, 4, 4, 4 + + + 138, 24 + + + 42 + + + cBController1 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 8 + + + Left + + + NoControl + + + 1025, 58 + + + 4, 4, 4, 4 + + + 46, 28 + + + 43 + + + Edit + + + bnEditC2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 9 + + + None + + + 879, 59 + + + 4, 4, 4, 4 + + + 138, 24 + + + 42 + + + cBController2 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 10 + + + None + + + 879, 95 + + + 4, 4, 4, 4 + + + 138, 24 + + + 42 + + + cBController3 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 11 + + + Left + + + NoControl + + + 1025, 22 + + + 4, 4, 4, 4 + + + 46, 28 + + + 43 + + + Edit + + + bnEditC1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 12 + + + None + + + 879, 131 + + + 4, 4, 4, 4 + + + 138, 24 + + + 42 + + + cBController4 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 13 + + + None + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + NoControl + + + 884, 0 + + + 4, 0, 4, 0 + + + 127, 18 + + + 45 + + + Selected Profile + + + lbSelectedProfile + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 14 + + + Left + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + NoControl + + + 4, 0 + + + 4, 0, 4, 0 + + + 24, 18 + + + 45 + + + ID + + + lbID + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 15 + + + None + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + NoControl + + + 500, 0 + + + 4, 0, 4, 0 + + + 56, 18 + + + 45 + + + Status + + + lbStatus + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 16 + + + None + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + NoControl + + + 733, 0 + + + 4, 0, 4, 0 + + + 61, 18 + + + 45 + + + Battery + + + lbBattery + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 17 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 741, 27 + + + 4, 0, 4, 0 + + + 45, 18 + + + 44 + + + 100% + + + lbBatt1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 18 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 741, 63 + + + 4, 0, 4, 0 + + + 45, 18 + + + 44 + + + 100% + + + lbBatt2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 19 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 741, 99 + + + 4, 0, 4, 0 + + + 45, 18 + + + 44 + + + 100% + + + lbBatt3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 20 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + NoControl + + + 741, 135 + + + 4, 0, 4, 0 + + + 45, 18 + + + 44 + + + 100% + + + lbBatt4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 21 + + + None + + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + NoControl + + + 509, 62 + + + 4, 4, 4, 4 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus2 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 22 + + + None + + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + NoControl + + + 509, 98 + + + 4, 4, 4, 4 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus3 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 23 + + + None + + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + NoControl + + + 509, 134 + + + 4, 4, 4, 4 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus4 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 24 + + + Fill + + + Flat + + + NoControl + + + 1079, 22 + + + 4, 4, 4, 4 + + + 39, 28 + + + 50 + + + bnLight1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 25 + + + Fill + + + Flat + + + NoControl + + + 1079, 58 + + + 4, 4, 4, 4 + + + 39, 28 + + + 51 + + + bnLight2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 26 + + + Fill + + + Flat + + + NoControl + + + 1079, 130 + + + 4, 4, 4, 4 + + + 39, 28 + + + 52 + + + bnLight4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 27 + + + Top + + + 0, 0 + + + 4, 4, 4, 4 + + + 5 + + + 1122, 162 + + + 46 + + + tLPControllers + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControllers + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="bnLight3" Row="3" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="pBStatus1" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbPad1" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad2" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="bnEditC3" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="bnEditC4" Row="4" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lbPad3" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbPad4" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cBController1" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="bnEditC2" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController2" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="cBController3" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="bnEditC1" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cBController4" Row="4" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lbSelectedProfile" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lbID" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbStatus" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbBattery" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt1" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt2" Row="2" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt3" Row="3" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lbBatt4" Row="4" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="pBStatus2" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus3" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pBStatus4" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="bnLight1" Row="1" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnLight2" Row="2" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="bnLight4" Row="4" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Percent,46.27451,Percent,28.23529,Percent,25.4902,AutoSize,0,AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,Percent,25,Percent,25,Percent,25,Percent,25" /></TableLayoutSettings> + + + Fill + + + False + + + NoControl + + + 0, 0 + + + 4, 0, 4, 0 + + + 1122, 452 + + + 47 + + + No Controllers Connected (Max 4) + + + MiddleCenter + + + lbNoControllers + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControllers + + + 2 + + + 4, 25 + + + 4, 4, 4, 4 + + + 1122, 452 + + + 3 + + + Controllers + + + tabControllers + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 0 + + + 788, 17 + + + Segoe UI, 9pt, style=Bold + + + 227, 26 + + + Edit + + + 227, 26 + + + Assign to Controller 1 + + + 227, 26 + + + Assign to Controller 2 + + + 227, 26 + + + Assign to Controller 3 + + + 227, 26 + + + Assign to Controller 4 + + + 227, 26 + + + Delete (Del) + + + 227, 26 + + + Duplicate (Ctrl+C) + + + 227, 26 + + + New Profile + + + 227, 26 + + + Import + + + 227, 26 + + + Export + + + 228, 264 + + + cMProfile + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + Microsoft Sans Serif, 9.75pt + + + 20 + + + 4, 58 + + + 4, 4, 4, 4 + + + 1114, 390 + + + 0 + + + lBProfiles + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 0 + + + 891, 17 + + + 99, 24 + + + Profile Name: + + + 186, 27 + + + <type profile name here> + + + Magenta + + + 111, 24 + + + Save Profile + + + Magenta + + + 77, 24 + + + Cancel + + + 6, 27 + + + Magenta + + + 265, 24 + + + Keep this window size after closing + + + 4, 31 + + + 1114, 27 + + + 2 + + + Profile Options + + + tSOptions + + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 1 + + + 568, 17 + + + Magenta + + + 63, 24 + + + New + + + Make a New Profile + + + Magenta + + + 59, 24 + + + Edit + + + Edit Selected Profile (Enter) + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAEpSURBVDhPYxhc4GJ69P+zyRH/oVwMsMXX/f9GL2fs8ucS + gv9/XDnz/8eZHf932ZtgKFqgp/7/9YJJ/193F/1faqaPacipaL//76c2/P8+p/X/x96y/xvN9eCKQJpB + hn+bWgs2YKGhNnZXgGx+3ZD6/0Nb1v+Xdcn/V+ir/wdpfregDy42Q0Eau2YYANn8NMf3//OSULAGkI3P + C4PAYtPlpfBrhgGQzQ/S3P4/SLD7fyfEAIwJ2owMQM5+mBv0/6a/FhwTbTtYc2Mm3GYYvuavR9gQkOZH + 7cVgp9+KsgY7G6QJxIaJ4TRkvZM1WDMosO6leqL4GaQJJAaSu5Psjj0a19ib/7+X6Q/2O7YAAxkCkgPh + +fpa2F0B8sI8HTXskkAAksMnPxCAgQEAgp/brMfRrFIAAAAASUVORK5CYII= + + + + Magenta - + + 77, 24 + + + Delete + + + Delete Selected Profile (Delete) + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADQSURBVDhPlZCxCsIwEIbziO76CL6CXYNjJl1dMnQpLobu + Lm7ViuCkUwW1jtItcmdPbXoh8YOflHD5+nNCa225iFhg2AXu8jyPk/gEQJSEhsvz3a6PV/yGh8aYT9pR + Hq4BkCQJm14rEuxON2ywKi423VQ47EKS9ukbt0HTPPH0CQCl1FcSajBdHuwk3aNYSomPKR2BC9cAqB81 + picINRgvSjucb+1AFXj/dwPaDZ0dgZssy9gGoxnTwAcsjIC//gYICmAACO7ABwl8RAlCEUKIFyWXYHlY + K643AAAAAElFTkSuQmCC + + + + Magenta + + + 97, 24 + + + Duplicate + + + Dupliacate Selected Profile (Ctrl+C) + + + Magenta + + + 78, 24 + + + Import + + + Import Profile or Profiles + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAG7SURBVDhPjZNNSwJRFIbd9AVFLfoV/pQW0qagdcuIFolF + kK0SpTQkosTogyaIYHITRhkZiEaSVARRmhliSlBYfhRRdvI9zr2ZCHXgcGfu3Oc5Z+7c0SEeow5Cpi8s + nLdhI+Vj43QdNPE18iwwxCMDtQHoLb0kBYXUPN2dO+k9G6KvVy+PyI+cp74EEBZiAfLpxs4V4xEbPd/v + SRGeBT39fwuQp75Bih5PsKR6Purv/p8AlSBw7y6S3hEgvfuS2ifDPMosz0tBKbfJYDGjcKJS+GiaAvtm + Urc3eHHbygM1KUXq3PrkEcJfAoCll3XexJDax6+BxJ7YvQo1uzIMipQdJE7MsnI+ucwCdIDXgACdYHE1 + jG6kAN8coIBRER2INNhWf1UH3OqM/QjwbXEOcolZeaDQwYHSSzPKMDWMHUoYYOOASh2mHRZLQSG5wJWz + cSufQsC+tR4yWKcYQtUWS4RhzIODRApQVSTuIUAXEIiWAadifimQIQSojA3FPWBtIX9zwKNzI9TlUvlZ + hdQCQDUsOoAAEGDROmBsrIZW4ipgrBzd8kNcYxQCZK1Aw+oH/kLIaqtgx+WmydDpvgHDWmdFLR8MQgAA + AABJRU5ErkJggg== + + + + Magenta + + + 76, 24 + + + Export + + + Export Selected Profile + + + 4, 4 + + + 1114, 27 + + + 1 + + + toolStrip1 + + + toolStrip1 + + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 2 + + + 4, 25 + + + 4, 4, 4, 4 + + + 4, 4, 4, 4 + + + 1122, 452 + + + 0 + + + Profiles + + + tabProfiles + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 1 + + + 4, 25 + + + 4, 4, 4, 4 + + + 1122, 452 + + + 2 + + + Auto Profiles + + + tabAutoProfiles + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 2 + + True - - 513, 98 + + True - - 886, 131 + + NoControl - - AutoSize + + 13, 13 - + + 4, 4, 4, 4 + + + 155, 21 + + + 13 + + + Hide DS4 Controller + + + hideDS4CheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPSettings + + + 0 + + True - - Top, Right + + NoControl - - cBoxNotifications + + 13, 42 - - Fill + + 4, 4, 4, 4 - - AutoSize + + 252, 21 + + + 54 + + + Swipe Touchpad to change profiles + + + cBSwipeProfiles + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 167 + + fLPSettings - + 1 - - - - - Data + + True - - 72, 29 + + NoControl - - 1114, 27 + + 13, 71 - + 4, 4, 4, 4 - - Show Notifications + + 122, 21 - - Make a New Profile + + 40 - - + + Run at Startup - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StartWindowsCheckBox - - System.Windows.Forms.ToolStripMenuItem, 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 - - panel2 + + fLPSettings - - 4, 0, 4, 0 + + 2 - - 4, 4, 4, 4 + + True - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - + + 13, 100 - - Controller 2 + + 4, 4, 4, 4 - - 227, 26 + + 126, 21 - - NoControl + + 40 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Start Minimized - - + + startMinimizedCheckBox - - Bottom, Left, Right + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + fLPSettings + + + 3 + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - Duplicate + + 4, 5 - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - + + 4, 0, 4, 0 - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 123, 17 - - 50 + + 45 - - 186, 27 + + Show Notifications - - 6 + + lbNotifications - - Start + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + panel1 - - tLPControllers + + 0 - - fLPSettings + + Top, Right - - 4, 0, 4, 0 + + None - - MiddleCenter + + Warnings only - - Check every + + All - - 4 + + 130, 1 - - newProfileToolStripMenuItem + + 4, 4, 4, 4 - - Left + + 132, 24 - - NoControl + + 44 - - 211, 6 + + cBoxNotifications - - + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panel1 - - Bottom, Right + + 1 - - 4, 0 + + 13, 129 - - 19 + + 4, 4, 4, 4 - - 18 + + 266, 28 - - tabMain + + 45 - - Segoe UI, 9pt, style=Bold + + panel1 - - 4, 25 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 116, 1 + + fLPSettings - - Use Xinput Ports + + 4 - - 57 + + True - - 747, 135 + + NoControl - - notifyIcon1 + + 13, 165 - + 4, 4, 4, 4 - - pBStatus1 + + 251, 21 - - 4, 31 + + 53 - - 0 + + Disconnect from BT when Stopping - - 4, 0, 4, 0 + + cBDisconnectBT - - System.Windows.Forms.ToolStripButton, 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 - - True + + fLPSettings - - 227, 26 + + 5 - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - + + Top, Right - - 138, 24 + + 256, 2 - - 4, 4 + + 4, 4, 4, 4 - - + + 55, 22 - - 2 + + 42 - - 1122, 452 + + nUDLatency - - 55, 22 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - XML Files (*.xml)|*.xml + + panel2 - - NoControl + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Right - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 4, 63 + + 319, 5 - - flowLayoutPanel1 + + 4, 0, 4, 0 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26, 17 - - Microsoft Sans Serif, 9pt + + 0 - - 4, 4, 4, 4 + + ms - - 262, 26 + + lbMsLatency - - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 34 + + panel2 - - Controller 4 + + 1 - - 42 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - cBCloseMini + + 0, 4 - - 138, 24 + + 4, 4, 4, 4 - - tLPControllers + + 257, 21 - - NoControl + + 53 - - 77, 24 + + Flash Lightbar when Latency is over - - $this + + cBFlashWhenLate - - 24 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43 + + panel2 - - 27 + + 2 - - lbLastMessage + + 13, 194 - - 55, 22 + + 4, 4, 4, 4 - - Bottom, Right + + 348, 28 - - lbPad4 + + 57 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panel2 - - 12 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + fLPSettings - - 1 + + 6 - - 21 + + True - - Control Panel + + NoControl - - 0, 4 + + 13, 230 - - 227, 26 + + 4, 4, 4, 4 - - All + + 130, 21 - - pnlXIPorts + + 55 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Close Minimizes - - 1122, 452 + + cBCloseMini - - tabMain + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 93, 17 + + fLPSettings - - editProfileForController3ToolStripMenuItem + + 7 - + True - - 3 - - - 0, 0 + + NoControl - - Assign to Controller 2 + + 13, 259 - - System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - btnConnectDS4Win10 + + 116, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - - cMProfile + + Quick Charge - - 0 + + cBQuickCharge - - System.Windows.Forms.NumericUpDown, 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 - - 116, 21 + + fLPSettings - - 227, 26 + + 8 - - + + True - - 1 + + NoControl - - panel2 + + 13, 288 - + 4, 4, 4, 4 - - 78, 24 + + 273, 21 + + + 41 + + + Download Language Pack with Update + + + cBDownloadLangauge System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + fLPSettings - + + 9 + + + True + + NoControl - - 4, 0, 4, 0 + + 13, 317 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - Export + + 213, 21 - - 26 + + 41 - - 4, 4, 4, 4 + + Check for Updates at Startup - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBUpdate - - pBStatus3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + fLPSettings - - 0 + + 10 - - 1114, 444 + + Top, Right - - + + hours - - lbStatus + + days - - Scp server + + 158, 0 - - 4, 0, 4, 0 + + 4, 4, 4, 4 - - Close Minimizes + + 74, 24 - - 17 + + 43 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cBUpdateTime - - 24, 18 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + pNUpdate - - 236, 28 + + 0 - - assignToController2ToolStripMenuItem + + Left - - Microsoft Sans Serif, 9pt, style=Bold + + True - - + + NoControl - - 6, 27 + + 4, 4 - - Profiles + + 4, 0, 4, 0 - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 17 - - 179, 4 + + 0 - - + + Check every - - + + lbCheckEvery - - MiddleCenter + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None + + pNUpdate - - 20 + + 1 - - 130, 1 + + Top, Right - - 25, 17 + + 95, 1 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55, 22 - - 133, 18 + + 42 - - True + + nUDUpdateTime - - NoControl + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cBController1 + + pNUpdate - + 2 - - 513, 26 + + False - - 32, 28 + + 13, 346 - - tabMain + + 4, 4, 4, 4 - - + + 236, 28 - - bnEditC4 + + 43 - - 13, 42 + + pNUpdate - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPSettings - - 13 + + 11 - - Fill + + Left - + + True + + NoControl - - 42 + + 4, 4 - - True + + 4, 0, 4, 0 - - 4, 5 + + 114, 17 - - 95, 1 + + 0 - - tabMain + + Use Xinput Ports - - toolStripSeparator2 + + lbUseXIPorts - - 227, 26 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlXIPorts + + + 0 + + Top, Right - - False + + 116, 1 - - True + + 4, 4, 4, 4 - - 5 + + 55, 22 - - linkSetup + + 42 - - 40 + + nUDXIPorts - - cBUpdate + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + pnlXIPorts - - 4, 0, 4, 0 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Right - - 4, 0, 4, 0 + + True - - Controller 3 + + NoControl - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 179, 4 - - 9 + + 4, 0, 4, 0 - - + + 25, 17 - - panel1 + + 0 - - 4, 51 + + - 4 - - Clear + + lbLastXIPort - - System.Windows.Forms.ToolStripMenuItem, 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 - - Fill + + pnlXIPorts - - exportToolStripMenuItem + + 2 - - Microsoft Sans Serif, 9pt, style=Bold + + 13, 382 - - Assign to Controller 4 + + 4, 4, 4, 4 - - bnEditC2 + + 232, 28 - - Left + + 44 - - Check for Updates at Startup + + pnlXIPorts - - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + fLPSettings - - True + + 12 - - tSBSaveProfile + + True - - 16 + + True - - 129, 17 + + NoControl - - 6 + + 4, 0 - - Magenta + + 4, 0, 4, 0 - - 228, 264 + + 88, 17 - - 4, 4, 4, 4 + + 50 - - None + + Profile folder - - bnLight4 + + linkProfiles - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bottom + + flowLayoutPanel1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 213, 21 + + True - - 0, 162 + + NoControl - - 4, 4, 4, 4 + + 4, 17 - - 4, 4, 4, 4 + + 4, 0, 4, 0 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 93, 17 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - MiddleCenter + + Control Panel - - 6 + + lnkControllers - - 203, 56 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + flowLayoutPanel1 - - tLPControllers + + 1 - - 4, 4, 4, 4 + + True - - 2 + + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 34 - - tLPControllers + + 4, 0, 4, 0 - - bnLight2 + + 141, 17 - - 262, 26 + + 44 - - panel2 + + Uninstall VBus Driver - - 100% + + MiddleCenter - - lnkControllers + + linkUninstall - - 46 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + flowLayoutPanel1 - - 4 + + 2 - - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.32.0, Culture=neutral, PublicKeyToken=null + + True - - 4, 135 + + NoControl - - Delete (Del) + + 4, 51 - - 50 + + 4, 0, 4, 0 - - + + 152, 17 - - exitToolStripMenuItem + + 52 - - 1086, 22 + + Controller/Driver Setup - - 0, 0 + + linkSetup - - fLPSettings + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13, 71 + + flowLayoutPanel1 - - lbPad3 + + 3 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - 50 - - - Fill + + 4, 68 - - Status + + 4, 0, 4, 0 - - assignToController4ToolStripMenuItem + + 149, 17 - - 1032, 94 + + 49 - - 1 + + Check for Update Now - - 0, 481 + + MiddleCenter - - bnLight3 + + lLBUpdate - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - nUDUpdateTime + + flowLayoutPanel1 - - + + 4 - - Start + + TopDown - - 13, 13 + + 369, 13 - - editProfileForController1ToolStripMenuItem + + 4, 4, 4, 4 - - fLPSettings + + 160, 85 - - 76, 24 + + 56 - - Edit + + flowLayoutPanel1 - - + + System.Windows.Forms.FlowLayoutPanel, 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 + + fLPSettings - - NoControl + + 13 - - 513, 134 + + Fill - - + + TopDown - - 1086, 130 + + 4, 4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 - - Import + + 9, 9, 0, 11 - - NoControl + + 1114, 444 - - 85, 18 + + 0 - - 4, 4, 4, 4 + + fLPSettings - - toolStrip1 + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tabSettings - - NoControl + + 0 - - + + 4, 25 - - Magenta + + 4, 4, 4, 4 - - True + + 4, 4, 4, 4 - - cBFlashWhenLate + + 1122, 452 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Settings - - NoControl + + tabSettings - - 13 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 262, 26 + + tabMain - - Assign to Controller 3 + + 3 - - True + + 4, 25 - - 42 + + 4, 4, 4, 4 - - + + 4, 4, 4, 4 - - + + 1122, 452 - - DS4Form + + 1 - - NoControl + + Log - - 4, 25 + + tabLog - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, 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 + + tabMain - - toolStripSeparator1 + + 4 - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - tLPControllers + + 0, 0 - - None + + 4, 4, 4, 4 - - 273, 21 + + 1130, 481 - - pnlButton + + 12 - - Profile Options + + tabMain - - 47 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + $this - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - MA:C1:23:45:67:89 + + 673, 17 + + + XML Files (*.xml)|*.xml - - True + + 997, 17 + + + 1110, 17 + + + 202, 26 - - NoControl + + Use Profile Color - - NoControl + + 202, 26 - - 812, 11 + + Use Custom Color - - 12 + + 203, 56 - - 4, 4, 4, 4 + + cMCustomLed - - 14 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 1264, 17 + + + True + + + 120, 120 - - 4, 0, 4, 0 + + 1130, 519 - + 4, 4, 4, 4 - - + + 570, 277 - - 747, 63 + + DS4Windows - - + + chTime - - NoControl + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - saveProfiles + + chData - - 44 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabControllers + + tmrUpdate - - lbBatt4 + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + notifyIcon1 - - Magenta + + System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + editProfileForController1ToolStripMenuItem - - <type profile name here> + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left + + editProfileForController2ToolStripMenuItem - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + editProfileForController3ToolStripMenuItem - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0 + + editProfileForController4ToolStripMenuItem - - 23 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + toolStripSeparator1 - - tLPControllers + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + startToolStripMenuItem - - Left + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 88, 17 + + openToolStripMenuItem - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + exitToolStripMenuItem - - 13, 288 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + toolStripSeparator2 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openProfiles - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAbtJREFUOE+Nk01LAlEUht30BUUt+hX+lBbSpqB1y4gWiUWQrRKlNCSixOiDJohg - chNGGRmIRpJUBFGaGWJKUFh+FFF28j3OvZkIdeBwZ+7c5zln7tzRIR6jDkKmLyyct2Ej5WPjdB008TXy - LDDEIwO1AegtvSQFhdQ83Z076T0boq9XL4/Ij5ynvgQQFmIB8unGzhXjERs93+9JEZ4FPf1/C5CnvkGK - Hk+wpHo+6u/+nwCVIHDvLpLeESC9+5LaJ8M8yizPS0Ept8lgMaNwolL4aJoC+2ZStzd4cdvKAzUpRerc - +uQRwl8CgKWXdd7EkNrHr4HEnti9CjW7MgyKlB0kTsyycj65zAJ0gNeAAJ1gcTWMbqQA3xyggFERHYg0 - 2FZ/VQfc6oz9CPBtcQ5yiVl5oNDBgdJLM8owNYwdShhg44BKHaYdFktBIbnAlbNxK59CwL61HjJYpxhC - 1RZLhGHMg4NEClBVJO4hQBcQiJYBp2J+KZAhBKiMDcU9YG0hf3PAo3Mj1OVS+VmF1AJANSw6gAAQYNE6 - YGyshlbiKmCsHN3yQ1xjFAJkrUDD6gf+Qshqq2DH5abJ0Om+AcNaZ0UtHwxCAAAAAElFTkSuQmCC - + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - pnlXIPorts + + editToolStripMenuItem - - 4, 0, 4, 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13, 230 + + assignToController1ToolStripMenuItem - - 138, 24 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1130, 38 + + assignToController2ToolStripMenuItem - - lbMsLatency + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbBatt3 + + assignToController3ToolStripMenuItem - - tabLog + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DS4Windows + + assignToController4ToolStripMenuItem - - editToolStripMenuItem + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 160, 85 + + deleteToolStripMenuItem - - Cancel + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 25 + + duplicateToolStripMenuItem - - 138, 24 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45, 18 + + newProfileToolStripMenuItem - - NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + importToolStripMenuItem - - 4, 0, 4, 0 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + exportToolStripMenuItem - - NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Connect DS4 exclusivly (experimental) + + toolStripLabel1 - - Start Minimized + + System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - fLPSettings + + tSTBProfile - - 13, 129 + + System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cMCustomLed + + tSBSaveProfile - - 0 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tSBCancel - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panel1 + + toolStripSeparator3 - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + tSBKeepSize - - btnStartStop + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + tsBNewProfle - - 45, 18 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + tsBEditProfile - - Top, Right + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + tsBDeleteProfile - - useCustomColorToolStripMenuItem + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Assign to Controller 1 + + tSBDupProfile - - pNUpdate + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tLPControllers + + tSBImportProfile - - 4, 4, 4, 4 + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 111, 24 + + tSBExportProfile - - + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 41 + + saveProfiles - - Uninstall VBus Driver + + System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Controllers + + toolTip1 - - 47 + + System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lBProfiles + + useProfileColorToolStripMenuItem - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 + + useCustomColorToolStripMenuItem - - ms + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left + + advColorDialog - - + + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.321.0, Culture=neutral, PublicKeyToken=null - - Magenta + + DS4Form + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 339, 17 - - - 788, 17 - - - True - - - 226, 17 - - - 1110, 17 - - - 673, 17 - - - vi - - - 891, 17 - - - 449, 17 - - - 17, 17 - - - 997, 17 - - - 1264, 17 - - - 568, 17 - \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.ro-RO.resx b/DS4Windows/DS4Forms/DS4Form.ro-RO.resx index 883bf38c52..1a0959a8ad 100644 --- a/DS4Windows/DS4Forms/DS4Form.ro-RO.resx +++ b/DS4Windows/DS4Forms/DS4Form.ro-RO.resx @@ -6752,7 +6752,7 @@ 207, 26 - Duplică (Ctrl+C) + Duplică (Ctrl+D) 207, 26 @@ -6857,7 +6857,7 @@ Duplică - Duplică profilul selectat (Ctrl+C) + Duplică profilul selectat (Ctrl+D) 86, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.ru-RU.resx b/DS4Windows/DS4Forms/DS4Form.ru-RU.resx index 6d659cb240..2ed3db2e9b 100644 --- a/DS4Windows/DS4Forms/DS4Form.ru-RU.resx +++ b/DS4Windows/DS4Forms/DS4Form.ru-RU.resx @@ -6881,7 +6881,7 @@ Сделать копию - Сделать копию выбранного профиля (Ctrl+C) + Сделать копию выбранного профиля (Ctrl+D) 88, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.tr.resx b/DS4Windows/DS4Forms/DS4Form.tr.resx index 1d5c4d9ea0..66d83d31dd 100644 --- a/DS4Windows/DS4Forms/DS4Form.tr.resx +++ b/DS4Windows/DS4Forms/DS4Form.tr.resx @@ -6770,7 +6770,7 @@ 182, 26 - Klonla (Ctrl+C) + Klonla (Ctrl+D) 182, 26 @@ -6875,7 +6875,7 @@ Klonla - Seçili Profili Klonla (Ctrl+C) + Seçili Profili Klonla (Ctrl+D) 100, 24 diff --git a/DS4Windows/DS4Forms/DS4Form.vi.resx b/DS4Windows/DS4Forms/DS4Form.vi.resx index a80040e07c..1aa934bf98 100644 --- a/DS4Windows/DS4Forms/DS4Form.vi.resx +++ b/DS4Windows/DS4Forms/DS4Form.vi.resx @@ -125,7 +125,7 @@ - 832, 17 + 823, 11 890, 22 @@ -142,6 +142,51 @@ Xóa + + 265, 26 + + + Sửa Profile của Controller 1 + + + 265, 26 + + + Sửa Profile của Controller 2 + + + 265, 26 + + + Sửa Profile của Controller 3 + + + 265, 26 + + + Sửa Profile của Controller 4 + + + 262, 6 + + + 265, 26 + + + Bắt đầu + + + 265, 26 + + + Mở + + + 265, 26 + + + Thoát (Chuột giữa) + 266, 192 @@ -6317,59 +6362,14 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - 265, 26 - - - Sửa Profile của Controller 1 - - - 265, 26 - - - Sửa Profile của Controller 2 - - - 265, 26 - - - Sửa Profile của Controller 3 - - - 265, 26 - - - Sửa Profile của Controller 4 - - - 262, 6 - - - 265, 26 - - - Bắt đầu - - - 265, 26 - - - Mở - - - 265, 26 - - - Thoát (Chuột giữa) - Kết nối DS4 qua cmd (thử nghiệm) - 1085, 94 + 1083, 94 - 33, 28 + 35, 28 @@ -6427,44 +6427,44 @@ 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + 511, 26 + - 1031, 94 + 1029, 94 Sửa - 1031, 130 + 1029, 130 Sửa - 885, 23 + 883, 23 - 1031, 58 + 1029, 58 Sửa - 885, 59 + 883, 59 - 885, 95 + 883, 95 - 1031, 22 + 1029, 22 Sửa - 885, 131 - - - 893, 0 + 883, 131 122, 18 @@ -6473,7 +6473,7 @@ Profile đã chọn - 491, 0 + 489, 0 83, 18 @@ -6482,7 +6482,7 @@ Trạng thái - 753, 0 + 751, 0 32, 18 @@ -6491,16 +6491,16 @@ Pin - 746, 27 + 744, 27 - 746, 63 + 744, 63 - 746, 99 + 744, 99 - 746, 135 + 744, 135 @@ -6558,6 +6558,9 @@ 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + 511, 62 + iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH @@ -6614,6 +6617,9 @@ 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + 511, 98 + iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH @@ -6670,39 +6676,30 @@ 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + 511, 134 + - 1085, 22 + 1083, 22 - 33, 28 + 35, 28 - 1085, 58 + 1083, 58 - 33, 28 + 35, 28 - 1085, 130 + 1083, 130 - 33, 28 + 35, 28 Không có tay cầm nào kết nối (Tối đa 4) - - Profile tự chọn - - - Hiệu chỉnh - - - Báo cáo - - - 221, 264 - 220, 26 @@ -6763,8 +6760,8 @@ Xuất - - Tùy chọn Profile + + 221, 264 79, 24 @@ -6793,6 +6790,9 @@ Giữ kích thước cửa sổ sau khi đóng + + Tùy chọn Profile + 59, 24 @@ -6882,6 +6882,9 @@ Xuất Profile được chọn + + Profile tự chọn + 156, 21 @@ -6927,9 +6930,6 @@ Ngắt kết nối BT khi bấm Dừng - - 262, 28 - 170, 2 @@ -6942,6 +6942,9 @@ Báo đèn khi độ trễ cao + + 262, 28 + Close minimizes @@ -6972,9 +6975,6 @@ Kiểm tra mỗi - - 266, 28 - 167, 17 @@ -6987,11 +6987,8 @@ 239, 5 - - 287, 13 - - - 177, 85 + + 266, 28 106, 17 @@ -7023,8 +7020,17 @@ Kiểm tra cập nhật bây giờ - - 208, 56 + + 287, 13 + + + 177, 85 + + + Hiệu chỉnh + + + Báo cáo 207, 26 @@ -7038,4 +7044,7 @@ Dùng màu tự chọn + + 208, 56 + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.zh-Hans.resx b/DS4Windows/DS4Forms/DS4Form.zh-Hans.resx index ff905b828a..afe69854e8 100644 --- a/DS4Windows/DS4Forms/DS4Form.zh-Hans.resx +++ b/DS4Windows/DS4Forms/DS4Form.zh-Hans.resx @@ -6740,7 +6740,7 @@ 190, 26 - 复制(Ctrl+C) + 复制(Ctrl+D) 190, 26 @@ -6848,7 +6848,7 @@ 复制 - 复制选定的配置(Ctrl+C) + 复制选定的配置(Ctrl+D) 65, 24 @@ -7023,4 +7023,25 @@ 日志 + + 仅连接DS4 (实验性功能) + + + 不显示 + + + 仅显示警告 + + + 显示全部 + + + ID + + + 使用自定义颜色 + + + 使用配置颜色 + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DS4Form.zh-Hant.resx b/DS4Windows/DS4Forms/DS4Form.zh-Hant.resx index 79e0de1f27..d2268dbfdb 100644 --- a/DS4Windows/DS4Forms/DS4Form.zh-Hant.resx +++ b/DS4Windows/DS4Forms/DS4Form.zh-Hant.resx @@ -6746,7 +6746,7 @@ 192, 26 - 複製 (Ctrl+C) + 複製 (Ctrl+D) 192, 26 @@ -6854,7 +6854,7 @@ 複製 - 複製選擇的設定檔 (Ctrl+C) + 複製選擇的設定檔 (Ctrl+D) 65, 24 @@ -7077,4 +7077,7 @@ 197, 56 + + ID + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/DupBox.resx b/DS4Windows/DS4Forms/DupBox.resx index 8049790693..bdf977fa1d 100644 --- a/DS4Windows/DS4Forms/DupBox.resx +++ b/DS4Windows/DS4Forms/DupBox.resx @@ -218,7 +218,7 @@ Type name of New Profile - + @Invariant tBProfile diff --git a/DS4Windows/DS4Forms/DupBox.zh-Hans.resx b/DS4Windows/DS4Forms/DupBox.zh-Hans.resx index 369d5f86e6..a2c4f0c870 100644 --- a/DS4Windows/DS4Forms/DupBox.zh-Hans.resx +++ b/DS4Windows/DS4Forms/DupBox.zh-Hans.resx @@ -124,6 +124,6 @@ 保存 - <在这里输入配置名> + <在此处输入配置名> \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Hotkeys.it-IT.resx b/DS4Windows/DS4Forms/Hotkeys.it-IT.resx index 0d7cfdeae4..09c97c57fe 100644 --- a/DS4Windows/DS4Forms/Hotkeys.it-IT.resx +++ b/DS4Windows/DS4Forms/Hotkeys.it-IT.resx @@ -140,13 +140,13 @@ 532, 476 - Nascondi Controller DS4: "Nasconde l'input regolare del DS4 (Dinput) da altri programmi spunta se stai avendo input doppio nei giochi o R2 pausa i giochi." + Nascondi Controller DS4: "Nasconde l'input regolare del DS4 (Dinput) da altri programmi, spunta se stai avendo input doppio nei giochi o se R2 mette in pausa i giochi." Clicca parte sinistra del touchpad: Tocco Sinistro Clicca parte destra del touchpad: Tocco Destro Clicca sul touchpad con 2 dita: Tocco Multiplo Clicca parte superiore del touchpad: Tocco Superiore PS + Options oppure tieni premuto PS per 10 secondi: Disconnetti Controller (Solo su Bluetooth) -Tocca Touchpad + PS: Disattiva movimento touchpad (cliccare funziona ancora) +Tocca Touchpad + PS: Disattiva movimento touchpad (il click funzionerà ancora) Click inferiore destro sul Pad*: Click Destro (Meglio usato quando la parte destra è usata come bottone mouse) Due dita su/giù sul touchpad*: Scorri Su/Giù Tap quindi tieni premuto il touchpad*: Trascinamento mouse Sinistro diff --git a/DS4Windows/DS4Forms/Hotkeys.resx b/DS4Windows/DS4Forms/Hotkeys.resx index 8f312f8241..93e2fa1121 100644 --- a/DS4Windows/DS4Forms/Hotkeys.resx +++ b/DS4Windows/DS4Forms/Hotkeys.resx @@ -152,7 +152,7 @@ Jan-Stefan Janetzky, Michél, Ammonjak, An Op Turk - + @Invariant tLPTranslators @@ -203,7 +203,7 @@ InhexSTER (Starter of DS4Tool) - + @Invariant 3 @@ -263,7 +263,7 @@ Help - + @Invariant linkJays2Kings @@ -296,7 +296,7 @@ Links displayed here - + @Invariant NoControl @@ -406,7 +406,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Jays2Kings - + @Invariant 13 @@ -508,7 +508,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Italian/Italiano - + @Invariant 3 @@ -538,10 +538,10 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Giulio - + @Invariant KoNoRIMCI, Sr_psycho - + @Invariant System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -565,7 +565,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Turkish - + @Invariant 84, 17 @@ -661,7 +661,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games jhebbel (DSDCS) - + @Invariant 8 @@ -697,7 +697,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games electrobrains (Branched off of) - + @Invariant lbHotkeys @@ -724,7 +724,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Lütfi Tekin - + @Invariant <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lbGerman" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbGermanT" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbItalianT" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbItalian" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRussian" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRussianT" Row="2" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbRomanian" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbRomanianT" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbTurkish" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label2" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbChineseS" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseST" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbChineseT" Row="6" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbChineseTT" Row="6" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbArabic" Row="7" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbArabicT" Row="7" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lbHebrew" Row="8" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lbHebrewT" Row="8" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10,Percent,10" /></TableLayoutSettings> @@ -781,7 +781,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Romanian - + @Invariant tLPTranslators @@ -865,13 +865,13 @@ Scan Code: Keys are interpreted differently. May be needed for certain games German/Deutsch - + @Invariant System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Source Code - + @Invariant 4, 453 @@ -1048,7 +1048,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Russian/ру́сский язы́к - + @Invariant NoControl @@ -1243,7 +1243,7 @@ Scan Code: Keys are interpreted differently. May be needed for certain games Vlad Giurgiu, Anonim - + @Invariant 4, 0, 4, 0 diff --git a/DS4Windows/DS4Forms/KBM360.it-IT.resx b/DS4Windows/DS4Forms/KBM360.it-IT.resx index d968a8f9fa..c4417421f2 100644 --- a/DS4Windows/DS4Forms/KBM360.it-IT.resx +++ b/DS4Windows/DS4Forms/KBM360.it-IT.resx @@ -3737,9 +3737,7 @@ un tasto digitandolo 98, 55 - Cambia -Sensibilità -Mouse + Cambia Sensibilità Mouse 112, 21 @@ -3750,4 +3748,22 @@ Mouse Extra + + Test + + + Predefinito + + + Toggle + + + B + + + G + + + R + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/KBM360.resx b/DS4Windows/DS4Forms/KBM360.resx index 7fb18de89a..6bbb66791d 100644 --- a/DS4Windows/DS4Forms/KBM360.resx +++ b/DS4Windows/DS4Forms/KBM360.resx @@ -136,7 +136,7 @@ P - + @Invariant 52, 30 @@ -160,13 +160,13 @@ ↓Down - + @Invariant Yes Enter - + @Invariant btnPREVTRACK @@ -197,7 +197,7 @@ A - + @Invariant $this @@ -299,7 +299,7 @@ H - + @Invariant 240 @@ -332,7 +332,7 @@ S - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -398,7 +398,7 @@ F10 - + @Invariant 995, 78 @@ -482,7 +482,7 @@ K - + @Invariant 121 @@ -518,7 +518,7 @@ U - + @Invariant 42 @@ -575,7 +575,7 @@ ←Mouse Left - + @Invariant 4, 4, 4, 4 @@ -593,7 +593,7 @@ ' - + @Invariant 153 @@ -698,7 +698,7 @@ O - + @Invariant 4, 4, 4, 4 @@ -728,7 +728,7 @@ J - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -854,7 +854,7 @@ 255 - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -866,7 +866,7 @@ B - + @Invariant $this @@ -908,7 +908,7 @@ 1Numpad - + @Invariant 950, 55 @@ -1082,7 +1082,7 @@ V - + @Invariant 30, 30 @@ -1139,7 +1139,7 @@ - - + @Invariant Popup @@ -1205,10 +1205,10 @@ F - + @Invariant N - + @Invariant True @@ -1223,7 +1223,7 @@ pgd - + @Invariant Popup @@ -1250,7 +1250,7 @@ RCtrl - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1391,7 +1391,7 @@ F11 - + @Invariant $this @@ -1412,7 +1412,7 @@ 255 - + @Invariant 61, 22 @@ -1421,7 +1421,7 @@ F9 - + @Invariant NoControl @@ -1448,7 +1448,7 @@ /Numpad - + @Invariant 308 @@ -1478,7 +1478,7 @@ M - + @Invariant 30, 30 @@ -1535,7 +1535,7 @@ Backspace - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1583,7 +1583,7 @@ . - + @Invariant $this @@ -1598,7 +1598,7 @@ T - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1652,7 +1652,7 @@ E - + @Invariant 38, 38 @@ -1754,7 +1754,7 @@ L - + @Invariant $this @@ -1799,10 +1799,10 @@ RAlt - + @Invariant ←Left - + @Invariant 322 @@ -1838,7 +1838,7 @@ LCtrl - + @Invariant 29 @@ -1856,7 +1856,7 @@ ` - + @Invariant 1054, 150 @@ -1904,13 +1904,13 @@ ↓Mouse Wheel Down - + @Invariant 494, 266 D - + @Invariant 272, 31 @@ -1928,7 +1928,7 @@ . - + @Invariant 324 @@ -1976,7 +1976,7 @@ Tab - + @Invariant 879, 106 @@ -1991,10 +1991,10 @@ 5Numpad - + @Invariant ØVolume Mute - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2021,7 +2021,7 @@ RShift - + @Invariant 4, 4, 4, 4 @@ -2039,7 +2039,7 @@ Middle Mouse Button - + @Invariant Popup @@ -2150,7 +2150,7 @@ del - + @Invariant Popup @@ -2159,16 +2159,16 @@ Y - + @Invariant 9Numpad - + @Invariant 4, 0, 4, 0 pgu - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2189,7 +2189,7 @@ C - + @Invariant 98 @@ -2216,7 +2216,7 @@ 4 - + @Invariant 170 @@ -2243,7 +2243,7 @@ 7Numpad - + @Invariant 120, 120 @@ -2432,7 +2432,7 @@ LWin - + @Invariant 60 @@ -2564,7 +2564,7 @@ Num Lock - + @Invariant gBExtras @@ -2666,7 +2666,7 @@ prt - + @Invariant 4, 4, 4, 4 @@ -2741,7 +2741,7 @@ 8 - + @Invariant 748, 10 @@ -2750,7 +2750,7 @@ : - + @Invariant $this @@ -2807,7 +2807,7 @@ Enter - + @Invariant $this @@ -2849,7 +2849,7 @@ Space - + @Invariant 829, 10 @@ -2861,13 +2861,13 @@ bk - + @Invariant 4, 4, 4, 4 LAlt - + @Invariant 4, 4, 4, 4 @@ -6526,7 +6526,7 @@ Escape - + @Invariant 24 @@ -6604,7 +6604,7 @@ hm - + @Invariant button38 @@ -6685,13 +6685,13 @@ Right Mouse Button - + @Invariant 4, 0, 4, 0 F7 - + @Invariant 211 @@ -6712,7 +6712,7 @@ = - + @Invariant 4, 4, 4, 4 @@ -6721,7 +6721,7 @@ 2Numpad - + @Invariant 297 @@ -6775,7 +6775,7 @@ →Mouse Right - + @Invariant NoControl @@ -6805,7 +6805,7 @@ [ - + @Invariant NoControl @@ -6814,7 +6814,7 @@ Num0 - + @Invariant Popup @@ -6844,7 +6844,7 @@ ↑Volume Up - + @Invariant Popup @@ -6919,7 +6919,7 @@ 6Numpad - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7027,7 +7027,7 @@ Caps - + @Invariant 108 @@ -7048,7 +7048,7 @@ 0 - + @Invariant Popup @@ -7093,7 +7093,7 @@ , - + @Invariant 187 @@ -7123,7 +7123,7 @@ ↓Volume Down - + @Invariant Popup @@ -7173,7 +7173,7 @@ Sensitivity + - + @Invariant Popup @@ -7209,7 +7209,7 @@ Sensitivity 3 - + @Invariant $this @@ -7269,7 +7269,7 @@ Sensitivity *Numpad - + @Invariant 4, 4, 4, 4 @@ -7401,7 +7401,7 @@ Sensitivity ↓Mouse Down - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7416,7 +7416,7 @@ Sensitivity ] - + @Invariant 280 @@ -7488,7 +7488,7 @@ Sensitivity Left Mouse Button - + @Invariant btn1 @@ -7551,7 +7551,7 @@ Sensitivity 9 - + @Invariant $this @@ -7623,7 +7623,7 @@ Sensitivity →Right - + @Invariant Webdings, 8.25pt @@ -7635,7 +7635,7 @@ Sensitivity F6 - + @Invariant $this @@ -7653,7 +7653,7 @@ Sensitivity \ - + @Invariant nUDLightFlash @@ -7686,10 +7686,10 @@ Sensitivity < - + @Invariant F5 - + @Invariant 4, 4, 4, 4 @@ -7707,7 +7707,7 @@ Sensitivity 1 - + @Invariant 122 @@ -7716,7 +7716,7 @@ Sensitivity ↑Up - + @Invariant System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7755,7 +7755,7 @@ Sensitivity F4 - + @Invariant 4, 4, 4, 4 @@ -7824,7 +7824,7 @@ Sensitivity F2 - + @Invariant 30, 30 @@ -7842,7 +7842,7 @@ Sensitivity -Numpad - + @Invariant 105 @@ -7851,7 +7851,7 @@ Sensitivity LShift - + @Invariant 4, 4, 4, 4 @@ -7887,13 +7887,13 @@ Sensitivity F1 - + @Invariant StretchImage 4 - + @Invariant 32, 17 @@ -7932,7 +7932,7 @@ Sensitivity / - + @Invariant NoControl @@ -7944,7 +7944,7 @@ Sensitivity scl - + @Invariant 0 @@ -7992,13 +7992,13 @@ Sensitivity 2 - + @Invariant end - + @Invariant ↑Mouse Up - + @Invariant 311 @@ -8022,7 +8022,7 @@ Sensitivity RWin - + @Invariant 76, 17 @@ -8121,7 +8121,7 @@ Sensitivity ↑Mouse Wheel Up - + @Invariant System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8145,7 +8145,7 @@ Sensitivity F3 - + @Invariant 305 @@ -8295,10 +8295,10 @@ Sensitivity F8 - + @Invariant 9 - + @Invariant Webdings, 8.25pt @@ -8319,7 +8319,7 @@ Sensitivity ; - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8409,7 +8409,7 @@ Sensitivity 7 - + @Invariant 52 @@ -8538,7 +8538,7 @@ Sensitivity 3Numpad - + @Invariant 931, 151 @@ -8698,7 +8698,7 @@ a key by typing it Z - + @Invariant 30, 30 @@ -8800,7 +8800,7 @@ a key by typing it ins - + @Invariant $this @@ -8842,7 +8842,7 @@ a key by typing it R - + @Invariant System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8911,7 +8911,7 @@ a key by typing it 4Numpad - + @Invariant Popup @@ -8980,7 +8980,7 @@ a key by typing it 6 - + @Invariant KBMlabel @@ -9055,7 +9055,7 @@ a key by typing it 8Numpad - + @Invariant NoControl @@ -9079,13 +9079,13 @@ a key by typing it 5th Mouse Button - + @Invariant 4, 4, 4, 4 W - + @Invariant 271 @@ -9190,7 +9190,7 @@ a key by typing it Q - + @Invariant 173 @@ -9229,7 +9229,7 @@ a key by typing it 4th Mouse Button - + @Invariant 38, 38 @@ -9244,7 +9244,7 @@ a key by typing it Keybaord - + @Invariant 21 @@ -9253,7 +9253,7 @@ a key by typing it 5 - + @Invariant $this @@ -9286,7 +9286,7 @@ a key by typing it X - + @Invariant button5 @@ -9313,19 +9313,19 @@ a key by typing it 255 - + @Invariant Popup F12 - + @Invariant 144 I - + @Invariant 48 @@ -9400,7 +9400,7 @@ a key by typing it G - + @Invariant 30, 30 diff --git a/DS4Windows/DS4Forms/KBM360.zh-Hans.resx b/DS4Windows/DS4Forms/KBM360.zh-Hans.resx index de6811b06c..711e4b686a 100644 --- a/DS4Windows/DS4Forms/KBM360.zh-Hans.resx +++ b/DS4Windows/DS4Forms/KBM360.zh-Hans.resx @@ -3706,7 +3706,7 @@ 74, 21 - 掃描代碼 + 扫描代码 也可以使用键盘输入一个键 diff --git a/DS4Windows/DS4Forms/Options.Designer.cs b/DS4Windows/DS4Forms/Options.Designer.cs index 0b1c4d500c..3d7a8c4a55 100644 --- a/DS4Windows/DS4Forms/Options.Designer.cs +++ b/DS4Windows/DS4Forms/Options.Designer.cs @@ -32,7 +32,6 @@ private void InitializeComponent() System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options)); this.lowColorChooserButton = new System.Windows.Forms.Button(); this.nUDRainbow = new System.Windows.Forms.NumericUpDown(); - this.pBRainbow = new System.Windows.Forms.PictureBox(); this.tBBlueBar = new System.Windows.Forms.TrackBar(); this.tBGreenBar = new System.Windows.Forms.TrackBar(); this.tBRedBar = new System.Windows.Forms.TrackBar(); @@ -134,6 +133,7 @@ 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.btnRainbow = new System.Windows.Forms.Button(); this.lbRainbowB = new System.Windows.Forms.Label(); this.nUDRainbowB = new System.Windows.Forms.NumericUpDown(); this.cBFlashType = new System.Windows.Forms.ComboBox(); @@ -369,10 +369,9 @@ private void InitializeComponent() this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.shareToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.alwaysOnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.advColorDialog = new DS4Windows.AdvancedColorDialog(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).BeginInit(); @@ -476,14 +475,6 @@ private void InitializeComponent() this.nUDRainbow.Name = "nUDRainbow"; this.nUDRainbow.ValueChanged += new System.EventHandler(this.numUDRainbow_ValueChanged); // - // pBRainbow - // - resources.ApplyResources(this.pBRainbow, "pBRainbow"); - this.pBRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; - this.pBRainbow.Name = "pBRainbow"; - this.pBRainbow.TabStop = false; - this.pBRainbow.Click += new System.EventHandler(this.pbRainbow_Click); - // // tBBlueBar // resources.ApplyResources(this.tBBlueBar, "tBBlueBar"); @@ -1413,6 +1404,7 @@ private void InitializeComponent() // resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.BackColor = System.Drawing.Color.WhiteSmoke; + this.gBLightbar.Controls.Add(this.btnRainbow); this.gBLightbar.Controls.Add(this.lbRainbowB); this.gBLightbar.Controls.Add(this.nUDRainbowB); this.gBLightbar.Controls.Add(this.cBFlashType); @@ -1421,7 +1413,6 @@ private void InitializeComponent() this.gBLightbar.Controls.Add(this.btnChargingColor); this.gBLightbar.Controls.Add(this.lbWhileCharging); this.gBLightbar.Controls.Add(this.lbPercentFlashBar); - this.gBLightbar.Controls.Add(this.pBRainbow); this.gBLightbar.Controls.Add(this.nUDflashLED); this.gBLightbar.Controls.Add(this.nUDRainbow); this.gBLightbar.Controls.Add(this.lbspc); @@ -1432,6 +1423,14 @@ private void InitializeComponent() this.gBLightbar.Name = "gBLightbar"; this.gBLightbar.TabStop = false; // + // btnRainbow + // + resources.ApplyResources(this.btnRainbow, "btnRainbow"); + this.btnRainbow.Image = global::DS4Windows.Properties.Resources.rainbow; + this.btnRainbow.Name = "btnRainbow"; + this.btnRainbow.UseVisualStyleBackColor = true; + this.btnRainbow.Click += new System.EventHandler(this.btnRainbow_Click); + // // lbRainbowB // resources.ApplyResources(this.lbRainbowB, "lbRainbowB"); @@ -3854,7 +3853,7 @@ private void InitializeComponent() this.optionsToolStripMenuItem, this.shareToolStripMenuItem, this.pSToolStripMenuItem, - this.resetToolStripMenuItem}); + this.alwaysOnToolStripMenuItem}); this.cMGyroTriggers.Name = "cMGyroTriggers"; this.cMGyroTriggers.ShowCheckMargin = true; this.cMGyroTriggers.ShowImageMargin = false; @@ -4011,13 +4010,12 @@ private void InitializeComponent() this.pSToolStripMenuItem.Name = "pSToolStripMenuItem"; this.pSToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // - // resetToolStripMenuItem + // alwaysOnToolStripMenuItem // - resources.ApplyResources(this.resetToolStripMenuItem, "resetToolStripMenuItem"); - this.resetToolStripMenuItem.CheckOnClick = true; - this.resetToolStripMenuItem.ForeColor = System.Drawing.SystemColors.ControlText; - this.resetToolStripMenuItem.Name = "resetToolStripMenuItem"; - this.resetToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); + resources.ApplyResources(this.alwaysOnToolStripMenuItem, "alwaysOnToolStripMenuItem"); + this.alwaysOnToolStripMenuItem.CheckOnClick = true; + this.alwaysOnToolStripMenuItem.Name = "alwaysOnToolStripMenuItem"; + this.alwaysOnToolStripMenuItem.CheckedChanged += new System.EventHandler(this.SATrigger_CheckedChanged); // // Options // @@ -4033,7 +4031,6 @@ private void InitializeComponent() this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Options_Closed); this.Resize += new System.EventHandler(this.Options_Resize); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBRedBar)).EndInit(); @@ -4141,7 +4138,6 @@ private void InitializeComponent() //private System.Windows.Forms.TrackBar tBsixaxisGyroX; //private System.Windows.Forms.TrackBar tBsixaxisGyroY; private System.Windows.Forms.NumericUpDown nUDRainbow; - private System.Windows.Forms.PictureBox pBRainbow; private System.Windows.Forms.Button lowColorChooserButton; private System.Windows.Forms.TrackBar tBBlueBar; private System.Windows.Forms.TrackBar tBGreenBar; @@ -4357,7 +4353,6 @@ private void InitializeComponent() private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem shareToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem pSToolStripMenuItem; - private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem; private System.Windows.Forms.Label lbShiftSwipeUp; private System.Windows.Forms.Label lbShiftSwipeDown; private System.Windows.Forms.Label lbShiftSwipeLeft; @@ -4481,5 +4476,7 @@ private void InitializeComponent() private System.Windows.Forms.Panel pnlRSTrack; private System.Windows.Forms.Panel pnlLSTrack; private System.Windows.Forms.Panel pnlSATrack; + private System.Windows.Forms.Button btnRainbow; + private System.Windows.Forms.ToolStripMenuItem alwaysOnToolStripMenuItem; } } \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.cs b/DS4Windows/DS4Forms/Options.cs index 413fb6868c..f0ce88031d 100644 --- a/DS4Windows/DS4Forms/Options.cs +++ b/DS4Windows/DS4Forms/Options.cs @@ -42,8 +42,8 @@ public Options(DS4Form rt) rBTPControls.Text = rBSAControls.Text; rBTPMouse.Text = rBSAMouse.Text; Visible = false; - colored = pBRainbow.Image; - greyscale = GreyscaleImage((Bitmap)pBRainbow.Image); + colored = btnRainbow.Image; + greyscale = GreyscaleImage((Bitmap)btnRainbow.Image); fLPSettings.FlowDirection = FlowDirection.TopDown; foreach (Control control in tPControls.Controls) if (control is Button && !((Button)control).Name.Contains("btn")) @@ -138,12 +138,12 @@ public void Reload(int deviceNum, string name) if (Rainbow[device] == 0) { - pBRainbow.Image = greyscale; + btnRainbow.Image = greyscale; ToggleRainbow(false); } else { - pBRainbow.Image = colored; + btnRainbow.Image = colored; ToggleRainbow(true); } DS4Color color = MainColor[device]; @@ -252,8 +252,23 @@ public void Reload(int deviceNum, string name) int tr; if (int.TryParse(satriggers[i], out tr)) { - ((ToolStripMenuItem)cMGyroTriggers.Items[tr]).Checked = true; - s.Add(cMGyroTriggers.Items[int.Parse(satriggers[i])].Text); + if (tr < cMGyroTriggers.Items.Count && tr > -1) + { + ((ToolStripMenuItem)cMGyroTriggers.Items[tr]).Checked = true; + s.Add(cMGyroTriggers.Items[tr].Text); + } + else + { + ((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true; + s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text); + break; + } + } + else + { + ((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true; + s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text); + break; } } nUDGyroSensitivity.Value = GyroSensitivity[device]; @@ -262,8 +277,6 @@ public void Reload(int deviceNum, string name) cBGyroInvertY.Checked = invert == 1 || invert == 3; if (s.Count > 0) btnGyroTriggers.Text = string.Join(", ", s); - else - btnGyroTriggers.Text = Properties.Resources.NoneText; } else { @@ -338,13 +351,10 @@ public void Reload(int deviceNum, string name) nUDLSCurve.Value = 0; nUDRSCurve.Value = 0; cBControllerInput.Checked = DS4Mapping; - - for (int i = 0; i < cMGyroTriggers.Items.Count; i++) - ((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked = false; + ((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = true; nUDGyroSensitivity.Value = 100; cBGyroInvertX.Checked = false; cBGyroInvertY.Checked = false; - btnGyroTriggers.Text = Properties.Resources.NoneText; Set(); } @@ -436,9 +446,9 @@ void ControllerReadout_Tick(object sender, EventArgs e) SetDynamicTrackBarValue(tBsixaxisGyroX, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroX + tBsixaxisGyroX.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisGyroY, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroY + tBsixaxisGyroY.Value * 2) / 3); SetDynamicTrackBarValue(tBsixaxisGyroZ, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].GyroZ + tBsixaxisGyroZ.Value * 2) / 3); - SetDynamicTrackBarValue(tBsixaxisAccelX, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelX + tBsixaxisAccelX.Value * 2) / 3); - SetDynamicTrackBarValue(tBsixaxisAccelY, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelY + tBsixaxisAccelY.Value * 2) / 3); - SetDynamicTrackBarValue(tBsixaxisAccelZ, (Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelZ + tBsixaxisAccelZ.Value * 2) / 3); + SetDynamicTrackBarValue(tBsixaxisAccelX, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelX + tBsixaxisAccelX.Value * 2) / 3); + SetDynamicTrackBarValue(tBsixaxisAccelY, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelY + tBsixaxisAccelY.Value * 2) / 3); + SetDynamicTrackBarValue(tBsixaxisAccelZ, (int)(Program.rootHub.ExposedState[(int)nUDSixaxis.Value - 1].AccelZ + tBsixaxisAccelZ.Value * 2) / 3); int x = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LX; int y = Program.rootHub.getDS4State((int)nUDSixaxis.Value - 1).LY; @@ -1040,13 +1050,14 @@ public void Set() GyroInvert[device] = invert; List ints = new List(); - for (int i = 0; i < cMGyroTriggers.Items.Count; i++) + for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++) if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked) ints.Add(i); + if (ints.Count == 0) + ints.Add(-1); SATriggers[device] = string.Join(",", ints); - - if (nUDRainbow.Value == 0) pBRainbow.Image = greyscale; - else pBRainbow.Image = colored; + if (nUDRainbow.Value == 0) btnRainbow.Image = greyscale; + else btnRainbow.Image = colored; } KBM360 kbm360 = null; @@ -1713,23 +1724,23 @@ private void numUDRainbow_ValueChanged(object sender, EventArgs e) Rainbow[device]= (double)nUDRainbow.Value; if ((double)nUDRainbow.Value <= 0.5) { - pBRainbow.Image = greyscale; + btnRainbow.Image = greyscale; ToggleRainbow(false); nUDRainbow.Value = 0; } } - private void pbRainbow_Click(object sender, EventArgs e) + private void btnRainbow_Click(object sender, EventArgs e) { - if (pBRainbow.Image == greyscale) + if (btnRainbow.Image == greyscale) { - pBRainbow.Image = colored; + btnRainbow.Image = colored; ToggleRainbow(true); nUDRainbow.Value = 5; } else { - pBRainbow.Image = greyscale; + btnRainbow.Image = greyscale; ToggleRainbow(false); nUDRainbow.Value = 0; } @@ -1740,14 +1751,12 @@ private void ToggleRainbow(bool on) nUDRainbow.Enabled = on; if (on) { - //pBRainbow.Location = new Point(216 - 78, pBRainbow.Location.Y); pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main); cBLightbyBattery.Text = Properties.Resources.DimByBattery.Replace("*nl*", "\n"); } else { pnlLowBattery.Enabled = cBLightbyBattery.Checked; - //pBRainbow.Location = new Point(216, pBRainbow.Location.Y); pBLightbar.Image = RecolorImage((Bitmap)pBLightbar.Image, main); cBLightbyBattery.Text = Properties.Resources.ColorByBattery.Replace("*nl*", "\n"); } @@ -2068,7 +2077,7 @@ private void cbStartTouchpadOff_CheckedChanged(object sender, EventArgs e) private void Items_MouseHover(object sender, EventArgs e) { string name = ((Control)sender).Name; - if (name.Contains("btn") && !name.Contains("Flash") && !name.Contains("Stick")) + if (name.Contains("btn") && !name.Contains("Flash") && !name.Contains("Stick") && !name.Contains("Rainbow")) name = name.Remove(1, 1); switch (name) { @@ -2076,7 +2085,7 @@ private void Items_MouseHover(object sender, EventArgs e) case "cBDoubleTap": root.lbLastMessage.Text = Properties.Resources.TapAndHold; break; case "lbControlTip": root.lbLastMessage.Text = Properties.Resources.UseControllerForMapping; break; case "cBTouchpadJitterCompensation": root.lbLastMessage.Text = Properties.Resources.Jitter; break; - case "pBRainbow": root.lbLastMessage.Text = Properties.Resources.AlwaysRainbow; break; + case "btnRainbow": root.lbLastMessage.Text = Properties.Resources.AlwaysRainbow; break; case "cBFlushHIDQueue": root.lbLastMessage.Text = Properties.Resources.FlushHIDTip; break; case "cBLightbyBattery": root.lbLastMessage.Text = Properties.Resources.LightByBatteryTip; break; case "lbGryo": root.lbLastMessage.Text = Properties.Resources.GyroReadout; break; @@ -2584,22 +2593,28 @@ private void btnGyroTriggers_Click(object sender, EventArgs e) private void SATrigger_CheckedChanged(object sender, EventArgs e) { - if (((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked) //reset - for (int i = 0; i < cMGyroTriggers.Items.Count; i++) + if (sender != cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1] && ((ToolStripMenuItem)sender).Checked) + ((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked = false; + if (((ToolStripMenuItem)cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1]).Checked) //always on + for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++) ((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked = false; - List ints = new List(); + + List ints = new List(); List s = new List(); - for (int i = 0; i < cMGyroTriggers.Items.Count; i++) + for (int i = 0; i < cMGyroTriggers.Items.Count - 1; i++) if (((ToolStripMenuItem)cMGyroTriggers.Items[i]).Checked) { ints.Add(i); s.Add(cMGyroTriggers.Items[i].Text); } + if (ints.Count == 0) + { + ints.Add(-1); + s.Add(cMGyroTriggers.Items[cMGyroTriggers.Items.Count - 1].Text); + } SATriggers[device] = string.Join(",", ints); if (s.Count > 0) btnGyroTriggers.Text = string.Join(", ", s); - else - btnGyroTriggers.Text = Properties.Resources.NoneText; } private void cBGyroInvert_CheckChanged(object sender, EventArgs e) diff --git a/DS4Windows/DS4Forms/Options.he.resx b/DS4Windows/DS4Forms/Options.he.resx index 44a7cb4b61..81bc0f3312 100644 --- a/DS4Windows/DS4Forms/Options.he.resx +++ b/DS4Windows/DS4Forms/Options.he.resx @@ -481,4 +481,8 @@ 229, 524 + + + Inherit + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.it-IT.resx b/DS4Windows/DS4Forms/Options.it-IT.resx index 42bf318fbf..102bcd8dbc 100644 --- a/DS4Windows/DS4Forms/Options.it-IT.resx +++ b/DS4Windows/DS4Forms/Options.it-IT.resx @@ -278,7 +278,7 @@ 152, 26 - invertito + Invertito 152, 26 @@ -305,7 +305,7 @@ 228, 26 - con Scansiona Codice + con Scansione del Codice 144, 26 @@ -317,7 +317,7 @@ 228, 26 - con Scansiona Codice + con Scansione del Codice 144, 26 @@ -509,4 +509,94 @@ con profilo Zona Morta + + Flush HID + + + Touchpad (non cliccato dentro) + + + Tap + + + Trigger + + + Default + + + Dpad + + + Dito sul Touchpad + + + 2 Dita sul Touchpad + + + Sensibilità + + + Touchpad + + + Accel + + + Gyro + + + B + + + G + + + Inverti: + + + Sensibilità Giroscopio: + + + Grilletti (LT/RT): + + + B + + + G + + + R + + + R + + + Shift: + + + B + + + G + + + R + + + Mouse + + + Usa per i Controlli + + + Usa come Mouse + + + Reset + + + Piega + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.resx b/DS4Windows/DS4Forms/Options.resx index f59c659749..8752d0ec14 100644 --- a/DS4Windows/DS4Forms/Options.resx +++ b/DS4Windows/DS4Forms/Options.resx @@ -167,6 +167,10 @@ % + + + 338 + tPControls @@ -188,7 +192,6 @@ 4, 4, 4, 4 - True @@ -210,11 +213,8 @@ 178, 51 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 156, 39 + + 27, 40 15, 15 @@ -237,8 +237,11 @@ True - - No + + 233, 26 + + + 1 0, 0 @@ -249,9 +252,6 @@ 114, 207 - - 4 - 6 @@ -261,8 +261,8 @@ NoControl - - G + + 283 269, 24 @@ -282,11 +282,8 @@ 21 - - 5, 52 - - - Face Buttons + + Right Stick Up : None @@ -300,9 +297,6 @@ 0 - - NoControl - % @@ -315,9 +309,6 @@ 0 - - 111, 111 - 0 @@ -336,8 +327,8 @@ 0 - - 4, 4, 4, 4 + + 9, 11 98, 17 @@ -345,9 +336,6 @@ 4, 4 - - Remove Action - 136, 26 @@ -369,9 +357,6 @@ 4, 115 - - 57, 79 - optionsToolStripMenuItem @@ -384,6 +369,9 @@ Left Mouse Button + + 210 + Left Mouse Button @@ -408,15 +396,9 @@ 4, 4, 4, 4 - - 4 - True - - Flat - tPControls @@ -438,9 +420,6 @@ 252 - - gBSensitivity - gBOther @@ -463,13 +442,13 @@ 4, 0, 4, 0 - 2 + 3 34, 17 - - 2 + + lbGyroInvert NoControl @@ -480,8 +459,11 @@ 208 - - 59, 84 + + Middle Mouse Button + + + downToolStripMenuItem 4, 4, 4, 4 @@ -501,8 +483,8 @@ 45, 132 - - 284 + + $this 4, 4, 4, 4 @@ -513,8 +495,8 @@ 12 - - bnShiftSwipeLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 4, 4, 4, 4 @@ -570,6 +552,9 @@ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 + 5 @@ -592,7 +577,7 @@ PS : - 4 + 5 10, 23 @@ -624,9 +609,6 @@ lbShiftGyroZP - - 169 - NoControl @@ -705,11 +687,14 @@ 13 + + 3 + pnlLSTrack - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + bnL2 207 @@ -717,8 +702,8 @@ 256 - - NoControl + + 284 shareToolStripMenuItem @@ -750,8 +735,8 @@ tCControls - - tSMILSInverted + + gBLightbar Trigger @@ -828,14 +813,14 @@ True - - 4, 0, 4, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Left : - - 214 + + Controller Readings 6 @@ -846,6 +831,9 @@ NoControl + + Face Buttons + PS @@ -855,12 +843,12 @@ Down + + 4, 0, 4, 0 + 36, 34 - - 210, 29 - 82, 2 @@ -885,9 +873,6 @@ lbL2S - - 34 - 304 @@ -897,9 +882,6 @@ 16 - - pBProgram - cBLaunchProgram @@ -909,6 +891,9 @@ Flat + + 240 + 0 @@ -933,8 +918,8 @@ 9, 70 - - 414, 165 + + None 7, 172 @@ -960,8 +945,8 @@ MiddleLeft - - pnlController + + bnGyroXN None @@ -1035,9 +1020,6 @@ lbShiftGyroXP - - 15 - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1050,6 +1032,9 @@ 159 + + 11, 96 + lbLSCurve @@ -1086,8 +1071,8 @@ 160 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 293 lbRSCurvePercent @@ -1101,6 +1086,9 @@ pnlController + + 557, 0 + No @@ -1122,9 +1110,6 @@ NoControl - - 4, 4, 4, 4 - pnlTPMouse @@ -1206,6 +1191,9 @@ lbR2Track + + 27, 17 + tPShiftMod @@ -1224,8 +1212,8 @@ 8, 292 - - 247 + + Flat 9 @@ -1269,8 +1257,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None 4 @@ -1287,8 +1275,8 @@ tPShiftMod - - cHAction + + gBSensitivity pnlController @@ -1299,11 +1287,11 @@ 5 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 87 - - 2 + + R1 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1347,14 +1335,14 @@ StretchImage - - 182, 4 + + 235 4, 41 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Right Trigger bnShiftL1 @@ -1374,8 +1362,8 @@ Flat - - NoControl + + Flat 7 @@ -1389,8 +1377,8 @@ tPControls - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 200 214 @@ -1455,15 +1443,15 @@ fLPShiftTouchSwipe - - tPControls - 4, 4, 4, 4 3 + + 4, 4, 4, 4 + 4, 4, 4, 4 @@ -1518,17 +1506,17 @@ MiddleLeft - - downToolStripMenuItem + + 170, 29 306 - - 233, 26 + + bnRight - - 292 + + lbFull 166, 235 @@ -1554,6 +1542,9 @@ 57, 79 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + Options @@ -1587,6 +1578,9 @@ Guide + + NoControl + MiddleCenter @@ -1608,9 +1602,6 @@ False - - 37, 17 - Edit Action @@ -1635,8 +1626,8 @@ NoControl - - 210 + + nUDRumbleBoost 91, 2 @@ -1665,6 +1656,9 @@ 4, 4, 4, 4 + + bnShiftSwipeLeft + 405, 162 @@ -1695,26 +1689,35 @@ fLPTiltControls + + TopRight + 223, 162 - - 233, 26 + + Flat System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + wScanCodeWASDToolStripMenuItem + tPControls + + controlToolStripMenuItem + 207 17 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbButtonMouseSens tPControls @@ -1737,8 +1740,8 @@ 162 - - 295 + + lBControls tBsixaxisGyroY @@ -1791,6 +1794,9 @@ 147, 41 + + 2 + 4, 4, 4, 4 @@ -1821,6 +1827,9 @@ btnRSTrack + + 138, 56 + Shift Modifier @@ -1863,14 +1872,17 @@ 30 - - 1 + + 4, 4, 4, 4 + + + 1 Use Dinput only - - 4, 0, 4, 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 NoControl @@ -1878,8 +1890,8 @@ MiddleCenter - - 212 + + lbHold 6 @@ -1917,8 +1929,8 @@ bnL1 - - 4, 4, 4, 4 + + 4, 0, 4, 0 gBTouchpad @@ -1953,8 +1965,8 @@ 219 - - 283 + + 247 gBTouchpad @@ -1962,8 +1974,8 @@ 15, 15 - - Square + + 1 Fill @@ -1971,6 +1983,9 @@ rBSAControls + + gBGyro + 10 @@ -2001,11 +2016,11 @@ Flat - - pnlSAMouse + + Flat - - 5 + + 34 Fall Back @@ -2031,8 +2046,8 @@ 29, 99 - - 172 + + False System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2074,16 +2089,16 @@ pnlTPMouse - 7 - - - resetToolStripMenuItem + 8 tSMIDPadInvertedX - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, 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 @@ -2103,6 +2118,9 @@ 201 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 136, 49 @@ -2130,9 +2148,6 @@ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7, 95 - 61, 22 @@ -2166,8 +2181,8 @@ 4, 4, 4, 4 - - circleToolStripMenuItem + + nUDSXS 4, 4, 4, 4 @@ -2175,8 +2190,11 @@ Color - - cHTrigger + + 147, 179 + + + 8, 267 11, 95 @@ -2187,6 +2205,9 @@ Yes + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + bnShiftGyroZP @@ -2214,14 +2235,14 @@ 210, 29 - - 3 + + btnRainbow System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 100, 29 32 @@ -2274,15 +2295,18 @@ Flat + + button1 + + + pnlController + 233, 26 203, 423 - - 360, 4 - Cross : @@ -2328,6 +2352,9 @@ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Gyro + 154, 5 @@ -2343,8 +2370,8 @@ None - - 4, 0, 4, 0 + + 7 tPCurve @@ -2370,8 +2397,8 @@ tBLowRedBar - - L1 + + NoControl 284 @@ -2415,14 +2442,14 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 111, 74 + + btnRumbleLightTest 168, 235 - - 0, 0 + + 235 4, 0, 4, 0 @@ -2433,14 +2460,17 @@ 4, 4, 4, 4 + + 35, 12 + NoControl pnlShiftLight - - 7 + + None System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2499,14 +2529,17 @@ fLPSettings - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 111, 37 + + + System.Windows.Forms.ToolStripMenuItem, 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 + + 4, 4, 4, 4 5 @@ -2523,9 +2556,6 @@ 208, 29 - - 121, 132 - 1 @@ -2580,9 +2610,6 @@ 17, 17 - - 10, 270 - False @@ -2601,14 +2628,14 @@ 4, 0, 4, 0 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 329, 191 - - lbFull - - - tPShiftMod + + 84, 24 System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2625,15 +2652,12 @@ 399, 5 - - NoControl + + tPControls 7 - - 352, 4 - True @@ -2724,6 +2748,9 @@ pnlLowBattery + + 166 + 208, 29 @@ -2773,13 +2800,16 @@ 12, 34 - 8, 245 + 8, 239 Flat - - TopRight + + 214 + + + Square NoControl @@ -2790,21 +2820,24 @@ 50, 22 + + 4, 4, 4, 4 + 17, 17 True + + 233, 26 + 210, 29 4, 0, 4, 0 - - 100, 29 - Down : @@ -2865,21 +2898,21 @@ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 - Flat System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 + tBsixaxisAccelX @@ -2916,26 +2949,23 @@ MiddleCenter - - 0 - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233, 26 + + MiddleCenter + + + 360, 4 25, 17 - - 293 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + fLPTiltControls - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 259 15, 15 @@ -2946,14 +2976,11 @@ Options - - 71 - - - 4, 4, 4, 4 + + button1 - - controlToolStripMenuItem + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 gBOther @@ -2976,8 +3003,8 @@ 6 - - cBDinput + + NoControl 4 @@ -3015,11 +3042,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 216 - - - 4, 4, 4, 4 + + 100, 29 NoControl @@ -3033,6 +3057,9 @@ triangleToolStripMenuItem + + 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 @@ -3060,8 +3087,8 @@ 4, 4, 4, 4 - - 4 + + 250 System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3069,6 +3096,9 @@ NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 156, 156 @@ -3123,6 +3153,9 @@ for Mapping and readout + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 119, 21 @@ -3150,8 +3183,8 @@ 170, 29 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnLightbar panel2 @@ -3204,9 +3237,6 @@ NoControl - - 57, 29 - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3231,8 +3261,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tCSens + + 111, 74 257 @@ -3252,8 +3282,8 @@ 1 - - 4, 4, 4, 4 + + 121, 132 System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3297,8 +3327,8 @@ 4, 0, 4, 0 - - fLPShiftTiltControls + + 1, 23 4, 0, 4, 0 @@ -3315,9 +3345,6 @@ Use for Controls - - 200 - lbLTouchLM @@ -3330,6 +3357,9 @@ 7, 54 + + No + NoControl @@ -3342,9 +3372,6 @@ 25, 25 - - 16 - 15, 15 @@ -3357,11 +3384,8 @@ None - - False - - - pnlController + + Fall Back 313, 52 @@ -3378,6 +3402,9 @@ MiddleLeft + + No + 106, 27 @@ -3387,15 +3414,12 @@ NoControl + + 2 + 0 - - lbL2TrackS - - - 166 - 215 @@ -3405,14 +3429,17 @@ Use as Mouse + + 172, 22 + 4, 4, 4, 4 tPShiftMod - - No + + Multitouch : bnTouchRight @@ -3432,9 +3459,15 @@ 256 + + Square : + lbLUp + + tSMILSInverted + G @@ -3447,8 +3480,8 @@ 5 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + None 1 @@ -3468,8 +3501,8 @@ pnlController - - 111, 37 + + NoControl Sixaxis Up @@ -3495,6 +3528,9 @@ tPCurve + + Share + nUDRSCurve @@ -3555,6 +3591,9 @@ gBOther + + None + pnlSAMouse @@ -3576,8 +3615,8 @@ 6, 209 - - L2 + + lb6Accel 50, 22 @@ -3591,17 +3630,17 @@ Triangle : - - Square : + + NoControl Share : - - Options : + + 14 - - 340, 227 + + Down : Up : @@ -3612,8 +3651,8 @@ 0 - - 165 + + 156, 39 180, 79 @@ -3630,14 +3669,17 @@ System.Windows.Forms.Label, 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 + 45, 21 True - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 208, 29 @@ -3645,8 +3687,11 @@ 91, 151 - - 4, 4, 4, 4 + + btnRemAction + + + Always on 11 @@ -3654,8 +3699,11 @@ Left Stick Up : - - True + + 4, 4, 4, 4 + + + 3 tPShiftMod @@ -3666,6 +3714,9 @@ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59, 84 + 0, 35 @@ -3675,9 +3726,6 @@ 0 - - tPControls - 233, 26 @@ -3693,6 +3741,9 @@ 8, 5 + + Options : + Right : @@ -3711,8 +3762,8 @@ System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 294, 79 + + 72 255 @@ -3726,8 +3777,8 @@ Right Bumper - - 4, 4, 4, 4 + + NoControl 9 @@ -3741,6 +3792,9 @@ pnlController + + 63, 28 + 19 @@ -3780,14 +3834,11 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 240 - - - 51, 17 + + 37, 17 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 Slide @@ -3819,14 +3870,20 @@ 705, 593 + + L1 + 300 NoControl - - Right Trigger + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Stretch 4 @@ -3834,8 +3891,8 @@ NoControl - - 151, 26 + + 111, 111 258 @@ -3852,6 +3909,9 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 233, 26 + MiddleLeft @@ -3861,15 +3921,9 @@ NoControl - - 100, 29 - 5 - - None - 7 @@ -3882,9 +3936,6 @@ Yes - - tPDeadzone - 18, 17 @@ -3924,6 +3975,9 @@ 332, 69 + + No + NoControl @@ -3946,12 +4000,15 @@ Acceleration tPControls - - NoControl + + 3, 2 156, 156 + + 42, 60 + lbLSquare @@ -3973,6 +4030,9 @@ Acceleration pnlShiftLight + + bnShiftL2 + 4, 4, 4, 4 @@ -3991,12 +4051,15 @@ Acceleration 4, 4, 4, 4 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False 283 + + 35, 28 + 4, 30 @@ -4021,14 +4084,17 @@ Acceleration System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 235 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 50, 22 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbGreen + + 4 290 @@ -4042,8 +4108,8 @@ Acceleration nUDL2S - - NoControl + + 216 True @@ -4054,11 +4120,11 @@ Acceleration 65, 17 - - Right Y-Axis+ + + gBLightbar - - 63, 28 + + Remove Action Flat @@ -4084,18 +4150,21 @@ Acceleration None + + 7 + 250 - - 35, 12 + + 57, 29 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Sixaxis Down - - 1 - 100, 29 @@ -4108,9 +4177,6 @@ Acceleration fLPTiltControls - - PS - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4126,8 +4192,8 @@ Acceleration 3 - - NoControl + + 289 tPShiftMod @@ -4135,9 +4201,6 @@ Acceleration NoControl - - Reset - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4189,9 +4252,6 @@ Acceleration 416, 99 - - bnL2 - False @@ -4207,9 +4267,6 @@ Acceleration 4, 25 - - Down : - Share @@ -4225,14 +4282,11 @@ Acceleration Circle - - 4, 317 - - - 87 + + Square - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Cross 14 @@ -4258,6 +4312,9 @@ Acceleration 250 + + 4, 4, 4, 4 + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4297,23 +4354,17 @@ Acceleration MiddleLeft - - 2 - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat - NoControl gBSensitivity - - True + + 100, 29 lbLL1 @@ -4324,14 +4375,20 @@ Acceleration True + + 100, 29 + Controls Upper Touch : - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 172, 24 + + + 4, 0, 4, 0 Right Stick Right : @@ -4354,9 +4411,6 @@ Acceleration 3 - - 4, 4, 4, 4 - NoControl @@ -4366,6 +4420,9 @@ Acceleration 227 + + 4, 4, 4, 4 + NoControl @@ -4396,11 +4453,11 @@ Acceleration 242 - - 6 + + Flat - - 4, 4, 4, 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 390, 29 @@ -4411,8 +4468,8 @@ Acceleration 137, 244 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Z True @@ -4426,11 +4483,8 @@ Acceleration tSMIMouseInvertedY - - tBShiftBlueBar - - - 11 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Vertical @@ -4453,8 +4507,8 @@ Acceleration 142, 55 - - X + + MiddleLeft 133, 6 @@ -4483,8 +4537,8 @@ Acceleration 50, 22 - - 89 + + L2 250 @@ -4492,8 +4546,8 @@ Acceleration Y - - No + + MiddleCenter 25, 34 @@ -4507,8 +4561,8 @@ Acceleration 4, 4, 4, 4 - - Sixaxis X + + 136, 26 4, 4, 4, 4 @@ -4549,11 +4603,14 @@ Acceleration 25, 25 - - tPShiftMod + + cBDinput - - Yes + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + lbL2TrackS pnlSAMouse @@ -4606,8 +4663,8 @@ Acceleration NoControl - - 39, 17 + + 243 System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4615,6 +4672,9 @@ Acceleration 244 + + 291 + Tap @@ -4624,9 +4684,6 @@ Acceleration tPControls - - 4, 4, 4, 4 - 4, 4, 4, 4 @@ -4654,6 +4711,9 @@ Acceleration True + + G + lbShiftGreen @@ -4669,9 +4729,6 @@ Acceleration System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lBControls - NoControl @@ -4690,9 +4747,6 @@ Acceleration lbL2TrackS - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - nUDTouch @@ -4744,9 +4798,6 @@ Acceleration 1 - - 37, 17 - 352, 69 @@ -4786,8 +4837,8 @@ Acceleration L3 - - True + + pBProgram 1 @@ -4795,8 +4846,8 @@ Acceleration System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBRumble + + R3 : pnlController @@ -4810,8 +4861,8 @@ Acceleration Dpad - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 pnlShiftLight @@ -4840,17 +4891,26 @@ Acceleration NoControl + + System.Windows.Forms.ToolStripMenuItem, 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 + 4, 4, 4, 4 nUDIdleDisconnect + + 233, 26 + NoControl - - 138, 56 + + 5, 52 tPShiftMod @@ -4873,8 +4933,8 @@ Acceleration 232 - - WASDToolStripMenuItem + + R1 Options : @@ -4949,7 +5009,7 @@ Acceleration 235, 77 - 5 + 6 287 @@ -4984,14 +5044,14 @@ Acceleration NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 NoControl - - 1 + + None Zoom @@ -5002,8 +5062,8 @@ Acceleration nUDL2 - - Flat + + 4, 4, 4, 4 2 @@ -5011,15 +5071,15 @@ Acceleration 1 - - 72 + + Yes + + + 0 4, 0, 4, 0 - - 14 - Options @@ -5035,9 +5095,6 @@ Acceleration Inverted - - 49, 22 - False @@ -5056,12 +5113,12 @@ Acceleration 131, 21 - - NoControl - 9 + + False + pnlSixaxis @@ -5083,8 +5140,8 @@ Acceleration 255 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 272, 210 @@ -5122,6 +5179,9 @@ Acceleration Lower Right as RMB + + 51, 17 + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5173,17 +5233,17 @@ Acceleration 1 - - gBGyro + + 2 - - pnlController + + None pnlLowBattery - - Share + + 7 167 @@ -5233,6 +5293,9 @@ Acceleration System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + WASDToolStripMenuItem + pnlSixaxis @@ -5245,9 +5308,6 @@ Acceleration tPDeadzone - - None - NoControl @@ -5260,9 +5320,6 @@ Acceleration 331, 153 - - bnR3 - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5278,9 +5335,6 @@ Acceleration MiddleCenter - - 233, 26 - 80 @@ -5305,9 +5359,6 @@ Acceleration System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPShiftMod - Zoom @@ -5323,9 +5374,6 @@ Acceleration 225 - - Flat - 208, 29 @@ -5338,8 +5386,8 @@ Acceleration System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gBSensitivity + + 2 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5377,17 +5425,14 @@ Acceleration gBTouchpad - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 4, 4, 4, 4 MiddleCenter - - True + + 247 lbRS @@ -5401,6 +5446,9 @@ Acceleration bnShiftR3 + + alwaysOnToolStripMenuItem + 91 @@ -5413,8 +5461,11 @@ Acceleration tPShiftMod - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 233, 26 + + + gBGyro nUDSixaxis @@ -5455,6 +5506,9 @@ Acceleration 0 + + tCSens + 246 @@ -5473,15 +5527,15 @@ Acceleration lbL2TrackS + + 4, 4, 4, 4 + mins 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 4, 4, 4, 4 @@ -5530,8 +5584,8 @@ Acceleration 203 - - StretchImage + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 bnShiftRight @@ -5542,9 +5596,6 @@ Acceleration pnlTPMouse - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 211 @@ -5557,8 +5608,8 @@ Acceleration Right Touch - - 4, 4, 4, 4 + + PS NoControl @@ -5578,21 +5629,27 @@ Acceleration 35, 10 + + tPShiftMod + Inverted X - 0 + 1 bnTouchMulti - - 4, 4, 4, 4 + + 4, 25 System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + crossToolStripMenuItem + l2ToolStripMenuItem @@ -5611,9 +5668,6 @@ Acceleration 2 - - gBLightbar - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5644,8 +5698,8 @@ Acceleration NoControl - - Right Stick Up : + + 4, 4, 4, 4 216 @@ -5665,26 +5719,26 @@ Acceleration 26, 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 225 + + pnlSAMouse + lVActions lbShiftSwipeRight - - 67, 95 + + fLPShiftTiltControls - - fLPSettings + + While Charging: - - False + + Popup System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5692,15 +5746,21 @@ Acceleration System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 27, 17 + + 13 376, 132 + + button1 + lbLL2 + + 182, 4 + tPShiftMod @@ -5713,17 +5773,15 @@ Acceleration False - - Rumble - pnlShiftController Sixaxis Left : - - 12 + + Launch Program +with profile System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5737,6 +5795,9 @@ Acceleration 248 + + Flat + StretchImage @@ -5755,6 +5816,9 @@ Acceleration bnShiftRSLeft + + 340, 227 + rBTPControls @@ -5767,6 +5831,9 @@ Acceleration 252 + + 4, 317 + cMGyroTriggers @@ -5782,8 +5849,8 @@ Acceleration 20 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lbL2TrackS gBGyro @@ -5800,9 +5867,15 @@ Acceleration 24, 17 + + circleToolStripMenuItem + 3 + + Circle + Sixaxis: X axis is flipped for easier reading @@ -5824,6 +5897,9 @@ Acceleration NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + bnShiftSwipeUp @@ -5848,14 +5924,11 @@ Acceleration 47, 132 - - R1 - 8 - - 250 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 84, 62 @@ -5872,14 +5945,11 @@ Acceleration System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleCenter - fLPTiltControls - - NoControl + + fLPTouchSwipe pnlController @@ -5890,9 +5960,6 @@ Acceleration 63, 17 - - NoControl - 295 @@ -5947,9 +6014,6 @@ Acceleration System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 338, 130 - 27, 17 @@ -5968,9 +6032,6 @@ Acceleration 250 - - Controller Readings - Inverted X @@ -6004,11 +6065,8 @@ Acceleration 1 - - 172, 24 - - - 2 + + 151, 26 fingerOnTouchpadToolStripMenuItem @@ -6034,8 +6092,8 @@ Acceleration R2 - - Sixaxis Z + + 0 21, 21 @@ -6070,20 +6128,17 @@ Acceleration 16, 16 - - Multitouch : - pnlFull TopDown - - wScanCodeWASDToolStripMenuItem + + 169 - - Gyro + + bnRSRight fLPShiftTiltControls @@ -6094,6 +6149,12 @@ Acceleration 8 + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + 100, 29 @@ -6106,12 +6167,18 @@ Acceleration False + + 4, 0, 4, 0 + 136, 26 lbRainbowB + + 212 + 125, 25 @@ -6160,8 +6227,8 @@ Acceleration NoControl - - 9 + + 25, 25 True @@ -6178,6 +6245,9 @@ Acceleration 297 + + NoControl + 12 @@ -6190,8 +6260,8 @@ Acceleration RS - - 233, 26 + + 1 NoControl @@ -6205,12 +6275,12 @@ Acceleration 4, 4 + + gBRumble + 190 - - MiddleLeft - 4, 4, 4, 4 @@ -6268,8 +6338,14 @@ Acceleration False - - 338 + + 549, 564 + + + X + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 4, 42 @@ -6311,7 +6387,7 @@ Acceleration NoControl - 1 + 2 System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6361,6 +6437,9 @@ Acceleration 15, 15 + + Flat + MiddleCenter @@ -6376,8 +6455,8 @@ Acceleration System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lb6Accel + + 251 None @@ -6394,17 +6473,14 @@ Acceleration 1 - - 36, 13 - 8, 57 178, 291 - - 9, 11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 bnShiftGyroZN @@ -6427,8 +6503,8 @@ Acceleration 250 - - 247 + + lbGreen NoControl @@ -6475,8 +6551,8 @@ Acceleration 39, 21 - - 4, 4, 4, 4 + + 233, 26 101, 9 @@ -6541,12 +6617,15 @@ Acceleration 4, 0, 4, 0 - - None + + True NoControl + + gBSensitivity + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6574,6 +6653,9 @@ Acceleration B + + 89, 65 + NoControl @@ -6595,6 +6677,9 @@ Acceleration System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 + rightToolStripMenuItem @@ -6610,9 +6695,6 @@ Acceleration 200, 25 - - lbButtonMouseSens - bnShiftTouchMulti @@ -6628,9 +6710,15 @@ Acceleration NoControl + + 5 + 243 + + 4, 4, 4, 4 + L3 : @@ -6646,10 +6734,6 @@ Acceleration 202 - - Launch Program -with profile - 253, 133 @@ -6668,14 +6752,17 @@ with profile 20, 17 + + NoControl + 63, 17 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 65 + + tPControls System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6701,15 +6788,18 @@ with profile NoControl + + System.Windows.Forms.ToolStripMenuItem, 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 + StretchImage 4, 0, 4, 0 - - 136, 26 - 153, 69 @@ -6734,6 +6824,9 @@ with profile 4, 0, 4, 0 + + gBRumble + NoControl @@ -6744,7 +6837,7 @@ with profile RSToolStripMenuItem - 3 + 4 Left Stick @@ -6767,6 +6860,9 @@ with profile r2ToolStripMenuItem + + tPShiftMod + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6794,18 +6890,12 @@ with profile System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fall Back - 286 tPShiftMod - - 20, 20 - 237 @@ -6830,12 +6920,12 @@ with profile 1 + + 111, 111 + 6 - - bnGyroXN - 6 @@ -6854,9 +6944,6 @@ with profile NoControl - - 1 - 32, 30 @@ -6866,21 +6953,30 @@ with profile System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 4, 4, 4 + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Yes - - 50, 22 + + True - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Sixaxis Right + + + 36, 13 R2 + + 294, 79 + NoControl @@ -6920,8 +7016,8 @@ with profile gBLightbar - - gBTouchpad + + NoControl 5 @@ -6965,9 +7061,6 @@ with profile lbL2TrackS - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - No @@ -6980,6 +7073,9 @@ with profile 54, 22 + + 6 + Lightbar @@ -6995,6 +7091,12 @@ with profile 125, 25 + + 1262, 593 + + + gBOther + Share : @@ -7016,8 +7118,8 @@ with profile Right Touch : - - 298 + + Vertical 4, 4, 4, 4 @@ -7049,14 +7151,14 @@ with profile System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 111, 111 + + NoControl 15, 15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True NoControl @@ -7079,9 +7181,6 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 29 - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7091,9 +7190,6 @@ with profile 1 - - btnRemAction - Flat @@ -7103,18 +7199,12 @@ with profile R1 : - - Cross - defaultToolStripMenuItem 248 - - NoControl - 10 @@ -7124,8 +7214,11 @@ with profile NoControl - - 1 + + 4, 4, 4, 4 + + + 298 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7157,6 +7250,9 @@ with profile 82 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + Test Light @@ -7184,9 +7280,6 @@ with profile 172, 26 - - NoControl - 257, 190 @@ -7229,6 +7322,9 @@ with profile System.Windows.Forms.NumericUpDown, 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 + NoControl @@ -7238,8 +7334,8 @@ with profile gBLightbar - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55, 11 36, 76 @@ -7247,6 +7343,9 @@ with profile System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fall Back + 236 @@ -7256,15 +7355,12 @@ with profile 4, 4, 4, 4 - - None + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 gBLightbar - - 159 - 136, 26 @@ -7289,11 +7385,8 @@ with profile 9 - - Sixaxis Right - - - 11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Left Button @@ -7322,14 +7415,14 @@ with profile 28, 32 - - gBOther + + 1 332, 235 - - NoControl + + 49, 22 168, 192 @@ -7346,6 +7439,9 @@ with profile 25, 25 + + 4, 4, 4, 4 + lbL2Track @@ -7355,8 +7451,8 @@ with profile 4 - - 214 + + tBShiftBlueBar 120, 10 @@ -7373,8 +7469,8 @@ with profile 12, 26 - - NoControl + + 4, 4, 4, 4 158 @@ -7394,6 +7490,9 @@ with profile Cross: A + + cHTrigger + NoControl @@ -7409,15 +7508,15 @@ with profile System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl + None 258 - - 3, 2 - Left Stick Down : @@ -7457,9 +7556,6 @@ with profile None - - gBLightbar - 35, 28 @@ -7469,6 +7565,9 @@ with profile 3 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7487,8 +7586,8 @@ with profile None - - Options + + 414, 165 33, 27 @@ -7514,9 +7613,6 @@ with profile 16, 16 - - NoControl - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7526,8 +7622,8 @@ with profile 4, 4, 4, 4 - - gBGyro + + 4, 4, 4, 4 rBTPMouse @@ -7613,6 +7709,9 @@ with profile 130, 21 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 1 @@ -7640,6 +7739,9 @@ with profile 210, 29 + + NoControl + 20 @@ -7661,11 +7763,11 @@ with profile System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 291 + + 7, 95 - - 4, 4, 4, 4 + + 71 4, 4, 4, 4 @@ -7679,8 +7781,8 @@ with profile None - - 549, 564 + + 338, 130 12 @@ -7724,8 +7826,8 @@ with profile tPControls - - 4, 4, 4, 4 + + 4 233, 26 @@ -7757,8 +7859,8 @@ with profile Arrow Keys - - 4, 4, 4, 4 + + 180, 2 NoControl @@ -7787,8 +7889,8 @@ with profile Swipe Right - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 292 50, 22 @@ -7823,14 +7925,17 @@ with profile Inverted + + $this + 35, 12 Fall Back - - 11, 96 + + 16 False @@ -7844,9 +7949,6 @@ with profile 4, 4, 4, 4 - - 4 - nUDGyroSensitivity @@ -7889,17 +7991,14 @@ with profile 0 - - btnRumbleLightTest - 286 lbGyroTriggers - - btnLightbar + + gBTouchpad 3 @@ -7916,6 +8015,9 @@ with profile tPShiftMod + + System.Windows.Forms.Button, 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 @@ -7964,9 +8066,6 @@ with profile 453, 133 - - False - cBFlashType @@ -7976,9 +8075,6 @@ with profile lbspc - - Popup - 10, 28 @@ -7994,14 +8090,14 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 0, 4, 0 + + 4, 4, 4, 4 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - crossToolStripMenuItem + + 39, 17 pnlFull @@ -8015,8 +8111,8 @@ with profile 358, 82 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 3 @@ -8042,23 +8138,26 @@ with profile 233, 26 - - 4, 4, 4, 4 + + 172 False + + 251 + 54, 22 - DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.32.0, Culture=neutral, PublicKeyToken=null + DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.321.0, Culture=neutral, PublicKeyToken=null False - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8081,6 +8180,9 @@ with profile Options + + 4, 0, 4, 0 + Left Bumper @@ -8099,15 +8201,15 @@ with profile 4, 0, 4, 0 + + NoControl + 339, 152 NoControl - - 13 - True @@ -8171,6 +8273,9 @@ with profile NoControl + + 67, 95 + 4, 4, 4, 4 @@ -8183,8 +8288,8 @@ with profile 63, 17 - - 42, 60 + + 50, 22 226 @@ -8192,6 +8297,9 @@ with profile Flat + + 4, 4, 4, 4 + Options @@ -8201,11 +8309,11 @@ with profile 177, 38 - - 100, 29 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 172, 22 + + 4, 4, 4, 4 bnShiftCircle @@ -8231,9 +8339,6 @@ with profile System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Middle Mouse Button - 4, 0, 4, 0 @@ -8273,14 +8378,14 @@ with profile 170 - - 4, 0, 4, 0 + + tPShiftMod 188 - - nUDSXS + + 9 False @@ -8306,8 +8411,8 @@ with profile None - - ABXYToolStripMenuItem + + Rumble 4, 4, 4, 4 @@ -8315,20 +8420,17 @@ with profile cBFlushHIDQueue - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tCSens - - Flat + + 4, 4, 4, 4 4, 4, 4, 4 - - gBRumble + + Right Y-Axis+ 8, 5 @@ -8384,15 +8486,15 @@ with profile 58, 81 - - None - NoControl gBGyro + + True + 11 @@ -8417,8 +8519,11 @@ with profile 23 - - System.Windows.Forms.Label, 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 + + + 15 334, 160 @@ -8429,8 +8534,8 @@ with profile 15 - - 8 + + 57, 79 0 @@ -8471,14 +8576,14 @@ with profile Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 37, 17 NoControl - - 557, 0 + + fLPSettings 16 @@ -8504,8 +8609,8 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 35, 28 + + 4, 0, 4, 0 205 @@ -8522,8 +8627,11 @@ with profile tSMIRSInvertedX - - 4, 4, 4, 4 + + 250 + + + cHAction 330, 235 @@ -8540,8 +8648,11 @@ with profile fLPTouchSwipe - - 4, 4, 4, 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 111, 37 NoControl @@ -8552,11 +8663,8 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbHold - - - 170, 29 + + True 177, 23 @@ -8567,11 +8675,11 @@ with profile 1 - - 7 + + 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 + + 208, 29 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8591,8 +8699,8 @@ with profile Gyro Sensitivity: - - 180, 2 + + tPDeadzone True @@ -8612,6 +8720,9 @@ with profile tPShiftMod + + 295 + 4, 4, 4, 4 @@ -8624,6 +8735,9 @@ with profile 233, 26 + + Sixaxis X + 24, 17 @@ -8636,11 +8750,14 @@ with profile 0 + + NoControl + 4, 4, 4, 4 - - 251 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 4, 4, 4, 4 @@ -8648,6 +8765,9 @@ with profile None + + 165 + 196, 41 @@ -8663,21 +8783,18 @@ with profile pnlController - - 233, 26 + + 210, 29 - - None + + False - - 166 + + bnR3 4, 4, 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 292 @@ -8726,12 +8843,15 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bnShiftL2 + + Options squareToolStripMenuItem + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 4, 0, 4, 0 @@ -8750,12 +8870,18 @@ with profile Tilt Down + + pnlController + 61, 24 NoControl + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8768,23 +8894,14 @@ with profile bnGyroXP - - 4, 4, 4, 4 - 285 - - lbGyroInvert - 4, 4, 4, 4 - - cMSPresets - - - bnRight + + 4, 4, 4, 4 tSMIDPadInverted @@ -8795,8 +8912,8 @@ with profile 4, 4, 4, 4 - - 4, 0, 4, 0 + + cMSPresets lbLLeft @@ -8816,6 +8933,9 @@ with profile None + + pnlController + 4, 41 @@ -8861,11 +8981,11 @@ with profile leftToolStripMenuItem - - 251 + + 218 - - Vertical + + 4 147, 21 @@ -8876,14 +8996,8 @@ with profile 90, 273 - - 253 - - - Flat - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnShiftLightbar None @@ -8906,9 +9020,6 @@ with profile 4, 4, 4, 4 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - NoControl @@ -8918,9 +9029,6 @@ with profile 287 - - nUDRumbleBoost - 126, 21 @@ -8969,9 +9077,6 @@ with profile 12 - - 111, 37 - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -8984,18 +9089,12 @@ with profile NoControl - - 235 - - - 1, 23 + + Fall Back cBMouseAccel - - 250 - True @@ -9047,8 +9146,8 @@ with profile pnlSAMouse - - 3 + + 89 Sixaxis Left @@ -9056,8 +9155,8 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - L2 + + pnlTPMouse 367, 129 @@ -9074,9 +9173,6 @@ with profile System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 4, 4, 4 - gBLightbar @@ -9095,18 +9191,18 @@ with profile Flat - - 4, 4, 4, 4 + + Inverted Y bnRSDown + + ABXYToolStripMenuItem + pnlShiftLight - - 4, 0, 4, 0 - TopRight @@ -9137,18 +9233,12 @@ with profile btnGyroTriggers - - pnlTPMouse - NoControl Flat - - 55, 11 - 15, 15 @@ -9158,8 +9248,8 @@ with profile 89, 31 - - MiddleCenter + + False 4, 0, 4, 0 @@ -9167,14 +9257,11 @@ with profile 9 - - fLPTiltControls - tPShiftMod - - True + + 352, 4 Sqaure : @@ -9200,15 +9287,9 @@ with profile nUDSZS - - 1 - NoControl - - 147, 179 - NoControl @@ -9236,9 +9317,6 @@ with profile pnlFull - - 4, 4, 4, 4 - 61, 22 @@ -9275,9 +9353,6 @@ with profile Yes - - 4, 25 - 233, 26 @@ -9320,9 +9395,6 @@ with profile lbShiftSwipeDown - - 289 - NoControl @@ -9332,9 +9404,6 @@ with profile lbLRS - - 84, 24 - pnlController @@ -9344,9 +9413,6 @@ with profile Flat - - Stretch - 303 @@ -9365,8 +9431,8 @@ with profile bnCross - - 1262, 593 + + 4, 4, 4, 4 pnlShiftLight @@ -9416,9 +9482,6 @@ with profile Options - - 259 - cBTap @@ -9473,8 +9536,8 @@ with profile 4 - - False + + 253 fLPShiftTouchSwipe @@ -9536,15 +9599,9 @@ with profile tPShiftMod - - True - Fall Back - - 218 - 15 @@ -9587,14 +9644,11 @@ with profile R1 : - - fLPTouchSwipe - Flat - - Fall Back + + 214 4, 0, 4, 0 @@ -9644,8 +9698,8 @@ with profile cBShiftControl - - 231 + + 11 L2 @@ -9662,14 +9716,8 @@ with profile False - - Square - - - 4, 4, 4, 4 - - - Circle + + 231 lbLTriangle @@ -9719,9 +9767,6 @@ with profile 9 - - bnRSRight - 15, 15 @@ -9734,9 +9779,6 @@ with profile System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None - False @@ -9761,9 +9803,6 @@ with profile NoControl - - Fall Back - 327, 191 @@ -9773,11 +9812,8 @@ with profile 4, 4, 4, 4 - - Inverted Y - - - R3 : + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 23 @@ -9791,12 +9827,6 @@ with profile LS - - $this - - - While Charging: - 4, 4, 4, 4 @@ -9836,9 +9866,6 @@ with profile System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50, 22 - NoControl @@ -9872,9 +9899,6 @@ with profile 9, 9 - - False - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -9893,9 +9917,6 @@ with profile 325, 151 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Yes @@ -9905,9 +9926,6 @@ with profile fingersOnTouchpadToolStripMenuItem - - NoControl - Right Button @@ -9935,26 +9953,14 @@ with profile Down Button - - 27, 40 - - - 208, 29 - 90, 3 - - R1 - - - btnShiftLightbar - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lbL2TrackS + + L2 NoControl @@ -10037,8 +10043,8 @@ with profile MiddleLeft - - $this + + 4, 0, 4, 0 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -10049,9 +10055,6 @@ with profile 4, 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Fall Back @@ -10077,7 +10080,7 @@ with profile l1ToolStripMenuItem - 6 + 7 4, 4, 4, 4 @@ -10124,9 +10127,6 @@ with profile 292 - - pBRainbow - 9 @@ -10155,6 +10155,6 @@ with profile 647, 17 - he + zh-Hans \ No newline at end of file diff --git a/DS4Windows/DS4Forms/Options.zh-Hans.resx b/DS4Windows/DS4Forms/Options.zh-Hans.resx index aa14756e83..688d6439c4 100644 --- a/DS4Windows/DS4Forms/Options.zh-Hans.resx +++ b/DS4Windows/DS4Forms/Options.zh-Hans.resx @@ -232,30 +232,24 @@ 空: - - 触摸板 + + 136, 21 - - 150, 244 + + 開啟時滑動/捲動關閉 - 149, 26 + 133, 26 - 146, 6 + 130, 6 - 149, 26 + 133, 26 默认 - - 149, 26 - - - 十字键 - 141, 26 @@ -274,11 +268,11 @@ 反转Y轴 - - 149, 26 + + 133, 26 - - 左摇杆 + + 十字键 141, 26 @@ -298,11 +292,11 @@ 反转Y轴 - - 149, 26 + + 133, 26 - - 右摇杆 + + 左摇杆 141, 26 @@ -322,14 +316,17 @@ 反转Y轴 + + 133, 26 + + + 右摇杆 + - 149, 26 + 133, 26 - 右側四個按鈕 - - - 149, 26 + 右侧动作键 164, 26 @@ -337,11 +334,8 @@ 用掃描代碼 - - 149, 26 - - - 箭头键 + + 133, 26 164, 26 @@ -349,11 +343,11 @@ 用掃描代碼 - - 149, 26 + + 133, 26 - - 鼠标 + + 方向键 141, 26 @@ -373,14 +367,17 @@ 反转Y轴 - - 136, 21 + + 133, 26 - - 開啟時滑動/捲動關閉 + + 鼠标 - - 其他 + + 134, 244 + + + 触摸板 108, 21 @@ -388,8 +385,11 @@ 只使用 Dinput + + 236, 133 + - 11, 163 + 9, 140 129, 21 @@ -397,6 +397,9 @@ 运行程式与配置文件 + + 146, 135 + 浏览... @@ -427,32 +430,8 @@ 空闲时断开连接 - - 灯条 - - - 176, 21 - - - shift mode 時用另一種顏色 - - - 22, 17 - - - - - - 22, 17 - - - 绿 - - - 22, 17 - - - + + 其他 闪砾 @@ -478,14 +457,38 @@ 充电时: - - 转盘 + + 176, 21 + + + shift mode 時用另一種顏色 + + + 22, 17 + + + + + + 22, 17 + + + 绿 + + + 22, 17 + + + + + + 灯条 测试轻震 - - 控制器讀數 + + 转盘 右摇杆 @@ -514,9 +517,6 @@ 陀螺仪 - - (無)/shift 關閉 - 30, 17 @@ -529,14 +529,14 @@ 來使用這些控制 - - 控制器 + + (無)/shift 關閉 點擊光調來開啟顏色選擇器 - - 特殊动作 + + 控制器 名字 @@ -559,6 +559,9 @@ ...最多50个动作。 + + 特殊动作 + 死区 diff --git a/DS4Windows/DS4Forms/Options.zh-Hant.resx b/DS4Windows/DS4Forms/Options.zh-Hant.resx index 1d7e83ebff..67d870f6bb 100644 --- a/DS4Windows/DS4Forms/Options.zh-Hant.resx +++ b/DS4Windows/DS4Forms/Options.zh-Hant.resx @@ -702,4 +702,13 @@ Inherit + + 靈敏度 + + + 控制器讀數 + + + Shift Modifier + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/RecordBox.it-IT.resx b/DS4Windows/DS4Forms/RecordBox.it-IT.resx index 3be8ecc0eb..98c2b5797c 100644 --- a/DS4Windows/DS4Forms/RecordBox.it-IT.resx +++ b/DS4Windows/DS4Forms/RecordBox.it-IT.resx @@ -244,4 +244,7 @@ 139, 48 + + Aggiungi Vibrazione + \ No newline at end of file diff --git a/DS4Windows/DS4Forms/RecordBox.resx b/DS4Windows/DS4Forms/RecordBox.resx index 84bd9dffdf..517f89c1ff 100644 --- a/DS4Windows/DS4Forms/RecordBox.resx +++ b/DS4Windows/DS4Forms/RecordBox.resx @@ -142,7 +142,7 @@ Macro Order - + @Invariant 3 @@ -181,7 +181,7 @@ Text Document (*.txt)|*.txt - + @Invariant btn4th @@ -218,7 +218,7 @@ Record a Macro - + @Invariant 3 @@ -599,7 +599,7 @@ Text Document (*.txt)|*.txt - + @Invariant Top, Right diff --git a/DS4Windows/DS4Forms/SaveWhere.it-IT.resx b/DS4Windows/DS4Forms/SaveWhere.it-IT.resx index 55dacf495e..2b70df7ec5 100644 --- a/DS4Windows/DS4Forms/SaveWhere.it-IT.resx +++ b/DS4Windows/DS4Forms/SaveWhere.it-IT.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Per quelli che preferiscono un'installazione regolare Impostazioni salvate in %appdata%/ds4tool + Per quelli che preferiscono un'installazione regolare, le Impostazioni sono salvate in %appdata%/ds4tool - Per quelli che preferiscono un programma portatile Nota: questa opzione non funziona se in una cartella admin senza UAC + Per quelli che preferiscono un programma portatile Nota: questa opzione non funziona se si trova in una cartella admin senza UAC Cartella Programma diff --git a/DS4Windows/DS4Forms/SpecActions.it-IT.resx b/DS4Windows/DS4Forms/SpecActions.it-IT.resx index cd2d63ae89..308adb46f0 100644 --- a/DS4Windows/DS4Forms/SpecActions.it-IT.resx +++ b/DS4Windows/DS4Forms/SpecActions.it-IT.resx @@ -1499,7 +1499,7 @@ TopCenter - Premuto per + Tieni Premuto per secondi @@ -1540,4 +1540,13 @@ Argomento + + Doppio Tap sul Grilletto (LT/RT) + + + Tieni Premuto Grilletto + + + Tap sul Grilletto + \ No newline at end of file diff --git a/DS4Windows/DS4Library/DS4Sixaxis.cs b/DS4Windows/DS4Library/DS4Sixaxis.cs index 7760eace1b..8777d3411d 100644 --- a/DS4Windows/DS4Library/DS4Sixaxis.cs +++ b/DS4Windows/DS4Library/DS4Sixaxis.cs @@ -60,16 +60,16 @@ public void handleSixaxis(byte[] gyro, byte[] accel, DS4State state) }*/ /* byte touchID1 = (byte)(data[0 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F); byte touchID2 = (byte)(data[4 + TOUCHPAD_DATA_OFFSET + touchPacketOffset] & 0x7F);*/ - int currentX = (Int16)((UInt16)(gyro[0] << 8) | gyro[1]) / 256; - int currentY = (Int16)((UInt16)(gyro[2] << 8) | gyro[3]) / 256; - int currentZ = (Int16)((UInt16)(gyro[4] << 8) | gyro[5]) / 256; - int AccelX = (Int16)((UInt16)(accel[2] << 8) | accel[3]) / 256; - int AccelY = (Int16)((UInt16)(accel[0] << 8) | accel[1]) / 256; - int AccelZ = (Int16)((UInt16)(accel[4] << 8) | accel[5]) / 256; + int currentX = (short)((ushort)(gyro[0] << 8) | gyro[1]) / 64; + int currentY = (short)((ushort)(gyro[2] << 8) | gyro[3]) / 64; + int currentZ = (short)((ushort)(gyro[4] << 8) | gyro[5]) / 64; + int AccelX = (short)((ushort)(accel[2] << 8) | accel[3]) / 256; + int AccelY = (short)((ushort)(accel[0] << 8) | accel[1]) / 256; + int AccelZ = (short)((ushort)(accel[4] << 8) | accel[5]) / 256; SixAxisEventArgs args; //if (sensors.Touch1 || sensors.Touch2) { - if (SixAxisMoved != null) + /* if (SixAxisMoved != null) { SixAxis sPrev, now; sPrev = new SixAxis(lastGyroX, lastGyroY, lastGyroZ, lastAX,lastAY,lastAZ); @@ -83,7 +83,7 @@ public void handleSixaxis(byte[] gyro, byte[] accel, DS4State state) lastGyroZ = currentZ; lastAX = AccelX; lastAY = AccelY; - lastAZ = AccelZ; + lastAZ = AccelZ;*/ } if (AccelX != 0 || AccelY != 0 || AccelZ != 0) { diff --git a/DS4Windows/DS4Library/DS4StateExposed.cs b/DS4Windows/DS4Library/DS4StateExposed.cs index c4ff726b8a..f69dedd79b 100644 --- a/DS4Windows/DS4Library/DS4StateExposed.cs +++ b/DS4Windows/DS4Library/DS4StateExposed.cs @@ -53,21 +53,21 @@ public DS4StateExposed(DS4State state) /// Yaw leftward/counter-clockwise/turn to port or larboard side /// Add double the previous result to this delta and divide by three. - public int AccelX { get { return (Int16)((UInt16)(accel[2] << 8) | accel[3]) / 256; } } + public int AccelX { get { return (short)((ushort)(accel[2] << 8) | accel[3]) / 256; } } /// Pitch upward/backward /// Add double the previous result to this delta and divide by three. - public int AccelY { get { return (Int16)((UInt16)(accel[0] << 8) | accel[1]) / 256; } } + public int AccelY { get { return (short)((ushort)(accel[0] << 8) | accel[1] ) / 256; } } /// roll left/L side of controller down/starboard raising up /// Add double the previous result to this delta and divide by three. - public int AccelZ { get { return (Int16)((UInt16)(accel[4] << 8) | accel[5]) / 256; } } + public int AccelZ { get { return (short)((ushort)(accel[4] << 8) | accel[5]) / 256; } } /// R side of controller upward /// Add double the previous result to this delta and divide by three. - public int GyroX { get { return (Int16)((UInt16)(gyro[0] << 8) | gyro[1]) / 64; } } + public int GyroX { get { return (short)((ushort)(gyro[0] << 8) | gyro[1]) / 64; } } /// touchpad and button face side of controller upward /// Add double the previous result to this delta and divide by three. - public int GyroY { get { return (Int16)((UInt16)(gyro[2] << 8) | gyro[3]) / 64; } } + public int GyroY { get { return (short)((ushort)(gyro[2] << 8) | gyro[3]) / 64; } } /// Audio/expansion ports upward and light bar/shoulders/bumpers/USB port downward /// Add double the previous result to this delta and divide by three. - public int GyroZ { get { return (Int16)((UInt16)(gyro[4] << 8) | gyro[5]) / 64; } } + public int GyroZ { get { return (short)((ushort)(gyro[4] << 8) | gyro[5]) / 64; } } } } diff --git a/DS4Windows/Properties/AssemblyInfo.cs b/DS4Windows/Properties/AssemblyInfo.cs index 72452a6bb8..5f2791287c 100644 --- a/DS4Windows/Properties/AssemblyInfo.cs +++ b/DS4Windows/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.32")] -[assembly: AssemblyFileVersion("1.4.32")] +[assembly: AssemblyVersion("1.4.321")] +[assembly: AssemblyFileVersion("1.4.321")] diff --git a/DS4Windows/Properties/Resources.it-IT.resx b/DS4Windows/Properties/Resources.it-IT.resx index 4bd43e1d70..4d6914cd85 100644 --- a/DS4Windows/Properties/Resources.it-IT.resx +++ b/DS4Windows/Properties/Resources.it-IT.resx @@ -343,7 +343,7 @@ Per favore Aprire ScpDriver.exe - , file su altre locazioni verranno cancellati + , i file nelle altre cartelle verranno cancellati Per favore Scarica l'Uploader ora, e posizionalo nella cartella del programma, poi controlla per aggiornamenti nuovamente @@ -415,100 +415,100 @@ Arresto Leggero - Controller DS4 in arresto + DS4Windows Arrestato - X360 Controller in arresto + Controller DS4 in arresto - Arresta + X360 Controller in arresto - Swipe Giù + Arresta - Swipe Sinistra + Swipe Giù - Swipe Destra + Swipe Sinistra - Effettuare Swipe sul Touchpad per cambiare profili + Swipe Destra - Swipe Su + Effettuare Swipe sul Touchpad per cambiare profili - Tap e mantenere per trascinare, piccolo ritardo con tap singoli + Swipe Su - Test Pesante + Tap e mantenere per trascinare, piccolo ritardo con tap singoli - Test Leggero + Test Pesante Test Leggero - Inclina a Sx + Inclina Giù - Inclina a Dx + Inclina a Sx - Inclina Su + Inclina a Dx - Movimenti Touchpad sono ora Disattivati + Inclina Su - Movimenti Touchpad sono ora Attivati + Movimenti Touchpad sono ora Disattivati - Ri-abilita premendo PS+Touchpad + Movimenti Touchpad sono ora Attivati - Swipe Touchpad a 2 dita a sinistra o a destra + Ri-abilita premendo PS+Touchpad - Scrivi nuovo nome qui + Swipe Touchpad a 2 dita a sinistra o a destra - Scrivi nome profilo qui + Scrivi nuovo nome qui - Su + Scrivi nome profilo qui - Sei aggiornato + Su - Puoi anche usare il tuo controller per cambiare i controlli + Sei aggiornato - Utilizzando Modalità Esclusiva + Puoi anche usare il tuo controller per cambiare i controlli - Il Controller *number* sta usando il Profilo "*Profile name*" + Utilizzando Modalità Esclusiva - Utilizzando Modalità Condivisa + Il Controller *number* sta usando il Profilo "*Profile name*" - Questo disabilita il Touchpad come mouse + Utilizzando Modalità Condivisa - Per favore immettere un nome valido + Questo disabilita il Touchpad come mouse - Aspetta *number**ms* + Per favore immettere un nome valido - Mantenere + Aspetta *number**ms* - Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP + Mantenere Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP @@ -529,6 +529,24 @@ DS4Windows Arrestato - Inclina Giù + Documento di Testo (*.txt) + + + Impossibile spostare i file in un nuova cartella. Rinomina la cartella DS4Tool in "DS4Windows" + + + Carica la Batteria + + + Installazione Fallita. Riprova + + + Test + + + Non Assegnato + + + File XML (*.xml) \ No newline at end of file diff --git a/DS4Windows/Properties/Resources.zh-hans.resx b/DS4Windows/Properties/Resources.zh-hans.resx index f3105499be..b74cdd354d 100644 --- a/DS4Windows/Properties/Resources.zh-hans.resx +++ b/DS4Windows/Properties/Resources.zh-hans.resx @@ -430,99 +430,105 @@ DS4Windows已停止 - DS4手柄停止中 + DS4Windows已停止 - XBOX 360手柄停止中 + DS4手柄停止中 - 停止 + XBOX 360手柄停止中 - 下滑 + 停止 - 左滑 + 下滑 - 右滑 + 左滑 - 滑动触摸板以更改配置文件 + 右滑 - 上滑 + 滑动触摸板以更改配置文件 - 轻触保持以拖动,单次轻触稍微延迟 + 上滑 - 测试震动 + 轻触保持以拖动,单次轻触稍微延迟 - 测试微震 + 测试震动 下斜 - 左斜 + 下斜 - 右斜 + 左斜 - 上斜 + 右斜 - 触摸板移动已经关闭 + 上斜 - 触摸板移动已经打开 + 触摸板移动已经关闭 - PS键+触摸板 以重新启用 + 触摸板移动已经打开 - 触摸板双指左或右滑动 + PS键+触摸板 以重新启用 - 在此输入新命名 + 触摸板双指左或右滑动 - 在此输入配置文件名字 + 在此输入新命名 - 上斜 + 在此输入配置文件名字 - 程序已经是最新的 + 上斜 - 你也可以用手柄来改变操作 + 程序已经是最新的 - 使用排它模式 + 你也可以用手柄来改变操作 - 手柄*number*正在使用配置文件*profile name* + 使用排它模式 - 使用共享模式 + 手柄*number*正在使用配置文件*profile name* - 停止触摸板作为鼠标 + 使用共享模式 - 请输入一个有效的名字 + 停止触摸板作为鼠标 - 等待*number*毫秒 + 请输入一个有效的名字 - 将保持 + 等待*number*毫秒 + 将保持 + + + 测试微震 + + 如果你在其他XBOX 360模拟程序中有冲突,使用更高端口.例如SCP's工具 \ No newline at end of file