From c0a2dccedfb025cc0afb2ee9d49415a9ca1e1315 Mon Sep 17 00:00:00 2001 From: jays2kings Date: Mon, 1 Sep 2014 19:23:02 -0400 Subject: [PATCH] Version 1.4.0.55 Added start/stop to notification icon Right click on the status icon in the main window to disconnect the controller (BT only) Rumble testing actually varies as the boost value changes (you won't noticea change with testing past 100%) Better lightbar flashing, color has a better chance of changing back after not flashing etc. Moved source code to Github, the link is on the about page of DS4Windows and my sig on pcsx2.net Special feature (beta) for those who have a profile for Distance and use the controller in X360 mode. --- DS4Control/DS4LightBar.cs | 48 +- DS4Control/ScpUtil.cs | 4 +- DS4Library/DS4Device.cs | 14 + DS4Tool/Hotkeys.cs | 2 +- DS4Tool/Hotkeys.fr-FR.resx | 3 - DS4Tool/Hotkeys.resx | 263 +- DS4Tool/Options.cs | 2 +- DS4Tool/Properties/AssemblyInfo.cs | 4 +- DS4Tool/ScpForm.Designer.cs | 97 +- DS4Tool/ScpForm.cs | 38 +- DS4Tool/ScpForm.fr-FR.resx | 162 +- DS4Tool/ScpForm.resx | 4778 +++++++++++++++------------- 12 files changed, 2882 insertions(+), 2533 deletions(-) diff --git a/DS4Control/DS4LightBar.cs b/DS4Control/DS4LightBar.cs index ba7b4f6..bce3f37 100644 --- a/DS4Control/DS4LightBar.cs +++ b/DS4Control/DS4LightBar.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using System.Drawing; using DS4Library; namespace DS4Control { @@ -128,9 +129,16 @@ namespace DS4Control } } else if (shuttingdown) - color = new DS4Color { red = 0, green = 0, blue = 0}; + color = new DS4Color { red = 0, green = 0, blue = 0 }; else color = new DS4Color { red = 32, green = 64, blue = 64 }; + Color dsc = Color.FromArgb(color.red, color.green, color.blue); + if (Global.getAProfile(deviceNum).ToLower().Contains("distance")) + { //Thing I did for Distance + float rumble = device.LeftHeavySlowRumble / 2.55f; + if (device.LeftHeavySlowRumble > 50) + color = getTransitionedColor(color, rumble); + } DS4HapticState haptics = new DS4HapticState { LightBarColor = color @@ -141,10 +149,15 @@ namespace DS4Control { int level = device.Battery / 10; //if (level >= 10) - //level = 0; // all values of ~0% or >~100% are rendered the same + //level = 0; // all values of ~0% or >~100% are rendered the same haptics.LightBarFlashDurationOn = BatteryIndicatorDurations[level, 0]; haptics.LightBarFlashDurationOff = BatteryIndicatorDurations[level, 1]; } + else if (Global.getAProfile(deviceNum).ToLower().Contains("distance") && device.LeftHeavySlowRumble > 155) //also part of Distance + { + haptics.LightBarFlashDurationOff = haptics.LightBarFlashDurationOn = (byte)((-device.LeftHeavySlowRumble + 265)); + haptics.LightBarExplicitlyOff = true; + } else { //haptics.LightBarFlashDurationOff = haptics.LightBarFlashDurationOn = 1; @@ -156,6 +169,10 @@ namespace DS4Control { haptics.LightBarExplicitlyOff = true; } + if (device.LightBarOnDuration != haptics.LightBarFlashDurationOn && device.LightBarOnDuration != 1 && haptics.LightBarFlashDurationOn == 0) + haptics.LightBarFlashDurationOff = haptics.LightBarFlashDurationOn = 1; + if (device.LightBarOnDuration == 1) + System.Threading.Thread.Sleep(5); device.pushHapticState(haptics); } public static bool defualtLight = false, shuttingdown = false; @@ -214,5 +231,32 @@ namespace DS4Control else return new DS4Color { red = 255, green = 0, blue = 0 }; } + + public static DS4Color getTransitionedColor(DS4Color c1, double ratio) + {//; + //Color cs = Color.FromArgb(c1.red, c1.green, c1.blue); + DS4Color c2 = new DS4Color { red = 255, green = 0, blue = 0 }; + c1.red = applyRatio(c1.red, c2.red, ratio); + c1.green = applyRatio(c1.green, c2.green, ratio); + c1.blue = applyRatio(c1.blue, c2.blue, ratio); + return c1; + } + + private static byte applyRatio(byte b1, byte b2, double r) + { + if (r > 100) + r = 100; + else if (r < 0) + r = 0; + uint ratio = (uint)r; + if (b1 > b2) + { + ratio = 100 - (uint)r; + } + byte bmax = Math.Max(b1, b2); + byte bmin = Math.Min(b1, b2); + byte bdif = (byte)(bmax - bmin); + return (byte)(bmin + (bdif * ratio / 100)); + } } } diff --git a/DS4Control/ScpUtil.cs b/DS4Control/ScpUtil.cs index fc64a3b..b9032e9 100644 --- a/DS4Control/ScpUtil.cs +++ b/DS4Control/ScpUtil.cs @@ -632,8 +632,8 @@ namespace DS4Control return (byte)(bmin + (bdif * ratio / 100)); } public static DS4Color getTransitionedColor(DS4Color c1, DS4Color c2, double ratio) - {; - Color cs = Color.FromArgb(c1.red, c1.green, c1.blue); + {//; + //Color cs = Color.FromArgb(c1.red, c1.green, c1.blue); c1.red = applyRatio(c1.red, c2.red, ratio); c1.green = applyRatio(c1.green, c2.green, ratio); c1.blue = applyRatio(c1.blue, c2.blue, ratio); diff --git a/DS4Library/DS4Device.cs b/DS4Library/DS4Device.cs index 1974540..ed0f0d3 100644 --- a/DS4Library/DS4Device.cs +++ b/DS4Library/DS4Device.cs @@ -21,6 +21,20 @@ namespace DS4Library public byte red; public byte green; public byte blue; + public override bool Equals(object obj) + { + if (obj is DS4Color) + { + DS4Color dsc = ((DS4Color)obj); + return (this.red == dsc.red && this.green == dsc.green && this.blue == dsc.blue); + } + else + return false; + } + public override string ToString() + { + return ("Red: " + red + " Green: " + green + " Blue: " + blue); + } } public enum ConnectionType : byte { BT, USB }; // Prioritize Bluetooth when both are connected. diff --git a/DS4Tool/Hotkeys.cs b/DS4Tool/Hotkeys.cs index 1d501e8..de8dc10 100644 --- a/DS4Tool/Hotkeys.cs +++ b/DS4Tool/Hotkeys.cs @@ -32,7 +32,7 @@ namespace ScpServer private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - System.Diagnostics.Process.Start("https://code.google.com/r/jays2kings-ds4tool/source/list?name=jay"); + System.Diagnostics.Process.Start("https://github.com/Jays2Kings/DS4Windows"); } private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) diff --git a/DS4Tool/Hotkeys.fr-FR.resx b/DS4Tool/Hotkeys.fr-FR.resx index 2d31e46..ca8d845 100644 --- a/DS4Tool/Hotkeys.fr-FR.resx +++ b/DS4Tool/Hotkeys.fr-FR.resx @@ -369,7 +369,4 @@ si vous observez des entrĂ©es doubles en plein jeu ou si R2 met le jeu en pause 691, 434 - - NoControl - \ No newline at end of file diff --git a/DS4Tool/Hotkeys.resx b/DS4Tool/Hotkeys.resx index 3270660..fb52ee0 100644 --- a/DS4Tool/Hotkeys.resx +++ b/DS4Tool/Hotkeys.resx @@ -151,15 +151,15 @@ tableLayoutPanel1 + + 0 + 515, 19 label15 - - 520, 434 - 3 @@ -173,13 +173,16 @@ Microsoft Sans Serif, 8.25pt, style=Bold - - 9 + + 0 Left + + True + 3, 31 @@ -207,6 +210,9 @@ 70, 13 + + Upper Touch + 14 @@ -222,9 +228,6 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label5 - True @@ -258,12 +261,6 @@ 56, 13 - - tableLayoutPanel1 - - - *If enabled - 14 @@ -279,6 +276,9 @@ label10 + + 176, 13 + True @@ -309,9 +309,6 @@ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 193, 146 - True @@ -321,20 +318,23 @@ Cycle through profiles + + 9 + label26 146, 13 - - linkDonate - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Toggle + + 175, 13 + + + System.Windows.Forms.Label, 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 @@ -345,12 +345,12 @@ 19 - - 193, 184 - tableLayoutPanel1 + + linkElectro + True @@ -378,15 +378,9 @@ Bottom, Left - - True - 8 - - 175, 13 - 193, 51 @@ -462,9 +456,6 @@ 18 - - label30 - 193, 165 @@ -480,9 +471,6 @@ 15 - - tableLayoutPanel1 - 14 @@ -525,9 +513,6 @@ 19 - - Multitouch - 94, 13 @@ -543,18 +528,15 @@ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40, 13 - - - Left - - - 29 + + Donate via Paypal True + + 16 + 216, 13 @@ -594,9 +576,6 @@ label9 - - $this - label18 @@ -618,8 +597,8 @@ True - - label7 + + 3 14 @@ -633,8 +612,8 @@ True - - $this + + label7 Touch Touchpad + PS @@ -645,9 +624,6 @@ 59, 13 - - 20 - tableLayoutPanel1 @@ -657,9 +633,6 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 - 22 @@ -684,6 +657,9 @@ 100, 13 + + $this + 193, 263 @@ -693,12 +669,15 @@ 66, 13 - - Donate via Paypal + + 1 3, 225 + + 193, 89 + 3, 301 @@ -753,8 +732,8 @@ True - - 0 + + True 14 @@ -777,9 +756,6 @@ tableLayoutPanel1 - - 8 - 6 @@ -846,12 +822,18 @@ $this + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + True 237, 13 + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + $this @@ -864,8 +846,8 @@ 6, 352 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 29 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -876,30 +858,39 @@ 7 + + Disconnect Controller (Only on Bluetooth) + 3, 127 58, 13 + + 193, 301 + lbAbout - - label4 - Left tableLayoutPanel1 + + 83, 13 + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 324, 26 + + 3, 9 + Tap then hold touchpad* @@ -909,8 +900,8 @@ 4 - - Hotkeys + + tableLayoutPanel1 $this @@ -924,8 +915,8 @@ Hide DS4 Controller - - 193, 89 + + Toggle linkInhexSTER @@ -933,8 +924,8 @@ Click left side of touchpad - - 1 + + 4 True @@ -957,9 +948,6 @@ 160, 13 - - 4 - tableLayoutPanel1 @@ -978,9 +966,6 @@ 58, 13 - - 14 - 1 @@ -990,12 +975,12 @@ True + + 12 + label32 - - tableLayoutPanel1 - Left Touch @@ -1017,6 +1002,9 @@ 14 + + True + tableLayoutPanel1 @@ -1044,14 +1032,14 @@ 18 - - 0 - 18 - - Disconnect Controller (Only on Bluetooth) + + 193, 146 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 28 @@ -1074,8 +1062,8 @@ True - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + linkDonate Two fingers up/down on touchpad* @@ -1086,8 +1074,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 83, 13 + + 8 87, 13 @@ -1119,14 +1107,14 @@ Left + + 14 + True - - 16 - - - $this + + Hotkeys 13 @@ -1146,23 +1134,29 @@ 3, 32 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 + + + TopCenter System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Scroll Up/Down + 5 - - True + + 520, 434 - - 193, 301 + + tableLayoutPanel1 - - Scroll Up/Down + + label4 14 @@ -1185,8 +1179,8 @@ Help - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left 313, 13 @@ -1194,14 +1188,14 @@ 95, 382 - - Left + + label5 The key will remain in a "held down" state until pressed again - - True + + tableLayoutPanel1 label16 @@ -1215,8 +1209,8 @@ Assign multiple keys to one input - - Upper Touch + + label30 True @@ -1239,8 +1233,8 @@ 2 - - TopCenter + + *If enabled 513, 318 @@ -1251,11 +1245,14 @@ 193, 203 + + Left + Done - - 176, 13 + + Multitouch TopCenter @@ -1275,8 +1272,8 @@ 3, 108 - - linkElectro + + 193, 184 Scan Code @@ -1290,12 +1287,15 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + 40, 13 lLChangelog + + label14 + True @@ -1315,8 +1315,8 @@ check if you are getting double input in games or R2 pauses games True - - 3, 9 + + $this 3, 263 @@ -1324,13 +1324,10 @@ check if you are getting double input in games or R2 pauses games 2 - - label14 + + $this True - - fr-FR - \ No newline at end of file diff --git a/DS4Tool/Options.cs b/DS4Tool/Options.cs index 187dfec..f6ed731 100644 --- a/DS4Tool/Options.cs +++ b/DS4Tool/Options.cs @@ -724,7 +724,7 @@ namespace ScpServer { if (((Button)sender).Text == Properties.Resources.TestText) { - scpDevice.setRumble(255, 255, (int)nUDSixaxis.Value - 1); + scpDevice.setRumble((byte)Math.Min(255, (255 * nUDRumbleBoost.Value / 100)), (byte)Math.Min(255, (255 * nUDRumbleBoost.Value / 100)), (int)nUDSixaxis.Value - 1); ((Button)sender).Text = Properties.Resources.StopText; } else diff --git a/DS4Tool/Properties/AssemblyInfo.cs b/DS4Tool/Properties/AssemblyInfo.cs index 969bba1..dd423f8 100644 --- a/DS4Tool/Properties/AssemblyInfo.cs +++ b/DS4Tool/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // 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.0.5")] -[assembly: AssemblyFileVersion("1.4.0.5")] +[assembly: AssemblyVersion("1.4.0.55")] +[assembly: AssemblyFileVersion("1.4.0.55")] diff --git a/DS4Tool/ScpForm.Designer.cs b/DS4Tool/ScpForm.Designer.cs index f346ba1..2e1042a 100644 --- a/DS4Tool/ScpForm.Designer.cs +++ b/DS4Tool/ScpForm.Designer.cs @@ -47,6 +47,7 @@ this.editProfileForController3ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editProfileForController4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); @@ -148,10 +149,10 @@ // // 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.lvDebug.UseCompatibleStateImageBehavior = false; @@ -173,12 +174,12 @@ // // 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"; // // lBTest @@ -223,50 +224,57 @@ // // cMTaskbar // - resources.ApplyResources(this.cMTaskbar, "cMTaskbar"); this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editProfileForController1ToolStripMenuItem, this.editProfileForController2ToolStripMenuItem, this.editProfileForController3ToolStripMenuItem, this.editProfileForController4ToolStripMenuItem, this.toolStripSeparator1, + this.startToolStripMenuItem, this.openToolStripMenuItem, this.exitToolStripMenuItem}); this.cMTaskbar.Name = "cMTaskbar"; + resources.ApplyResources(this.cMTaskbar, "cMTaskbar"); this.cMTaskbar.Tag = "25"; // // 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 + // + this.startToolStripMenuItem.Name = "startToolStripMenuItem"; + resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); + this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); // // openToolStripMenuItem // @@ -276,14 +284,14 @@ // // 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 // @@ -292,20 +300,20 @@ // // 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.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged); // // tabControllers // - resources.ApplyResources(this.tabControllers, "tabControllers"); this.tabControllers.Controls.Add(this.tLPControllers); + resources.ApplyResources(this.tabControllers, "tabControllers"); this.tabControllers.Name = "tabControllers"; this.tabControllers.UseVisualStyleBackColor = true; // @@ -344,6 +352,8 @@ this.pBStatus1.InitialImage = global::ScpServer.Properties.Resources.BT; this.pBStatus1.Name = "pBStatus1"; this.pBStatus1.TabStop = false; + this.pBStatus1.Tag = "0"; + this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // lbPad1 // @@ -479,6 +489,8 @@ this.pBStatus2.InitialImage = global::ScpServer.Properties.Resources.BT; this.pBStatus2.Name = "pBStatus2"; this.pBStatus2.TabStop = false; + this.pBStatus2.Tag = "1"; + this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // pBStatus3 // @@ -486,6 +498,8 @@ this.pBStatus3.InitialImage = global::ScpServer.Properties.Resources.BT; this.pBStatus3.Name = "pBStatus3"; this.pBStatus3.TabStop = false; + this.pBStatus3.Tag = "2"; + this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // pBStatus4 // @@ -493,21 +507,23 @@ this.pBStatus4.InitialImage = global::ScpServer.Properties.Resources.BT; this.pBStatus4.Name = "pBStatus4"; this.pBStatus4.TabStop = false; + this.pBStatus4.Tag = "3"; + this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); // // 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.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"; @@ -517,7 +533,6 @@ // // cMProfile // - resources.ApplyResources(this.cMProfile, "cMProfile"); this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editToolStripMenuItem, this.assignToController1ToolStripMenuItem, @@ -530,6 +545,7 @@ this.importToolStripMenuItem, this.exportToolStripMenuItem}); this.cMProfile.Name = "cMProfile"; + resources.ApplyResources(this.cMProfile, "cMProfile"); // // editToolStripMenuItem // @@ -539,61 +555,60 @@ // // 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.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, @@ -602,54 +617,54 @@ this.tSBCancel, this.toolStripSeparator3, this.tSBKeepSize}); + resources.ApplyResources(this.tSOptions, "tSOptions"); this.tSOptions.Name = "tSOptions"; this.tSOptions.ShowItemToolTips = false; // // 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::ScpServer.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::ScpServer.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::ScpServer.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.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsBNewProfle, @@ -658,19 +673,20 @@ this.tSBDupProfile, this.tSBImportProfile, this.tSBExportProfile}); + resources.ApplyResources(this.toolStrip1, "toolStrip1"); this.toolStrip1.Name = "toolStrip1"; // // tsBNewProfle // - resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle"); this.tsBNewProfle.Image = global::ScpServer.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::ScpServer.Properties.Resources.edit; + resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile"); this.tsBEditProfile.Name = "tsBEditProfile"; this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click); // @@ -688,8 +704,8 @@ // // tSBImportProfile // - resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile"); this.tSBImportProfile.Image = global::ScpServer.Properties.Resources.import; + resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile"); this.tSBImportProfile.Name = "tSBImportProfile"; this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click); // @@ -707,8 +723,8 @@ // // tabSettings // - resources.ApplyResources(this.tabSettings, "tabSettings"); this.tabSettings.Controls.Add(this.flowLayoutPanel1); + resources.ApplyResources(this.tabSettings, "tabSettings"); this.tabSettings.Name = "tabSettings"; this.tabSettings.UseVisualStyleBackColor = true; // @@ -769,20 +785,20 @@ // // 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"; // // cBUpdateTime // - resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime"); this.cBUpdateTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBUpdateTime.FormattingEnabled = true; this.cBUpdateTime.Items.AddRange(new object[] { resources.GetString("cBUpdateTime.Items"), resources.GetString("cBUpdateTime.Items1")}); + resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime"); this.cBUpdateTime.Name = "cBUpdateTime"; this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged); // @@ -853,9 +869,9 @@ // // 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.tabLog.UseVisualStyleBackColor = true; // @@ -865,8 +881,8 @@ // // ScpForm // - 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); @@ -1004,6 +1020,7 @@ private System.Windows.Forms.CheckBox cBNotifications; private System.Windows.Forms.CheckBox cBDisconnectBT; private System.Windows.Forms.CheckBox cBSwipeProfiles; + private System.Windows.Forms.ToolStripMenuItem startToolStripMenuItem; //private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; } } diff --git a/DS4Tool/ScpForm.cs b/DS4Tool/ScpForm.cs index ff27bd0..0609d11 100644 --- a/DS4Tool/ScpForm.cs +++ b/DS4Tool/ScpForm.cs @@ -44,6 +44,7 @@ namespace ScpServer Options opt; private System.Drawing.Size oldsize; WinProgs WP; + ToolTip tt = new ToolTip(); protected void SetupArrays() { @@ -86,7 +87,6 @@ namespace ScpServer //CheckDrivers(); SystemEvents.PowerModeChanged += OnPowerChange; tSOptions.Visible = false; - ToolTip tt = new ToolTip(); if (File.Exists(appdatapath + "\\Profiles.xml")) tt.SetToolTip(linkUninstall, Properties.Resources.IfRemovingDS4Windows); tt.SetToolTip(cBSwipeProfiles, Properties.Resources.TwoFingerSwipe); @@ -229,6 +229,7 @@ namespace ScpServer ControllerStatusChanged(false); if (btnStartStop.Enabled) btnStartStop_Clicked(); + startToolStripMenuItem.Text = btnStartStop.Text; cBNotifications.Checked = Global.getNotifications(); cBSwipeProfiles.Checked = Global.getSwipeProfiles(); int checkwhen = Global.getCheckWhen(); @@ -266,11 +267,11 @@ namespace ScpServer linkUninstall.Visible = false; StartWindowsCheckBox.Checked = File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk"); } - + private void test_Tick(object sender, EventArgs e) { lBTest.Visible = true; - lBTest.Text = rootHub.DS4Controllers[0].Latency.ToString(); + lBTest.Text = rootHub.DS4Controllers[0].LeftHeavySlowRumble.ToString(); } void Hotkeys(object sender, EventArgs e) { @@ -580,6 +581,7 @@ namespace ScpServer hotkeystimer.Stop(); btnStartStop.Text = Properties.Resources.StartText; } + startToolStripMenuItem.Text = btnStartStop.Text; } protected void btnClear_Click(object sender, EventArgs e) { @@ -627,9 +629,9 @@ namespace ScpServer Pads[Index].Text = rootHub.getDS4MacAddress(Index); switch (rootHub.getDS4Status(Index)) { - case "USB": statPB[Index].Image = Properties.Resources.USB; break; - case "BT": statPB[Index].Image = Properties.Resources.BT; break; - default: statPB[Index].Image = Properties.Resources.none; break; + case "USB": statPB[Index].Image = Properties.Resources.USB; tt.SetToolTip(statPB[Index], ""); break; + case "BT": statPB[Index].Image = Properties.Resources.BT; tt.SetToolTip(statPB[Index], "Right click to disconnect"); break; + default: statPB[Index].Image = Properties.Resources.none; tt.SetToolTip(statPB[Index], ""); break; } Batteries[Index].Text = rootHub.getDS4Battery(Index); if (Pads[Index].Text != String.Empty) @@ -664,7 +666,13 @@ namespace ScpServer else notifyIcon1.Text = tooltip; } - + + private void pBStatus_MouseClick(object sender, MouseEventArgs e) + { + int i = Int32.Parse(((PictureBox)sender).Tag.ToString()); + if (e.Button == System.Windows.Forms.MouseButtons.Right && rootHub.getDS4Status(i) == "BT") + rootHub.DS4Controllers[i].DisconnectBT(); + } private void Enable_Controls(int device, bool on) { @@ -903,6 +911,7 @@ namespace ScpServer btnStartStop_Clicked(false); btnStartStop_Clicked(false); Global.Save(); + //if (MessageBox.Show("Restart DS4Windows?", "") == System.Windows.Forms.DialogResult.OK); } private void startMinimizedCheckBox_CheckedChanged(object sender, EventArgs e) @@ -965,8 +974,12 @@ namespace ScpServer { this.Show(); WindowState = FormWindowState.Normal; - } - + } + + private void startToolStripMenuItem_Click(object sender, EventArgs e) + { + btnStartStop_Clicked(); + } private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) { if (e.Button == System.Windows.Forms.MouseButtons.Left) @@ -1318,13 +1331,6 @@ namespace ScpServer { Global.setSwipeProfiles(cBSwipeProfiles.Checked); } - - private void toolStripButton1_Click(object sender, EventArgs e) - { - Global.saveColor(0, Global.loadColor(0).red, Global.loadColor(0).green, Global.loadColor(0).blue); - //Global.saveColor(0, 0, 122, 255); - //DS4LightBar.updateLightBar(rootHub.DS4Controllers[0], 0, rootHub.getDS4State(0), rootHub.ExposedState[0]); - } } public class ThemeUtil diff --git a/DS4Tool/ScpForm.fr-FR.resx b/DS4Tool/ScpForm.fr-FR.resx index 8ef295f..72abafe 100644 --- a/DS4Tool/ScpForm.fr-FR.resx +++ b/DS4Tool/ScpForm.fr-FR.resx @@ -145,6 +145,45 @@ Effacer + + 231, 22 + + + Éditer le Profil de la Manette 1 + + + 231, 22 + + + Éditer le Profil de la Manette 2 + + + 231, 22 + + + Éditer le Profil de la Manette 3 + + + 231, 22 + + + Éditer le Profil de la Manette 4 + + + 228, 6 + + + 231, 22 + + + Ouvrir + + + 231, 22 + + + Sortir (Souris du Milieu) + 232, 142 @@ -6320,84 +6359,6 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - 231, 22 - - - Éditer le Profil de la Manette 1 - - - 231, 22 - - - Éditer le Profil de la Manette 2 - - - 231, 22 - - - Éditer le Profil de la Manette 3 - - - 231, 22 - - - Éditer le Profil de la Manette 4 - - - 228, 6 - - - 231, 22 - - - Ouvrir - - - 231, 22 - - - Sortir (Souris du Milieu) - - - Manettes - - - 84, 22 - - - Nom de Profil: - - - 170, 25 - - - 123, 22 - - - Sauvegarder Profil - - - 69, 22 - - - Annuler - - - 297, 22 - - - Garder les dimensions de la fenĂªtre après fermeture - - - Profils - - - Profils Auto - - - Paramètres - iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH @@ -6739,6 +6700,36 @@ 403, 106 + + Manettes + + + 84, 22 + + + Nom de Profil: + + + 170, 25 + + + 123, 22 + + + Sauvegarder Profil + + + 69, 22 + + + Annuler + + + 297, 22 + + + Garder les dimensions de la fenĂªtre après fermeture + 75, 22 @@ -6810,6 +6801,12 @@ Exporter + + Profils + + + Profils Auto + 137, 17 @@ -6834,9 +6831,6 @@ VĂ©rifier les Mises Ă  Jour au DĂ©marrage - - 198, 22 - heures @@ -6855,6 +6849,9 @@ 85, 1 + + 198, 22 + 139, 17 @@ -6897,4 +6894,7 @@ Panneau de Configuration + + Paramètres + \ No newline at end of file diff --git a/DS4Tool/ScpForm.resx b/DS4Tool/ScpForm.resx index 3e9d0d4..189200d 100644 --- a/DS4Tool/ScpForm.resx +++ b/DS4Tool/ScpForm.resx @@ -117,1593 +117,285 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 891, 25 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 126, 0 - - - tLPControllers - - - Export Selected Profile - - - bnEditC1 - - - 0, 0 - - - - True - - - 106, 13 - - - 53 - - - 2 - - - Hide DS4 Controller - - - 43 - - - cMTaskbar - - - Scp server - - - tSBKeepSize - - - tLPControllers - - - Left + + Fill - - tabLog - - - None - - - 188, 22 - - - TopLeft - - - 897, 130 - - - 21, 15 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Edit - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 47, 22 - - - 0 - - - 119, 17 - - - 0 - - - 84 - - - lbPad2 - - - System.Windows.Forms.CheckBox, 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 - - - importToolStripMenuItem - - - 10, 125 - - - 42 - - - 116, 13 - - - None - - - pNUpdate - - - Save Profile - - - editProfileForController4ToolStripMenuItem - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 10 - - - Time - - - days - - - pBStatus4 - - - tLPControllers - - - 897, 359 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 97, 17 - - - pnlButton - - - 1 - - - Edit - - - 2 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tLPControllers - - - 856, 105 - - - 210, 22 - - - None - - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 739, 19 - - - tLPControllers - - - Dupliacate Selected Profile (Ctrl+C) - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 44 - - - Microsoft Sans Serif, 9pt, style=Bold - - - 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 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Left - - - tabControllers - - - tLPControllers - - - 905, 385 - - - 44, 20 - - - 6 - - - 44 - - - cBController4 - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - Left - - - 755, 9 - - - Keep this window size after closing - - - 1 - - - 425, 48 - - - tLPControllers - - - flowLayoutPanel1 - - - Hotkeys/About - - - Magenta - - - 840, 4 - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 745, 18 - - - None - - - 3 - - - Edit + + + Lucida Console, 9.75pt 3, 3 - - nUDUpdateTime + + 891, 330 - - 17 - - - 1 - - - tsBEditProfile - - - 3 - - - New Profile - - - 70, 13 - - - 3, 80 - - - assignToController3ToolStripMenuItem - - - Lucida Console, 9.75pt - - - 54 - - - Magenta - - - 4, 22 - - - 45 - - - tabAutoProfiles - - - 8 - - - 10 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAAgNJREFUOE+lkutLk2EYxvePhJaHShFBUTEPiCieQOmDiEZgrEbpYGiCQxkqA80I - RUkUEZ0YRMS+DDI70MkTmzJnDc8iU8QT2mAEItnle90wHwTDyBduXnie5/rd133Q4ZKfAJqHFs9E08A8 - zD1emDpmYXjqRlnTFIrMk8iuGkNaxWekGEaQrHecBfw+/vPXODw6hj9whN2fh/Bt/8LSRgA3cxr/DeBZ - 9kvmTNMoHGNbIrYN+3Aj23IxgJkpds0doP3VstgmsNexhutZ9QrAms8T0zYzU5xXM46kcjsmvfvoeL2i - AeoUgA07T8yaaZuZKab1rzN74jgys1YB2O2gmBZzH49LODXrrJlnzEzxe9cOLH1ziMioVgCOiuIFX0CE - Q+/WYf+yieiCFrRp9tkwxnP7Kt5MbKGm6wfC000KwDlTXNLgEvHMkh+Db32o7fYivtQm1l9+3IBOp5P7 - yjYPwlKNCsAluWudxgvtknb5t9oWcL/VLU2Mvd2JFq3uqs7vAtE/ceNayiMF4KiYMSjmY2O7B4Ua+NaD - YQGEJumRbvyG1IcfBHI12aAAXM8R57aIWTNrLLY4tfNPiCvpR1SeVeu6WWzHFD6THSDwFMDdpmUG62NJ - PKM4Or9ZxBxb8H8l7g5CEu8pAOfM3WanSeeS8CFHxW4zM2umbWamOCShXAH+/wNOANABIDUxWnDPAAAA - AElFTkSuQmCC - - - - 37, 23 - - - 1 - - - Left - - - NoControl - - - 2 - - - 623, 51 - - - 3, 3, 3, 3 - - - toolStripButton1 - - - 4 - - - Edit Selected Profile (Enter) - - - 10, 102 - - - flowLayoutPanel1 - - - 15 - - - 16 - - - tabMain - - - tSTBProfile - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tSBCancel - - - Log - - - 20 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Magenta - - - lBSelectedProfile - - - 46 - - - 42 - - - pBStatus2 - - - 40 - - - 6 - - - Edit - - - Edit Profile for Controller 1 - - - tabMain - - - toolStripLabel1 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tSBImportProfile - - - Left - - - tLPControllers - - - tLPControllers - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 214, 22 - - - True - - - 194, 17 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><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" /></Controls><Columns Styles="Percent,46.27451,Percent,28.23529,Percent,25.4902,AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0" /></TableLayoutSettings> - - - 51, 22 - - - tabSettings - - - bnEditC3 - - - 18 - - - 11 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Delete (Del) - - - Delete - - - exitToolStripMenuItem - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - None - - - NoControl - - - 11 - - - cBController2 - - - 19 - - - True - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - Delete Selected Profle (Delete) - - - 43 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 891, 303 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabMain - - - 43 - - - 96, 96 - - - 4, 9 - - - True - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 109, 15 - - - None - - - 617, 0 - - - tSBDupProfile - - - tSOptions - - - 0 - - - llbHelp - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tmrUpdate - - - 77, 22 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Import Profile or Profiles - - - True - - - pnlButton - - - TopDown - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Microsoft Sans Serif, 9pt - - - 623, 22 - - - pnlButton - - - 37, 23 - - - True - - - 42 - - - 188, 22 - - - tLPControllers - - - lbPad1 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Auto Profiles - - - tsBDeleteProfile - - - 63, 22 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DS4Windows - - - tabProfiles - - - Exit (Middle Mouse) - - - 0 - - - True - - - 4 - - - NoControl - - - 3 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 856, 47 - - - None - - - TopLeft - - - 39, 20 - - - lBStatus - - - tLPControllers - - - 739, 77 - - - System.Windows.Forms.TableLayoutPanel, 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 - - - Edit Profile for Controller 2 - - - 37, 23 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + 0 lvDebug - - linkSetup + + System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lBBattery - - - 43 - - - lBBatt4 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 215, 142 - - - 188, 22 - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Microsoft Sans Serif, 9pt, style=Bold - - - Controller/Driver Setup - - - Magenta - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 333 - - - XML Files (*.xml)|*.xml - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Bottom - - - 42 - - - lLBUpdate - - - flowLayoutPanel1 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 897, 359 - - - hideDS4CheckBox - - - 39, 20 - - - 3, 3, 3, 3 - - - flowLayoutPanel1 - - - Fill - - - Show Notifications - - - 100% - - - True - - - False - - - btnClear - - - tLPControllers - - - 13 - - - System.Windows.Forms.TabPage, 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 - - - 214, 22 - - - cBDisconnectBT - - - 4 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pNUpdate - - - flowLayoutPanel1 - - - 39, 20 - - - 189, 22 - - - 905, 415 - - - tsBNewProfle - - - 60, 21 - - - 189, 224 - - - Bottom, Right - - - tabProfiles - - - tabProfiles - - - False - - - $this - - - True - - - deleteToolStripMenuItem - - - None - - - 3, 3 - - - hours - - - flowLayoutPanel1 - - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 0 - - - 10, 209 - - - 211, 6 - - - 5 - - - 42 - - - AutoSize - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAANBJREFUOE+VkLEKwjAQhvOI7voIvoJdg2MmXV0ydCkuhu4ubtWK4KRTBbWO0i1y - Z09teiHxg5+UcPn6c0JrbbmIWGDYBe7yPI+T+ARAlISGy/Pdro9X/IaHxphP2lEergGQJAmbXisS7E43 - bLAqLjbdVDjsQpL26Ru3QdM88fQJAKXUVxJqMF0e7CTdo1hKiY8pHYEL1wCoHzWmJwg1GC9KO5xv7UAV - eP93A9oNnR2BmyzL2AajGdPAByyMgL/+BggKYAAI7sAHCXxECUIRQogXJZdgeVgrrjcAAAAASUVORK5C - YII= - - - - 9 - - - Left - - - Edit Profile for Controller 4 - - - 5 - - - cBUpdateTime - - - tLPControllers - - - 739, 48 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 53 - - - duplicateToolStripMenuItem - - - 78, 22 - - - Magenta - - - Fill - - - NoControl - - - tLPControllers - - - tabSettings - - - True - - - update Light - - - True - - - Disconnect from BT when Stopping - - + tabLog - - 4, 22 - - - 194, 17 - - - 47 - - - 1 - - - 188, 22 - - - openProfiles - - - Controllers - - - Profile Name: - - - 5 - - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 188, 22 - - - Run at Startup - - - 82, 22 - - - Profile folder - - - Microsoft Sans Serif, 9.75pt - - - 3, 3, 3, 3 - - - 67, 13 - - - 39, 20 - - - linkUninstall - - - pBStatus1 - - - 11 - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAASlJREFUOE9jGFzgYnr0/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== - - - - 95, 17 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - chTime - - - tabProfiles - - - 14 - - - None - - - Left - - - 52 - - - True - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 79, 13 - - - cBUpdate - - - 39, 15 - - - flowLayoutPanel1 - - - Edit - - - 7 - - - 44 - - - 856, 18 - - - 10 - - - 100% - - - 3, 3 - - - 46 - - - pNUpdate - - - True - - - pnlButton - - - 63, 22 - - - 10, 79 - - - 39, 15 - - - Microsoft Sans Serif, 9pt - - - 16 - - - 891, 23 - - - 45 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 100% - - - 10, 196 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tLPControllers - - - 12 - - - editProfileForController2ToolStripMenuItem - - - cBController3 - - - Microsoft Sans Serif, 9pt - - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - 47, 15 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 0 - - Left + + Time - - Settings - - - StartWindowsCheckBox - - - flowLayoutPanel1 - - - startMinimizedCheckBox - - - Open - - - 100% - - - Export - - - Used to test values - - - 3, 22 - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TopLeft - - - tLPControllers - - - openToolStripMenuItem - - - 0 - - - 10, 235 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Swipe Touchpad to change profiles - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - - - - 98, 13 - - - Segoe UI, 9pt, style=Bold - - - 214, 22 - - - Bottom, Right - - - True - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Magenta + + 167 Data - + + 84 + + + 17, 17 + + + lBTest + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + 0 + + btnStartStop + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + + 1 + + + lbLastMessage + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + + 2 + + + llbHelp + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + 3 - - 44 + + Bottom - - toolStrip1 + + 0, 385 - - 70, 15 + + 905, 30 - - 43 + + 10 - - Left + + pnlButton - - None + + 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 + + $this - - 2 + + 3 - - flowLayoutPanel1 + + Bottom, Right - - assignToController1ToolStripMenuItem - - - Selected Profile - - + True - + + 651, 9 + + + 98, 13 + + + 46 + + + Used to test values + + False - - - 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 - 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - + + lBTest - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 740, 0 + + pnlButton - - 440, 231 + + 0 - - Top + + Bottom, Right - - Edit Profile for Controller 3 + + 840, 4 - - cBSwipeProfiles + + 58, 23 + + + 1 + + + Start + + + btnStartStop + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + + 1 + + + Bottom, Left, Right + + + 4, 9 + + + 745, 18 + + + 41 + + + lbLastMessage + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + + 2 + + + Bottom, Right + + + True + + + 755, 9 + + + 79, 13 + + + 13 + + + Hotkeys/About + + + llbHelp + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlButton + + + 3 + + + Bottom + + + False + + + 3, 333 + + + 891, 23 + + + 9 + + + Clear + + + btnClear + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabLog + + + 1 + + + 226, 17 + + + Scp server + + + 339, 17 + + + 215, 164 + + + cMTaskbar System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - flowLayoutPanel1 - - - True - - - 10, 248 - - - DS4 Xinput Tool - - - System.Windows.Forms.NotifyIcon, 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 - AAABAAYAEBAAAAAAIABoBAAAZgAAACAgAAAAACAAqBAAAM4EAAAwMAAAAAAgAKglAAB2FQAAQEAAAAAA @@ -7876,167 +6568,757 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - 21 + + DS4 Xinput Tool - - 0 - - - 425, 77 - - - 739, 106 - - - AutoSize - - - 651, 9 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - AutoSize - - - 167 - - - Microsoft Sans Serif, 9pt - - - 58, 23 - - - 891, 25 - - - lBProfiles - - - Make a New Profile - - - lBCheckEvery - - - System.Windows.Forms.TabPage, 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 - - - 10, 153 - - - 44 - - - System.Windows.Forms.ToolStripButton, 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 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Import - - - 115, 13 - - - Bottom, Left, Right - - - 8 - - - 10, 33 - - - cMProfile - - - Microsoft Sans Serif, 9pt, style=Bold - - - 9 - - - 150, 25 - - - 5 - - - Start - - - tLPControllers - - - flowLayoutPanel1 - - + True - - MiddleCenter + + 214, 22 - - 3 + + Edit Profile for Controller 1 - - newProfileToolStripMenuItem + + 214, 22 - - Left + + Edit Profile for Controller 2 - + + 214, 22 + + + Edit Profile for Controller 3 + + + 214, 22 + + + Edit Profile for Controller 4 + + 211, 6 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 22 - - Bottom, Right - - - lBBatt1 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Start Segoe UI, 9pt, style=Bold - - 4, 22 + + 214, 22 - - lBID + + Open - - notifyIcon1 + + 214, 22 + + + Exit (Middle Mouse) + + + 211, 6 + + + 449, 17 + + + XML Files (*.xml)|*.xml + + + 5 + + + None + + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + 425, 19 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 0 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + 3, 22 + + + 111, 15 + + + 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 + + + 1 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + 3, 51 + + + 70, 15 + + + 44 + + + Controller 2 + + + lbPad2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 2 + + + Left + + + 856, 76 + + + 37, 23 + + + 43 + + + Edit + + + bnEditC3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 3 + + + Left + + + 856, 105 + + + 37, 23 + + + 43 + + + Edit + + + bnEditC4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 4 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + 3, 80 + + + 70, 15 + + + 44 + + + Controller 3 + + + lbPad3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 5 + + + Left + + + True + + + Microsoft Sans Serif, 9pt + + + 3, 109 + + + 70, 15 + + + 44 + + + Controller 4 + + + lbPad4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 6 + + + None + + + 739, 19 + + + 111, 21 + + + 42 + + + cBController1 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 7 + + + Left + + + 856, 47 + + + 37, 23 + + + 43 + + + Edit + + + bnEditC2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 8 + + + None + + + 739, 48 + + + 111, 21 + + + 42 + + + cBController2 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 9 + + + None + + + 739, 77 + + + 111, 21 + + + 42 + + + cBController3 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 10 + + + Left + + + 856, 18 + + + 37, 23 + + + 43 + + + Edit + + + bnEditC1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 11 + + + None + + + 739, 106 + + + 111, 21 + + + 42 + + + cBController4 + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 12 + + + None + + + True Microsoft Sans Serif, 9pt, style=Bold - - 3, 28 + + 740, 0 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 109, 15 - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45 - - 188, 22 + + Selected Profile + + + lBSelectedProfile + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 13 + + + Left + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + 3, 0 + + + 21, 15 + + + 45 + + + ID + + + lBID + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 14 + + + None + + + True + + + Microsoft Sans Serif, 9pt, style=Bold + + + 421, 0 + + + 47, 15 + + + 45 + + + Status + + + lBStatus + + + 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 + + + 617, 0 + + + 51, 15 + + + 45 + + + Battery + + + lBBattery + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 16 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + 623, 22 + + + 39, 15 + + + 44 + + + 100% + + + lBBatt1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 17 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + 623, 51 + + + 39, 15 + + + 44 + + + 100% + + + lBBatt2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 18 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + 623, 80 + + + 39, 15 + + + 44 + + + 100% + + + lBBatt3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 19 + + + None + + + True + + + Microsoft Sans Serif, 9pt + + + 623, 109 + + + 39, 15 + + + 44 + + + 100% + + + lBBatt4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers + + + 20 + + + None @@ -8094,692 +7376,1684 @@ 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== - - 111, 21 + + 425, 48 - - 2 + + 39, 20 - - 39, 15 + + AutoSize - - 897, 359 + + 47 - - XML Files (*.xml)|*.xml + + pBStatus2 - - 39, 15 - - + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 51 + + tLPControllers - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 21 - - Microsoft Sans Serif, 9pt + + None - - 214, 22 + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + 425, 77 + + + 39, 20 + + + AutoSize + + + 47 pBStatus3 - - Controller 4 + + System.Windows.Forms.PictureBox, 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 + + tLPControllers - - 111, 21 + + 22 - - 60, 22 + + None - - $this + + + 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 + 1WDefQHxFbbcLCQjmgAAAABJRU5ErkJggg== + + + + 425, 106 + + + 39, 20 + + + AutoSize + + + 47 + + + pBStatus4 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tLPControllers 23 - - 43 - - - lbLastMessage - - - 44 - - - lbPad4 - - - True - - - None - - - Control Panel - - - 188, 22 - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 897, 359 - - - None - - - 164, 17 + + Top 0, 0 - - Assign to Controller 2 + + 5 - - System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 897, 130 - - 6, 25 + + 46 + + + tLPControllers + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControllers + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><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" /></Controls><Columns Styles="Percent,46.27451,Percent,28.23529,Percent,25.4902,AutoSize,0,AutoSize,0" /><Rows Styles="AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0,AutoSize,0" /></TableLayoutSettings> + + + 4, 22 + + + 897, 359 + + + 3 + + + Controllers + + + tabControllers + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 0 + + + 891, 17 + + + 568, 17 + + + lBProfiles + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles 0 - - 188, 22 + + tSOptions - - lBTest + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7, 7, 0, 9 + + tabProfiles - - flowLayoutPanel1 + + 1 - - Export + + toolStrip1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - editProfileForController3ToolStripMenuItem + + tabProfiles - - Controller 3 - - - lBBatt2 - - - 44 - - - tSBSaveProfile - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - assignToController2ToolStripMenuItem - - - flowLayoutPanel1 - - + 2 - - 51, 15 + + 4, 22 + + + 3, 3, 3, 3 + + + 897, 359 + + + 0 Profiles - - NoControl + + tabProfiles - - NoControl - - - 70, 15 - - - MiddleCenter - - - lBBatt3 - - - 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 - - - 111, 15 - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - cBController1 - - - 623, 80 - - - 425, 19 - - - 1 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tabMain - - Battery + + 1 - - bnEditC4 + + 4, 22 - - 41 + + 897, 359 - - NoControl + + 2 + + + Auto Profiles + + + tabAutoProfiles + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 2 + + + flowLayoutPanel1 + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabSettings + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 897, 359 + + + 4 + + + Settings + + + tabSettings + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 3 + + + 4, 22 + + + 3, 3, 3, 3 + + + 897, 359 + + + 1 + + + Log + + + tabLog + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabMain + + + 4 + + + Fill + + + 0, 0 + + + 905, 385 + + + 12 + + + tabMain + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + 788, 17 + + + 189, 224 + + + cMProfile + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + Microsoft Sans Serif, 9.75pt + + + 16 + + + 3, 53 + + + 891, 303 + + + 0 + + + lBProfiles + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 0 + + + Segoe UI, 9pt, style=Bold + + + 188, 22 + + + Edit + + + 188, 22 + + + Assign to Controller 1 + + + 188, 22 + + + Assign to Controller 2 + + + 188, 22 + + + Assign to Controller 3 + + + 188, 22 + + + Assign to Controller 4 + + + 188, 22 + + + Delete (Del) + + + 188, 22 + + + Duplicate (Ctrl+C) + + + 188, 22 + + + New Profile 188, 22 - + + Import + + + 188, 22 + + + Export + + + 891, 17 + + + 3, 28 + + + 891, 25 + + + 2 + + + toolStrip2 + + + tSOptions + + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 1 + + + 82, 22 + + + Profile Name: + + + 150, 25 + + + <type profile name here> + + + Magenta + + + 88, 22 + + + Save Profile + + + Magenta + + + 63, 22 + + + Cancel + + + 6, 25 + + + Magenta + + + 210, 22 + + + Keep this window size after closing + + + 568, 17 + + + 3, 3 + + + 891, 25 + + + 1 + + + toolStrip1 + + + toolStrip1 + + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabProfiles + + + 2 + + + Magenta + + + 51, 22 + + + New + + + TopLeft + + + Make a New Profile + + + Magenta + + + 47, 22 + + + Edit + + + TopLeft + + + Edit Selected Profile (Enter) + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEpSURBVDhPYxhc4GJ69P+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 + + + 60, 22 + + + Delete + + + TopLeft + + + Delete Selected Profle (Delete) + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADQSURBVDhPlZCxCsIwEIbziO76CL6CXYNjJl1dMnQpLobu + Lm7ViuCkUwW1jtItcmdPbXoh8YOflHD5+nNCa225iFhg2AXu8jyPk/gEQJSEhsvz3a6PV/yGh8aYT9pR + Hq4BkCQJm14rEuxON2ywKi423VQ47EKS9ukbt0HTPPH0CQCl1FcSajBdHuwk3aNYSomPKR2BC9cAqB81 + picINRgvSjucb+1AFXj/dwPaDZ0dgZssy9gGoxnTwAcsjIC//gYICmAACO7ABwl8RAlCEUKIFyWXYHlY + K643AAAAAElFTkSuQmCC + + + + Magenta + + + 77, 22 + + + Duplicate + + + TopLeft + + + Dupliacate Selected Profile (Ctrl+C) + + + Magenta + + + 63, 22 + + + Import + + + Import Profile or Profiles + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAG7SURBVDhPjZNNSwJRFIbd9AVFLfoV/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 + + + 60, 22 + + + Export + + + Export Selected Profile + + + True + + + hideDS4CheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 0 + + + cBSwipeProfiles + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 1 + + + StartWindowsCheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 2 + + + startMinimizedCheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 3 + + + cBUpdate + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 4 + + + pNUpdate + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 5 + + + cBNotifications + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 6 + + + cBDisconnectBT + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 7 + + + linkProfiles + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 8 + + + lLBUpdate + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 9 + + + linkSetup + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 10 + + + linkUninstall + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 11 + + + lnkControllers + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 12 + + + Fill + + + TopDown + + + 3, 3 + + + 7, 7, 0, 9 + + + 891, 353 + + + 0 + + + flowLayoutPanel1 + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabSettings + + + 0 + + + True + + + NoControl + + + 10, 10 + + + 119, 17 + + + 13 + + + Hide DS4 Controller + + + hideDS4CheckBox + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 0 + + + True + + + NoControl + + + 10, 33 + + + 194, 17 + + + 54 + + + Swipe Touchpad to change profiles + + + cBSwipeProfiles + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + 1 True - - 111, 21 - - - 76, 1 - - - tabMain - - - toolStripSeparator2 - - - 188, 22 - - - 4 - - + NoControl - - ID - - - tLPControllers - - - chData - - - 45 - - - Microsoft Sans Serif, 9pt - - - 9 - - - toolStripSeparator3 - - - 10, 222 - - - Clear - - - 49 - - - exportToolStripMenuItem - - - Left - - - Assign to Controller 4 - - - bnEditC2 - - - tabMain - - - tLPControllers - - - Magenta - - - Microsoft Sans Serif, 9pt - - - Bottom - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Microsoft Sans Serif, 9pt - - - editProfileForController1ToolStripMenuItem - - - 2 - - - 214, 22 - - - lnkControllers - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 109 - - - Duplicate - - - 50 - - - btnStartStop - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - 10, 56 - - lbPad3 + + 95, 17 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 40 - - Fill + + Run at Startup - - assignToController4ToolStripMenuItem + + StartWindowsCheckBox - - 856, 76 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 385 + + flowLayoutPanel1 - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 10, 10 - - - 891, 330 - - - 60, 22 - - - Status - - - Edit - - - 51 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True NoControl - - 425, 106 + + 10, 79 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Import - - - None - - - 70, 15 - - - toolStrip1 - - - 1 - - - 897, 359 - - - Magenta - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 13 - - - 214, 22 - - - Assign to Controller 3 - - - 7 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ScpForm - - - 4, 22 - - - toolStripSeparator1 - - - tLPControllers - - - pnlButton - - - toolStrip2 - - - 47 - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MA:C1:23:45:67:89 - - - True - - - True - - - 12 - - - 623, 109 - - - linkProfiles - - - TopLeft - - - 37, 23 - - - AutoSize - - - saveProfiles - - - 44 - - - tabControllers - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Magenta - - - <type profile name here> - - - None - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 0 - - - 22 - - - Fill - - - 13 - - - New - - - 65, 13 - - - tLPControllers - - - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAAbtJREFUOE+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 - + + 97, 17 40 - - tLPControllers - - - Check every - - - 111, 21 - - - cBNotifications - - - 905, 30 - - - 0 - - - tabLog - - - 45 - - - editToolStripMenuItem - - - 891, 353 - - - Cancel - - - 4, 22 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - Duplicate (Ctrl+C) - - - Check for Updates at Startup - - - 44 - - - tLPControllers - - - 47 - Start Minimized - - 10, 176 + + startMinimizedCheckBox - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Assign to Controller 1 + + flowLayoutPanel1 - - pNUpdate + + 3 - - tLPControllers - - - 88, 22 - - + True - - 3, 3 + + NoControl + + + 10, 102 + + + 164, 17 41 - - Uninstall VBus Driver + + Check for Updates at Startup + + + cBUpdate + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 4 + + + cBUpdateTime + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 0 + + + lBCheckEvery + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 1 + + + nUDUpdateTime + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 2 + + + False + + + 10, 125 + + + 189, 22 + + + 43 + + + pNUpdate + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 5 + + + hours + + + days + + + 126, 0 + + + 60, 21 + + + 43 + + + cBUpdateTime + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 0 + + + Left + + + True + + + NoControl + + + 3, 3 + + + 67, 13 + + + 0 + + + Check every + + + lBCheckEvery + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 1 + + + Left + + + 76, 1 + + + 44, 20 + + + 42 + + + nUDUpdateTime + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pNUpdate + + + 2 + + + True + + + NoControl + + + 10, 153 114, 17 - - 47 + + 51 - + + Show Notifications + + + cBNotifications + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + flowLayoutPanel1 - - Controller 2 + + 6 - - 421, 0 - - - Magenta - - - 788, 17 - - - 339, 17 - - + True - - - 449, 17 - - - 891, 17 - - - 17, 17 - - - 226, 17 - + + + NoControl + + + 10, 176 + + + 194, 17 + + + 53 + + + Disconnect from BT when Stopping + + + cBDisconnectBT + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 7 + + + NoControl + + + 10, 196 + + + 65, 13 + + + 50 + + + Profile folder + + + linkProfiles + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 8 + + + NoControl + + + 10, 209 + + + 116, 13 + + + 49 + + + Check for Update Now + + + MiddleCenter + + + lLBUpdate + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 9 + + + NoControl + + + 10, 222 + + + 115, 13 + + + 52 + + + Controller/Driver Setup + + + linkSetup + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 10 + + + NoControl + + + 10, 235 + + + 106, 13 + + + 44 + + + Uninstall VBus Driver + + + MiddleCenter + + + linkUninstall + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 11 + + + NoControl + + + 10, 248 + + + 70, 13 + + + 11 + + + Control Panel + + + lnkControllers + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flowLayoutPanel1 + + + 12 + 673, 17 - - fr-FR - - - 568, 17 + + XML Files (*.xml)|*.xml + + + True + + 96, 96 + + + 905, 415 + + + 440, 231 + + + DS4Windows + + + chTime + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + chData + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tmrUpdate + + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + notifyIcon1 + + + System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController1ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController2ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController3ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editProfileForController4ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator1 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + startToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + exitToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator2 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + openProfiles + + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + editToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController1ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController2ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController3ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + assignToController4ToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + deleteToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + duplicateToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + newProfileToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + importToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + exportToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripLabel1 + + + System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSTBProfile + + + System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBSaveProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBCancel + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripSeparator3 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBKeepSize + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBNewProfle + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBEditProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsBDeleteProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBDupProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBImportProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tSBExportProfile + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + saveProfiles + + + System.Windows.Forms.SaveFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ScpForm + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file