Version 1.4.245

Fix settings tab text being blank after clicking controller/driver setup
Check if .Net 4.5 or higher is installed at the start.
Fix crash with certain macro
Option to disable flashing light when controller latency is over 10ms
Special Action Program: Added Arguments/Command Line and hold trigger
for x seconds to launch program
Bug fixes
This commit is contained in:
jays2kings 2015-03-15 14:16:01 -04:00
parent e5a26eed47
commit 3da12e5048
16 changed files with 9843 additions and 2901 deletions

6
App.config Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>

View File

@ -510,11 +510,14 @@ namespace DS4Windows
{ {
lag[ind] = true; lag[ind] = true;
LogDebug(Properties.Resources.LatencyOverTen.Replace("*number*", (ind + 1).ToString()), true); LogDebug(Properties.Resources.LatencyOverTen.Replace("*number*", (ind + 1).ToString()), true);
if (Global.FlashWhenLate)
{
DS4Color color = new DS4Color { red = 50, green = 0, blue = 0 }; DS4Color color = new DS4Color { red = 50, green = 0, blue = 0 };
DS4LightBar.forcedColor[ind] = color; DS4LightBar.forcedColor[ind] = color;
DS4LightBar.forcedFlash[ind] = 2; DS4LightBar.forcedFlash[ind] = 2;
DS4LightBar.forcelight[ind] = true; DS4LightBar.forcelight[ind] = true;
} }
}
else else
{ {
lag[ind] = false; lag[ind] = false;
@ -767,7 +770,7 @@ namespace DS4Windows
public virtual void StartTPOff(int deviceID) public virtual void StartTPOff(int deviceID)
{ {
if (deviceID > 4) if (deviceID < 4)
{ {
oldtouchvalue[deviceID] = Global.TouchSensitivity[deviceID]; oldtouchvalue[deviceID] = Global.TouchSensitivity[deviceID];
oldscrollvalue[deviceID] = Global.ScrollSensitivity[deviceID]; oldscrollvalue[deviceID] = Global.ScrollSensitivity[deviceID];

View File

@ -1200,7 +1200,7 @@ namespace DS4Windows
if (!(action.name == "null" || index < 0)) if (!(action.name == "null" || index < 0))
{ {
bool triggeractivated = true; bool triggeractivated = true;
if ((action.type == "DisconnectBT" && double.Parse(action.details) > 0) || (action.type == "BatteryCheck" && double.Parse(action.details.Split(',')[0]) > 0)) if (action.delayTime > 0)
{ {
triggeractivated = false; triggeractivated = false;
bool subtriggeractivated = true; bool subtriggeractivated = true;
@ -1214,10 +1214,7 @@ namespace DS4Windows
} }
if (subtriggeractivated) if (subtriggeractivated)
{ {
if (action.type == "DisconnectBT") time = action.delayTime;
time = double.Parse(action.details);
else
time = double.Parse(action.details.Split(',')[0]);
nowAction[device] = DateTime.UtcNow; nowAction[device] = DateTime.UtcNow;
if (nowAction[device] >= oldnowAction[device] + TimeSpan.FromSeconds(time)) if (nowAction[device] >= oldnowAction[device] + TimeSpan.FromSeconds(time))
triggeractivated = true; triggeractivated = true;
@ -1293,6 +1290,9 @@ namespace DS4Windows
if (!actionDone[device, index]) if (!actionDone[device, index])
{ {
actionDone[device, index] = true; actionDone[device, index] = true;
if (!string.IsNullOrEmpty(action.extra))
Process.Start(action.details, action.extra);
else
Process.Start(action.details); Process.Start(action.details);
} }
} }
@ -1620,14 +1620,14 @@ namespace DS4Windows
else if (i == 275) macroControl[14] = false; else if (i == 275) macroControl[14] = false;
else if (i == 276) macroControl[15] = false; else if (i == 276) macroControl[15] = false;
else if (i == 277) macroControl[16] = false; else if (i == 277) macroControl[16] = false;
else if (keys[i] == 278) macroControl[17] = false; else if (i == 278) macroControl[17] = false;
else if (keys[i] == 279) macroControl[18] = false; else if (i == 279) macroControl[18] = false;
else if (keys[i] == 280) macroControl[19] = false; else if (i == 280) macroControl[19] = false;
else if (keys[i] == 281) macroControl[20] = false; else if (i == 281) macroControl[20] = false;
else if (keys[i] == 282) macroControl[21] = false; else if (i == 282) macroControl[21] = false;
else if (keys[i] == 283) macroControl[22] = false; else if (i == 283) macroControl[22] = false;
else if (keys[i] == 284) macroControl[23] = false; else if (i == 284) macroControl[23] = false;
else if (keys[i] == 285) macroControl[24] = false; else if (i == 285) macroControl[24] = false;
else if (keyType.HasFlag(DS4KeyType.ScanCode)) else if (keyType.HasFlag(DS4KeyType.ScanCode))
InputMethods.performSCKeyRelease(i); InputMethods.performSCKeyRelease(i);
else else

View File

@ -202,6 +202,11 @@ namespace DS4Windows
set { m_Config.downloadLang = value; } set { m_Config.downloadLang = value; }
get { return m_Config.downloadLang; } get { return m_Config.downloadLang; }
} }
public static bool FlashWhenLate
{
set { m_Config.flashWhenLate = value; }
get { return m_Config.flashWhenLate; }
}
//controller/profile specfic values //controller/profile specfic values
public static int[] ButtonMouseSensitivity public static int[] ButtonMouseSensitivity
@ -354,12 +359,12 @@ namespace DS4Windows
} }
public static List<String>[] ProfileActions public static List<String>[] ProfileActions
{ {
get{ return m_Config.profileActions;} get { return m_Config.profileActions; }
} }
public static void SaveAction(string name, string controls, int mode, string details, bool edit, string ucontrols = "") public static void SaveAction(string name, string controls, int mode, string details, bool edit, string extras = "")
{ {
m_Config.SaveAction(name, controls, mode, details, edit, ucontrols); m_Config.SaveAction(name, controls, mode, details, edit, extras);
} }
public static void RemoveAction(string name) public static void RemoveAction(string name)
@ -694,6 +699,7 @@ namespace DS4Windows
public Dictionary<DS4Controls, String>[] shiftCustomMapExtras = { null, null, null, null, null }; public Dictionary<DS4Controls, String>[] shiftCustomMapExtras = { null, null, null, null, null };
public List<String>[] profileActions = { null, null, null, null, null }; public List<String>[] profileActions = { null, null, null, null, null };
public bool downloadLang = true; public bool downloadLang = true;
public bool flashWhenLate = true;
public BackingStore() public BackingStore()
{ {
for (int i = 0; i < 5; i++) for (int i = 0; i < 5; i++)
@ -1261,6 +1267,11 @@ namespace DS4Windows
rootname = "ScpControl"; rootname = "ScpControl";
missingSetting = true; missingSetting = true;
} }
if (device < 4)
{
DS4LightBar.forcelight[device] = false;
DS4LightBar.forcedFlash[device] = 0;
}
try { Item = m_Xdoc.SelectSingleNode("/"+ rootname + "/flushHIDQueue"); Boolean.TryParse(Item.InnerText, out flushHIDQueue[device]); } try { Item = m_Xdoc.SelectSingleNode("/"+ rootname + "/flushHIDQueue"); Boolean.TryParse(Item.InnerText, out flushHIDQueue[device]); }
catch { missingSetting = true; }//rootname = } catch { missingSetting = true; }//rootname = }
@ -1724,6 +1735,8 @@ namespace DS4Windows
catch { missingSetting = true; } catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/DownloadLang"); Boolean.TryParse(Item.InnerText, out downloadLang); } try { Item = m_Xdoc.SelectSingleNode("/Profile/DownloadLang"); Boolean.TryParse(Item.InnerText, out downloadLang); }
catch { missingSetting = true; } catch { missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/Profile/FlashWhenLate"); Boolean.TryParse(Item.InnerText, out flashWhenLate); }
catch { missingSetting = true; }
} }
} }
catch { } catch { }
@ -1771,6 +1784,8 @@ namespace DS4Windows
XmlNode xmlFirstXinputPort = m_Xdoc.CreateNode(XmlNodeType.Element, "FirstXinputPort", null); xmlFirstXinputPort.InnerText = firstXinputPort.ToString(); Node.AppendChild(xmlFirstXinputPort); XmlNode xmlFirstXinputPort = m_Xdoc.CreateNode(XmlNodeType.Element, "FirstXinputPort", null); xmlFirstXinputPort.InnerText = firstXinputPort.ToString(); Node.AppendChild(xmlFirstXinputPort);
XmlNode xmlCloseMini = m_Xdoc.CreateNode(XmlNodeType.Element, "CloseMinimizes", null); xmlCloseMini.InnerText = closeMini.ToString(); Node.AppendChild(xmlCloseMini); XmlNode xmlCloseMini = m_Xdoc.CreateNode(XmlNodeType.Element, "CloseMinimizes", null); xmlCloseMini.InnerText = closeMini.ToString(); Node.AppendChild(xmlCloseMini);
XmlNode xmlDownloadLang = m_Xdoc.CreateNode(XmlNodeType.Element, "DownloadLang", null); xmlDownloadLang.InnerText = downloadLang.ToString(); Node.AppendChild(xmlDownloadLang); XmlNode xmlDownloadLang = m_Xdoc.CreateNode(XmlNodeType.Element, "DownloadLang", null); xmlDownloadLang.InnerText = downloadLang.ToString(); Node.AppendChild(xmlDownloadLang);
XmlNode xmlFlashWhenLate = m_Xdoc.CreateNode(XmlNodeType.Element, "FlashWhenLate", null); xmlFlashWhenLate.InnerText = flashWhenLate.ToString(); Node.AppendChild(xmlFlashWhenLate);
m_Xdoc.AppendChild(Node); m_Xdoc.AppendChild(Node);
try { m_Xdoc.Save(m_Profile); } try { m_Xdoc.Save(m_Profile); }
@ -1825,7 +1840,9 @@ namespace DS4Windows
break; break;
case 2: case 2:
el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Program"; el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Program";
el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details; el.AppendChild(m_Xdoc.CreateElement("Details")).InnerText = details.Split('?')[0];
el.AppendChild(m_Xdoc.CreateElement("Arguements")).InnerText = extras;
el.AppendChild(m_Xdoc.CreateElement("Delay")).InnerText = details.Split('?')[1];
break; break;
case 3: case 3:
el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Profile"; el.AppendChild(m_Xdoc.CreateElement("Type")).InnerText = "Profile";
@ -1900,13 +1917,13 @@ namespace DS4Windows
if (type == "Profile") if (type == "Profile")
{ {
extras = x.ChildNodes[3].InnerText; extras = x.ChildNodes[3].InnerText;
actions.Add(new SpecialAction(name, controls, type, details, extras)); actions.Add(new SpecialAction(name, controls, type, details, 0, extras));
} }
else if (type == "Macro") else if (type == "Macro")
{ {
if (x.ChildNodes[3] != null) extras = x.ChildNodes[3].InnerText; if (x.ChildNodes[3] != null) extras = x.ChildNodes[3].InnerText;
else extras = string.Empty; else extras = string.Empty;
actions.Add(new SpecialAction(name, controls, type, details, extras)); actions.Add(new SpecialAction(name, controls, type, details, 0, extras));
} }
else if (type == "Key") else if (type == "Key")
{ {
@ -1921,13 +1938,43 @@ namespace DS4Windows
extras2 = string.Empty; extras2 = string.Empty;
} }
if (!string.IsNullOrEmpty(extras)) if (!string.IsNullOrEmpty(extras))
actions.Add(new SpecialAction(name, controls, type, details, extras2 + '\n' + extras)); actions.Add(new SpecialAction(name, controls, type, details, 0, extras2 + '\n' + extras));
else else
actions.Add(new SpecialAction(name, controls, type, details)); actions.Add(new SpecialAction(name, controls, type, details));
} }
else if (type == "DisconnectBT")
{
double doub;
if (double.TryParse(details, out doub))
actions.Add(new SpecialAction(name, controls, type, "", doub));
else
actions.Add(new SpecialAction(name, controls, type, ""));
}
else if (type == "BatteryCheck")
{
double doub;
if (double.TryParse(details.Split(',')[0], out doub))
actions.Add(new SpecialAction(name, controls, type, details, doub));
else else
actions.Add(new SpecialAction(name, controls, type, details)); actions.Add(new SpecialAction(name, controls, type, details));
} }
else if (type == "Program")
{
double doub;
if (x.ChildNodes[3] != null)
{
extras = x.ChildNodes[3].InnerText;
if (double.TryParse(x.ChildNodes[4].InnerText, out doub))
actions.Add(new SpecialAction(name, controls, type, details, doub, extras));
else
actions.Add(new SpecialAction(name, controls, type, details, 0, extras));
}
else
{
actions.Add(new SpecialAction(name, controls, type, details));
}
}
}
} }
catch { saved = false; } catch { saved = false; }
return saved; return saved;
@ -1944,13 +1991,16 @@ namespace DS4Windows
public string details; public string details;
public List<DS4Controls> uTrigger = new List<DS4Controls>(); public List<DS4Controls> uTrigger = new List<DS4Controls>();
public string ucontrols; public string ucontrols;
public double delayTime = 0;
public string extra;
public bool pressRelease = false; public bool pressRelease = false;
public DS4KeyType keyType; public DS4KeyType keyType;
public SpecialAction(string name, string controls, string type, string details, string extras = "") public SpecialAction(string name, string controls, string type, string details, double delay = 0, string extras = "")
{ {
this.name = name; this.name = name;
this.type = type; this.type = type;
this.controls = controls; this.controls = controls;
delayTime = delay;
string[] ctrls = controls.Split('/'); string[] ctrls = controls.Split('/');
foreach (string s in ctrls) foreach (string s in ctrls)
trigger.Add(getDS4ControlsByName(s)); trigger.Add(getDS4ControlsByName(s));
@ -1981,6 +2031,12 @@ namespace DS4Windows
if (details.Contains("Scan Code")) if (details.Contains("Scan Code"))
keyType |= DS4KeyType.ScanCode; keyType |= DS4KeyType.ScanCode;
} }
else if (type == "Program")
{
this.details = details;
if (extras != string.Empty)
extra = extras;
}
else else
this.details = details; this.details = details;

View File

@ -442,6 +442,9 @@
<EmbeddedResource Include="DS4Windows\WinProgs.ru-RU.resx"> <EmbeddedResource Include="DS4Windows\WinProgs.ru-RU.resx">
<DependentUpon>WinProgs.cs</DependentUpon> <DependentUpon>WinProgs.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<None Include="DS4Windows\app.config" /> <None Include="DS4Windows\app.config" />
<None Include="DS4Windows\DS4Tool_TemporaryKey.pfx" /> <None Include="DS4Windows\DS4Tool_TemporaryKey.pfx" />
<None Include="Properties\Settings.settings"> <None Include="Properties\Settings.settings">

View File

@ -116,6 +116,7 @@
this.startMinimizedCheckBox = new System.Windows.Forms.CheckBox(); this.startMinimizedCheckBox = new System.Windows.Forms.CheckBox();
this.cBNotifications = new System.Windows.Forms.CheckBox(); this.cBNotifications = new System.Windows.Forms.CheckBox();
this.cBDisconnectBT = new System.Windows.Forms.CheckBox(); this.cBDisconnectBT = new System.Windows.Forms.CheckBox();
this.cBFlashWhenLate = new System.Windows.Forms.CheckBox();
this.cBCloseMini = new System.Windows.Forms.CheckBox(); this.cBCloseMini = new System.Windows.Forms.CheckBox();
this.cBQuickCharge = new System.Windows.Forms.CheckBox(); this.cBQuickCharge = new System.Windows.Forms.CheckBox();
this.cBUpdate = new System.Windows.Forms.CheckBox(); this.cBUpdate = new System.Windows.Forms.CheckBox();
@ -162,13 +163,12 @@
// //
// lvDebug // lvDebug
// //
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chTime, this.chTime,
this.chData}); this.chData});
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.FullRowSelect = true; this.lvDebug.FullRowSelect = true;
this.lvDebug.Name = "lvDebug"; this.lvDebug.Name = "lvDebug";
this.toolTip1.SetToolTip(this.lvDebug, resources.GetString("lvDebug.ToolTip"));
this.lvDebug.UseCompatibleStateImageBehavior = false; this.lvDebug.UseCompatibleStateImageBehavior = false;
this.lvDebug.View = System.Windows.Forms.View.Details; this.lvDebug.View = System.Windows.Forms.View.Details;
this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate); this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate);
@ -188,27 +188,24 @@
// //
// pnlButton // pnlButton
// //
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.BackColor = System.Drawing.SystemColors.Control; this.pnlButton.BackColor = System.Drawing.SystemColors.Control;
this.pnlButton.Controls.Add(this.lbTest); this.pnlButton.Controls.Add(this.lbTest);
this.pnlButton.Controls.Add(this.btnStartStop); this.pnlButton.Controls.Add(this.btnStartStop);
this.pnlButton.Controls.Add(this.lbLastMessage); this.pnlButton.Controls.Add(this.lbLastMessage);
this.pnlButton.Controls.Add(this.llbHelp); this.pnlButton.Controls.Add(this.llbHelp);
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.Name = "pnlButton"; this.pnlButton.Name = "pnlButton";
this.toolTip1.SetToolTip(this.pnlButton, resources.GetString("pnlButton.ToolTip"));
this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave); this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave);
// //
// lbTest // lbTest
// //
resources.ApplyResources(this.lbTest, "lbTest"); resources.ApplyResources(this.lbTest, "lbTest");
this.lbTest.Name = "lbTest"; this.lbTest.Name = "lbTest";
this.toolTip1.SetToolTip(this.lbTest, resources.GetString("lbTest.ToolTip"));
// //
// btnStartStop // btnStartStop
// //
resources.ApplyResources(this.btnStartStop, "btnStartStop"); resources.ApplyResources(this.btnStartStop, "btnStartStop");
this.btnStartStop.Name = "btnStartStop"; this.btnStartStop.Name = "btnStartStop";
this.toolTip1.SetToolTip(this.btnStartStop, resources.GetString("btnStartStop.ToolTip"));
this.btnStartStop.UseVisualStyleBackColor = true; this.btnStartStop.UseVisualStyleBackColor = true;
this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click); this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
// //
@ -217,7 +214,6 @@
resources.ApplyResources(this.lbLastMessage, "lbLastMessage"); resources.ApplyResources(this.lbLastMessage, "lbLastMessage");
this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText; this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText;
this.lbLastMessage.Name = "lbLastMessage"; this.lbLastMessage.Name = "lbLastMessage";
this.toolTip1.SetToolTip(this.lbLastMessage, resources.GetString("lbLastMessage.ToolTip"));
this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover); this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover);
// //
// llbHelp // llbHelp
@ -225,14 +221,12 @@
resources.ApplyResources(this.llbHelp, "llbHelp"); resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp"; this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true; this.llbHelp.TabStop = true;
this.toolTip1.SetToolTip(this.llbHelp, resources.GetString("llbHelp.ToolTip"));
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked); this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
// //
// btnClear // btnClear
// //
resources.ApplyResources(this.btnClear, "btnClear"); resources.ApplyResources(this.btnClear, "btnClear");
this.btnClear.Name = "btnClear"; this.btnClear.Name = "btnClear";
this.toolTip1.SetToolTip(this.btnClear, resources.GetString("btnClear.ToolTip"));
this.btnClear.UseVisualStyleBackColor = true; this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click); this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
// //
@ -247,7 +241,6 @@
// //
// cMTaskbar // cMTaskbar
// //
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editProfileForController1ToolStripMenuItem, this.editProfileForController1ToolStripMenuItem,
@ -259,46 +252,46 @@
this.openToolStripMenuItem, this.openToolStripMenuItem,
this.exitToolStripMenuItem}); this.exitToolStripMenuItem});
this.cMTaskbar.Name = "cMTaskbar"; this.cMTaskbar.Name = "cMTaskbar";
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.Tag = "25"; this.cMTaskbar.Tag = "25";
this.toolTip1.SetToolTip(this.cMTaskbar, resources.GetString("cMTaskbar.ToolTip"));
// //
// editProfileForController1ToolStripMenuItem // editProfileForController1ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem"; this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Tag = "0"; this.editProfileForController1ToolStripMenuItem.Tag = "0";
this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController2ToolStripMenuItem // editProfileForController2ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem"; this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Tag = "1"; this.editProfileForController2ToolStripMenuItem.Tag = "1";
this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController3ToolStripMenuItem // editProfileForController3ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem"; this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Tag = "2"; this.editProfileForController3ToolStripMenuItem.Tag = "2";
this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController4ToolStripMenuItem // editProfileForController4ToolStripMenuItem
// //
resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem"; this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Tag = "4"; this.editProfileForController4ToolStripMenuItem.Tag = "4";
this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// toolStripSeparator1 // toolStripSeparator1
// //
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
// //
// startToolStripMenuItem // startToolStripMenuItem
// //
resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Name = "startToolStripMenuItem"; this.startToolStripMenuItem.Name = "startToolStripMenuItem";
resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
// //
// openToolStripMenuItem // openToolStripMenuItem
@ -309,14 +302,14 @@
// //
// exitToolStripMenuItem // exitToolStripMenuItem
// //
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
// //
// toolStripSeparator2 // toolStripSeparator2
// //
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Name = "toolStripSeparator2";
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
// //
// openProfiles // openProfiles
// //
@ -325,24 +318,22 @@
// //
// tabMain // tabMain
// //
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Controls.Add(this.tabControllers); this.tabMain.Controls.Add(this.tabControllers);
this.tabMain.Controls.Add(this.tabProfiles); this.tabMain.Controls.Add(this.tabProfiles);
this.tabMain.Controls.Add(this.tabAutoProfiles); this.tabMain.Controls.Add(this.tabAutoProfiles);
this.tabMain.Controls.Add(this.tabSettings); this.tabMain.Controls.Add(this.tabSettings);
this.tabMain.Controls.Add(this.tabLog); this.tabMain.Controls.Add(this.tabLog);
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Name = "tabMain"; this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0; this.tabMain.SelectedIndex = 0;
this.toolTip1.SetToolTip(this.tabMain, resources.GetString("tabMain.ToolTip"));
this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged); this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged);
// //
// tabControllers // tabControllers
// //
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Controls.Add(this.tLPControllers); this.tabControllers.Controls.Add(this.tLPControllers);
this.tabControllers.Controls.Add(this.lbNoControllers); this.tabControllers.Controls.Add(this.lbNoControllers);
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Name = "tabControllers"; this.tabControllers.Name = "tabControllers";
this.toolTip1.SetToolTip(this.tabControllers, resources.GetString("tabControllers.ToolTip"));
this.tabControllers.UseVisualStyleBackColor = true; this.tabControllers.UseVisualStyleBackColor = true;
// //
// tLPControllers // tLPControllers
@ -373,7 +364,6 @@
this.tLPControllers.Controls.Add(this.pBStatus3, 1, 3); this.tLPControllers.Controls.Add(this.pBStatus3, 1, 3);
this.tLPControllers.Controls.Add(this.pBStatus4, 1, 4); this.tLPControllers.Controls.Add(this.pBStatus4, 1, 4);
this.tLPControllers.Name = "tLPControllers"; this.tLPControllers.Name = "tLPControllers";
this.toolTip1.SetToolTip(this.tLPControllers, resources.GetString("tLPControllers.ToolTip"));
// //
// pBStatus1 // pBStatus1
// //
@ -382,7 +372,6 @@
this.pBStatus1.Name = "pBStatus1"; this.pBStatus1.Name = "pBStatus1";
this.pBStatus1.TabStop = false; this.pBStatus1.TabStop = false;
this.pBStatus1.Tag = "0"; this.pBStatus1.Tag = "0";
this.toolTip1.SetToolTip(this.pBStatus1, resources.GetString("pBStatus1.ToolTip"));
this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// lbPad1 // lbPad1
@ -390,7 +379,6 @@
resources.ApplyResources(this.lbPad1, "lbPad1"); resources.ApplyResources(this.lbPad1, "lbPad1");
this.lbPad1.Name = "lbPad1"; this.lbPad1.Name = "lbPad1";
this.lbPad1.Tag = "0"; this.lbPad1.Tag = "0";
this.toolTip1.SetToolTip(this.lbPad1, resources.GetString("lbPad1.ToolTip"));
this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -399,7 +387,6 @@
resources.ApplyResources(this.lbPad2, "lbPad2"); resources.ApplyResources(this.lbPad2, "lbPad2");
this.lbPad2.Name = "lbPad2"; this.lbPad2.Name = "lbPad2";
this.lbPad2.Tag = "1"; this.lbPad2.Tag = "1";
this.toolTip1.SetToolTip(this.lbPad2, resources.GetString("lbPad2.ToolTip"));
this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -408,7 +395,6 @@
resources.ApplyResources(this.bnEditC3, "bnEditC3"); resources.ApplyResources(this.bnEditC3, "bnEditC3");
this.bnEditC3.Name = "bnEditC3"; this.bnEditC3.Name = "bnEditC3";
this.bnEditC3.Tag = "2"; this.bnEditC3.Tag = "2";
this.toolTip1.SetToolTip(this.bnEditC3, resources.GetString("bnEditC3.ToolTip"));
this.bnEditC3.UseVisualStyleBackColor = true; this.bnEditC3.UseVisualStyleBackColor = true;
this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -417,7 +403,6 @@
resources.ApplyResources(this.bnEditC4, "bnEditC4"); resources.ApplyResources(this.bnEditC4, "bnEditC4");
this.bnEditC4.Name = "bnEditC4"; this.bnEditC4.Name = "bnEditC4";
this.bnEditC4.Tag = "3"; this.bnEditC4.Tag = "3";
this.toolTip1.SetToolTip(this.bnEditC4, resources.GetString("bnEditC4.ToolTip"));
this.bnEditC4.UseVisualStyleBackColor = true; this.bnEditC4.UseVisualStyleBackColor = true;
this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -426,7 +411,6 @@
resources.ApplyResources(this.lbPad3, "lbPad3"); resources.ApplyResources(this.lbPad3, "lbPad3");
this.lbPad3.Name = "lbPad3"; this.lbPad3.Name = "lbPad3";
this.lbPad3.Tag = "2"; this.lbPad3.Tag = "2";
this.toolTip1.SetToolTip(this.lbPad3, resources.GetString("lbPad3.ToolTip"));
this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -435,7 +419,6 @@
resources.ApplyResources(this.lbPad4, "lbPad4"); resources.ApplyResources(this.lbPad4, "lbPad4");
this.lbPad4.Name = "lbPad4"; this.lbPad4.Name = "lbPad4";
this.lbPad4.Tag = "3"; this.lbPad4.Tag = "3";
this.toolTip1.SetToolTip(this.lbPad4, resources.GetString("lbPad4.ToolTip"));
this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -446,7 +429,6 @@
this.cBController1.FormattingEnabled = true; this.cBController1.FormattingEnabled = true;
this.cBController1.Name = "cBController1"; this.cBController1.Name = "cBController1";
this.cBController1.Tag = "0"; this.cBController1.Tag = "0";
this.toolTip1.SetToolTip(this.cBController1, resources.GetString("cBController1.ToolTip"));
this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC2 // bnEditC2
@ -454,7 +436,6 @@
resources.ApplyResources(this.bnEditC2, "bnEditC2"); resources.ApplyResources(this.bnEditC2, "bnEditC2");
this.bnEditC2.Name = "bnEditC2"; this.bnEditC2.Name = "bnEditC2";
this.bnEditC2.Tag = "1"; this.bnEditC2.Tag = "1";
this.toolTip1.SetToolTip(this.bnEditC2, resources.GetString("bnEditC2.ToolTip"));
this.bnEditC2.UseVisualStyleBackColor = true; this.bnEditC2.UseVisualStyleBackColor = true;
this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -465,7 +446,6 @@
this.cBController2.FormattingEnabled = true; this.cBController2.FormattingEnabled = true;
this.cBController2.Name = "cBController2"; this.cBController2.Name = "cBController2";
this.cBController2.Tag = "1"; this.cBController2.Tag = "1";
this.toolTip1.SetToolTip(this.cBController2, resources.GetString("cBController2.ToolTip"));
this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// cBController3 // cBController3
@ -475,7 +455,6 @@
this.cBController3.FormattingEnabled = true; this.cBController3.FormattingEnabled = true;
this.cBController3.Name = "cBController3"; this.cBController3.Name = "cBController3";
this.cBController3.Tag = "2"; this.cBController3.Tag = "2";
this.toolTip1.SetToolTip(this.cBController3, resources.GetString("cBController3.ToolTip"));
this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC1 // bnEditC1
@ -483,7 +462,6 @@
resources.ApplyResources(this.bnEditC1, "bnEditC1"); resources.ApplyResources(this.bnEditC1, "bnEditC1");
this.bnEditC1.Name = "bnEditC1"; this.bnEditC1.Name = "bnEditC1";
this.bnEditC1.Tag = "0"; this.bnEditC1.Tag = "0";
this.toolTip1.SetToolTip(this.bnEditC1, resources.GetString("bnEditC1.ToolTip"));
this.bnEditC1.UseVisualStyleBackColor = true; this.bnEditC1.UseVisualStyleBackColor = true;
this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -494,56 +472,47 @@
this.cBController4.FormattingEnabled = true; this.cBController4.FormattingEnabled = true;
this.cBController4.Name = "cBController4"; this.cBController4.Name = "cBController4";
this.cBController4.Tag = "3"; this.cBController4.Tag = "3";
this.toolTip1.SetToolTip(this.cBController4, resources.GetString("cBController4.ToolTip"));
this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// lbSelectedProfile // lbSelectedProfile
// //
resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile"); resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile");
this.lbSelectedProfile.Name = "lbSelectedProfile"; this.lbSelectedProfile.Name = "lbSelectedProfile";
this.toolTip1.SetToolTip(this.lbSelectedProfile, resources.GetString("lbSelectedProfile.ToolTip"));
// //
// lbID // lbID
// //
resources.ApplyResources(this.lbID, "lbID"); resources.ApplyResources(this.lbID, "lbID");
this.lbID.Name = "lbID"; this.lbID.Name = "lbID";
this.toolTip1.SetToolTip(this.lbID, resources.GetString("lbID.ToolTip"));
// //
// lbStatus // lbStatus
// //
resources.ApplyResources(this.lbStatus, "lbStatus"); resources.ApplyResources(this.lbStatus, "lbStatus");
this.lbStatus.Name = "lbStatus"; this.lbStatus.Name = "lbStatus";
this.toolTip1.SetToolTip(this.lbStatus, resources.GetString("lbStatus.ToolTip"));
// //
// lbBattery // lbBattery
// //
resources.ApplyResources(this.lbBattery, "lbBattery"); resources.ApplyResources(this.lbBattery, "lbBattery");
this.lbBattery.Name = "lbBattery"; this.lbBattery.Name = "lbBattery";
this.toolTip1.SetToolTip(this.lbBattery, resources.GetString("lbBattery.ToolTip"));
// //
// lbBatt1 // lbBatt1
// //
resources.ApplyResources(this.lbBatt1, "lbBatt1"); resources.ApplyResources(this.lbBatt1, "lbBatt1");
this.lbBatt1.Name = "lbBatt1"; this.lbBatt1.Name = "lbBatt1";
this.toolTip1.SetToolTip(this.lbBatt1, resources.GetString("lbBatt1.ToolTip"));
// //
// lbBatt2 // lbBatt2
// //
resources.ApplyResources(this.lbBatt2, "lbBatt2"); resources.ApplyResources(this.lbBatt2, "lbBatt2");
this.lbBatt2.Name = "lbBatt2"; this.lbBatt2.Name = "lbBatt2";
this.toolTip1.SetToolTip(this.lbBatt2, resources.GetString("lbBatt2.ToolTip"));
// //
// lbBatt3 // lbBatt3
// //
resources.ApplyResources(this.lbBatt3, "lbBatt3"); resources.ApplyResources(this.lbBatt3, "lbBatt3");
this.lbBatt3.Name = "lbBatt3"; this.lbBatt3.Name = "lbBatt3";
this.toolTip1.SetToolTip(this.lbBatt3, resources.GetString("lbBatt3.ToolTip"));
// //
// lbBatt4 // lbBatt4
// //
resources.ApplyResources(this.lbBatt4, "lbBatt4"); resources.ApplyResources(this.lbBatt4, "lbBatt4");
this.lbBatt4.Name = "lbBatt4"; this.lbBatt4.Name = "lbBatt4";
this.toolTip1.SetToolTip(this.lbBatt4, resources.GetString("lbBatt4.ToolTip"));
// //
// pBStatus2 // pBStatus2
// //
@ -552,7 +521,6 @@
this.pBStatus2.Name = "pBStatus2"; this.pBStatus2.Name = "pBStatus2";
this.pBStatus2.TabStop = false; this.pBStatus2.TabStop = false;
this.pBStatus2.Tag = "1"; this.pBStatus2.Tag = "1";
this.toolTip1.SetToolTip(this.pBStatus2, resources.GetString("pBStatus2.ToolTip"));
this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus3 // pBStatus3
@ -562,7 +530,6 @@
this.pBStatus3.Name = "pBStatus3"; this.pBStatus3.Name = "pBStatus3";
this.pBStatus3.TabStop = false; this.pBStatus3.TabStop = false;
this.pBStatus3.Tag = "2"; this.pBStatus3.Tag = "2";
this.toolTip1.SetToolTip(this.pBStatus3, resources.GetString("pBStatus3.ToolTip"));
this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus4 // pBStatus4
@ -572,41 +539,36 @@
this.pBStatus4.Name = "pBStatus4"; this.pBStatus4.Name = "pBStatus4";
this.pBStatus4.TabStop = false; this.pBStatus4.TabStop = false;
this.pBStatus4.Tag = "3"; this.pBStatus4.Tag = "3";
this.toolTip1.SetToolTip(this.pBStatus4, resources.GetString("pBStatus4.ToolTip"));
this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// lbNoControllers // lbNoControllers
// //
resources.ApplyResources(this.lbNoControllers, "lbNoControllers"); resources.ApplyResources(this.lbNoControllers, "lbNoControllers");
this.lbNoControllers.Name = "lbNoControllers"; this.lbNoControllers.Name = "lbNoControllers";
this.toolTip1.SetToolTip(this.lbNoControllers, resources.GetString("lbNoControllers.ToolTip"));
// //
// tabProfiles // tabProfiles
// //
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Controls.Add(this.lBProfiles); this.tabProfiles.Controls.Add(this.lBProfiles);
this.tabProfiles.Controls.Add(this.tSOptions); this.tabProfiles.Controls.Add(this.tSOptions);
this.tabProfiles.Controls.Add(this.toolStrip1); this.tabProfiles.Controls.Add(this.toolStrip1);
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Name = "tabProfiles"; this.tabProfiles.Name = "tabProfiles";
this.toolTip1.SetToolTip(this.tabProfiles, resources.GetString("tabProfiles.ToolTip"));
this.tabProfiles.UseVisualStyleBackColor = true; this.tabProfiles.UseVisualStyleBackColor = true;
// //
// lBProfiles // lBProfiles
// //
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lBProfiles.ContextMenuStrip = this.cMProfile; this.lBProfiles.ContextMenuStrip = this.cMProfile;
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.FormattingEnabled = true; this.lBProfiles.FormattingEnabled = true;
this.lBProfiles.MultiColumn = true; this.lBProfiles.MultiColumn = true;
this.lBProfiles.Name = "lBProfiles"; this.lBProfiles.Name = "lBProfiles";
this.toolTip1.SetToolTip(this.lBProfiles, resources.GetString("lBProfiles.ToolTip"));
this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown); this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown);
this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick); this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick);
this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown); this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown);
// //
// cMProfile // cMProfile
// //
resources.ApplyResources(this.cMProfile, "cMProfile");
this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editToolStripMenuItem, this.editToolStripMenuItem,
@ -620,7 +582,7 @@
this.importToolStripMenuItem, this.importToolStripMenuItem,
this.exportToolStripMenuItem}); this.exportToolStripMenuItem});
this.cMProfile.Name = "cMProfile"; this.cMProfile.Name = "cMProfile";
this.toolTip1.SetToolTip(this.cMProfile, resources.GetString("cMProfile.ToolTip")); resources.ApplyResources(this.cMProfile, "cMProfile");
// //
// editToolStripMenuItem // editToolStripMenuItem
// //
@ -630,61 +592,60 @@
// //
// assignToController1ToolStripMenuItem // assignToController1ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem"; this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem";
resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click); this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click);
// //
// assignToController2ToolStripMenuItem // assignToController2ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem"; this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem";
resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click); this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click);
// //
// assignToController3ToolStripMenuItem // assignToController3ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem"; this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem";
resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click); this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click);
// //
// assignToController4ToolStripMenuItem // assignToController4ToolStripMenuItem
// //
resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem"; this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem";
resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click); this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click);
// //
// deleteToolStripMenuItem // deleteToolStripMenuItem
// //
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click); this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click);
// //
// duplicateToolStripMenuItem // duplicateToolStripMenuItem
// //
resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem"; this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click); this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click);
// //
// newProfileToolStripMenuItem // newProfileToolStripMenuItem
// //
resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem"; this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem";
resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click); this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// importToolStripMenuItem // importToolStripMenuItem
// //
resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Name = "importToolStripMenuItem"; this.importToolStripMenuItem.Name = "importToolStripMenuItem";
resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click); this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
// exportToolStripMenuItem // exportToolStripMenuItem
// //
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem"; this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click); this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click);
// //
// tSOptions // tSOptions
// //
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1, this.toolStripLabel1,
@ -693,55 +654,54 @@
this.tSBCancel, this.tSBCancel,
this.toolStripSeparator3, this.toolStripSeparator3,
this.tSBKeepSize}); this.tSBKeepSize});
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.Name = "tSOptions"; this.tSOptions.Name = "tSOptions";
this.tSOptions.ShowItemToolTips = false; this.tSOptions.ShowItemToolTips = false;
this.toolTip1.SetToolTip(this.tSOptions, resources.GetString("tSOptions.ToolTip"));
// //
// toolStripLabel1 // toolStripLabel1
// //
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Name = "toolStripLabel1";
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
// //
// tSTBProfile // tSTBProfile
// //
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText; this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
this.tSTBProfile.Name = "tSTBProfile"; this.tSTBProfile.Name = "tSTBProfile";
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter); this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave); this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged); this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
// //
// tSBSaveProfile // tSBSaveProfile
// //
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.AutoToolTip = false; this.tSBSaveProfile.AutoToolTip = false;
this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile; this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile;
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.Name = "tSBSaveProfile"; this.tSBSaveProfile.Name = "tSBSaveProfile";
this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click); this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click);
// //
// tSBCancel // tSBCancel
// //
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.AutoToolTip = false; this.tSBCancel.AutoToolTip = false;
this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete; this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete;
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.Name = "tSBCancel"; this.tSBCancel.Name = "tSBCancel";
this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click); this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click);
// //
// toolStripSeparator3 // toolStripSeparator3
// //
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
// //
// tSBKeepSize // tSBKeepSize
// //
resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size; this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size;
resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Name = "tSBKeepSize"; this.tSBKeepSize.Name = "tSBKeepSize";
this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click); this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click);
// //
// toolStrip1 // toolStrip1
// //
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsBNewProfle, this.tsBNewProfle,
@ -750,20 +710,20 @@
this.tSBDupProfile, this.tSBDupProfile,
this.tSBImportProfile, this.tSBImportProfile,
this.tSBExportProfile}); this.tSBExportProfile});
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Name = "toolStrip1";
this.toolTip1.SetToolTip(this.toolStrip1, resources.GetString("toolStrip1.ToolTip"));
// //
// tsBNewProfle // tsBNewProfle
// //
resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile; this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile;
resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Name = "tsBNewProfle"; this.tsBNewProfle.Name = "tsBNewProfle";
this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click); this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// tsBEditProfile // tsBEditProfile
// //
resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit; this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit;
resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Name = "tsBEditProfile"; this.tsBEditProfile.Name = "tsBEditProfile";
this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click); this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click);
// //
@ -781,8 +741,8 @@
// //
// tSBImportProfile // tSBImportProfile
// //
resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import; this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import;
resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Name = "tSBImportProfile"; this.tSBImportProfile.Name = "tSBImportProfile";
this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click); this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
@ -796,15 +756,13 @@
// //
resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles"); resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles");
this.tabAutoProfiles.Name = "tabAutoProfiles"; this.tabAutoProfiles.Name = "tabAutoProfiles";
this.toolTip1.SetToolTip(this.tabAutoProfiles, resources.GetString("tabAutoProfiles.ToolTip"));
this.tabAutoProfiles.UseVisualStyleBackColor = true; this.tabAutoProfiles.UseVisualStyleBackColor = true;
// //
// tabSettings // tabSettings
// //
resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Controls.Add(this.fLPSettings); this.tabSettings.Controls.Add(this.fLPSettings);
resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Name = "tabSettings"; this.tabSettings.Name = "tabSettings";
this.toolTip1.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip"));
this.tabSettings.UseVisualStyleBackColor = true; this.tabSettings.UseVisualStyleBackColor = true;
// //
// fLPSettings // fLPSettings
@ -816,6 +774,7 @@
this.fLPSettings.Controls.Add(this.startMinimizedCheckBox); this.fLPSettings.Controls.Add(this.startMinimizedCheckBox);
this.fLPSettings.Controls.Add(this.cBNotifications); this.fLPSettings.Controls.Add(this.cBNotifications);
this.fLPSettings.Controls.Add(this.cBDisconnectBT); this.fLPSettings.Controls.Add(this.cBDisconnectBT);
this.fLPSettings.Controls.Add(this.cBFlashWhenLate);
this.fLPSettings.Controls.Add(this.cBCloseMini); this.fLPSettings.Controls.Add(this.cBCloseMini);
this.fLPSettings.Controls.Add(this.cBQuickCharge); this.fLPSettings.Controls.Add(this.cBQuickCharge);
this.fLPSettings.Controls.Add(this.cBUpdate); this.fLPSettings.Controls.Add(this.cBUpdate);
@ -824,13 +783,11 @@
this.fLPSettings.Controls.Add(this.pnlXIPorts); this.fLPSettings.Controls.Add(this.pnlXIPorts);
this.fLPSettings.Controls.Add(this.flowLayoutPanel1); this.fLPSettings.Controls.Add(this.flowLayoutPanel1);
this.fLPSettings.Name = "fLPSettings"; this.fLPSettings.Name = "fLPSettings";
this.toolTip1.SetToolTip(this.fLPSettings, resources.GetString("fLPSettings.ToolTip"));
// //
// hideDS4CheckBox // hideDS4CheckBox
// //
resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox"); resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox");
this.hideDS4CheckBox.Name = "hideDS4CheckBox"; this.hideDS4CheckBox.Name = "hideDS4CheckBox";
this.toolTip1.SetToolTip(this.hideDS4CheckBox, resources.GetString("hideDS4CheckBox.ToolTip"));
this.hideDS4CheckBox.UseVisualStyleBackColor = true; this.hideDS4CheckBox.UseVisualStyleBackColor = true;
this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged); this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged);
// //
@ -840,7 +797,6 @@
this.cBSwipeProfiles.Checked = true; this.cBSwipeProfiles.Checked = true;
this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked; this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBSwipeProfiles.Name = "cBSwipeProfiles"; this.cBSwipeProfiles.Name = "cBSwipeProfiles";
this.toolTip1.SetToolTip(this.cBSwipeProfiles, resources.GetString("cBSwipeProfiles.ToolTip"));
this.cBSwipeProfiles.UseVisualStyleBackColor = true; this.cBSwipeProfiles.UseVisualStyleBackColor = true;
this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged); this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged);
// //
@ -848,7 +804,6 @@
// //
resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox"); resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox");
this.StartWindowsCheckBox.Name = "StartWindowsCheckBox"; this.StartWindowsCheckBox.Name = "StartWindowsCheckBox";
this.toolTip1.SetToolTip(this.StartWindowsCheckBox, resources.GetString("StartWindowsCheckBox.ToolTip"));
this.StartWindowsCheckBox.UseVisualStyleBackColor = true; this.StartWindowsCheckBox.UseVisualStyleBackColor = true;
this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged); this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged);
// //
@ -856,7 +811,6 @@
// //
resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox"); resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
this.startMinimizedCheckBox.Name = "startMinimizedCheckBox"; this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
this.toolTip1.SetToolTip(this.startMinimizedCheckBox, resources.GetString("startMinimizedCheckBox.ToolTip"));
this.startMinimizedCheckBox.UseVisualStyleBackColor = true; this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged); this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
// //
@ -864,7 +818,6 @@
// //
resources.ApplyResources(this.cBNotifications, "cBNotifications"); resources.ApplyResources(this.cBNotifications, "cBNotifications");
this.cBNotifications.Name = "cBNotifications"; this.cBNotifications.Name = "cBNotifications";
this.toolTip1.SetToolTip(this.cBNotifications, resources.GetString("cBNotifications.ToolTip"));
this.cBNotifications.UseVisualStyleBackColor = true; this.cBNotifications.UseVisualStyleBackColor = true;
this.cBNotifications.CheckedChanged += new System.EventHandler(this.cBNotifications_CheckedChanged); this.cBNotifications.CheckedChanged += new System.EventHandler(this.cBNotifications_CheckedChanged);
// //
@ -872,15 +825,22 @@
// //
resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT"); resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT");
this.cBDisconnectBT.Name = "cBDisconnectBT"; this.cBDisconnectBT.Name = "cBDisconnectBT";
this.toolTip1.SetToolTip(this.cBDisconnectBT, resources.GetString("cBDisconnectBT.ToolTip"));
this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.UseVisualStyleBackColor = true;
this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged);
// //
// cBFlashWhenLate
//
resources.ApplyResources(this.cBFlashWhenLate, "cBFlashWhenLate");
this.cBFlashWhenLate.Checked = true;
this.cBFlashWhenLate.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBFlashWhenLate.Name = "cBFlashWhenLate";
this.cBFlashWhenLate.UseVisualStyleBackColor = true;
this.cBFlashWhenLate.CheckedChanged += new System.EventHandler(this.cBFlashWhenLate_CheckedChanged);
//
// cBCloseMini // cBCloseMini
// //
resources.ApplyResources(this.cBCloseMini, "cBCloseMini"); resources.ApplyResources(this.cBCloseMini, "cBCloseMini");
this.cBCloseMini.Name = "cBCloseMini"; this.cBCloseMini.Name = "cBCloseMini";
this.toolTip1.SetToolTip(this.cBCloseMini, resources.GetString("cBCloseMini.ToolTip"));
this.cBCloseMini.UseVisualStyleBackColor = true; this.cBCloseMini.UseVisualStyleBackColor = true;
this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged); this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged);
// //
@ -888,7 +848,6 @@
// //
resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge");
this.cBQuickCharge.Name = "cBQuickCharge"; this.cBQuickCharge.Name = "cBQuickCharge";
this.toolTip1.SetToolTip(this.cBQuickCharge, resources.GetString("cBQuickCharge.ToolTip"));
this.cBQuickCharge.UseVisualStyleBackColor = true; this.cBQuickCharge.UseVisualStyleBackColor = true;
this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged);
// //
@ -896,7 +855,6 @@
// //
resources.ApplyResources(this.cBUpdate, "cBUpdate"); resources.ApplyResources(this.cBUpdate, "cBUpdate");
this.cBUpdate.Name = "cBUpdate"; this.cBUpdate.Name = "cBUpdate";
this.toolTip1.SetToolTip(this.cBUpdate, resources.GetString("cBUpdate.ToolTip"));
this.cBUpdate.UseVisualStyleBackColor = true; this.cBUpdate.UseVisualStyleBackColor = true;
this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged); this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged);
// //
@ -906,36 +864,32 @@
this.cBDownloadLangauge.Checked = true; this.cBDownloadLangauge.Checked = true;
this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked; this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBDownloadLangauge.Name = "cBDownloadLangauge"; this.cBDownloadLangauge.Name = "cBDownloadLangauge";
this.toolTip1.SetToolTip(this.cBDownloadLangauge, resources.GetString("cBDownloadLangauge.ToolTip"));
this.cBDownloadLangauge.UseVisualStyleBackColor = true; this.cBDownloadLangauge.UseVisualStyleBackColor = true;
this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged); this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged);
// //
// pNUpdate // pNUpdate
// //
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Controls.Add(this.cBUpdateTime); this.pNUpdate.Controls.Add(this.cBUpdateTime);
this.pNUpdate.Controls.Add(this.lbCheckEvery); this.pNUpdate.Controls.Add(this.lbCheckEvery);
this.pNUpdate.Controls.Add(this.nUDUpdateTime); this.pNUpdate.Controls.Add(this.nUDUpdateTime);
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Name = "pNUpdate"; this.pNUpdate.Name = "pNUpdate";
this.toolTip1.SetToolTip(this.pNUpdate, resources.GetString("pNUpdate.ToolTip"));
// //
// cBUpdateTime // cBUpdateTime
// //
resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime");
this.cBUpdateTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBUpdateTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cBUpdateTime.FormattingEnabled = true; this.cBUpdateTime.FormattingEnabled = true;
this.cBUpdateTime.Items.AddRange(new object[] { this.cBUpdateTime.Items.AddRange(new object[] {
resources.GetString("cBUpdateTime.Items"), resources.GetString("cBUpdateTime.Items"),
resources.GetString("cBUpdateTime.Items1")}); resources.GetString("cBUpdateTime.Items1")});
resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime");
this.cBUpdateTime.Name = "cBUpdateTime"; this.cBUpdateTime.Name = "cBUpdateTime";
this.toolTip1.SetToolTip(this.cBUpdateTime, resources.GetString("cBUpdateTime.ToolTip"));
this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged); this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged);
// //
// lbCheckEvery // lbCheckEvery
// //
resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery"); resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery");
this.lbCheckEvery.Name = "lbCheckEvery"; this.lbCheckEvery.Name = "lbCheckEvery";
this.toolTip1.SetToolTip(this.lbCheckEvery, resources.GetString("lbCheckEvery.ToolTip"));
// //
// nUDUpdateTime // nUDUpdateTime
// //
@ -946,17 +900,15 @@
0, 0,
0}); 0});
this.nUDUpdateTime.Name = "nUDUpdateTime"; this.nUDUpdateTime.Name = "nUDUpdateTime";
this.toolTip1.SetToolTip(this.nUDUpdateTime, resources.GetString("nUDUpdateTime.ToolTip"));
this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged); this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged);
// //
// pnlXIPorts // pnlXIPorts
// //
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Controls.Add(this.lbUseXIPorts); this.pnlXIPorts.Controls.Add(this.lbUseXIPorts);
this.pnlXIPorts.Controls.Add(this.nUDXIPorts); this.pnlXIPorts.Controls.Add(this.nUDXIPorts);
this.pnlXIPorts.Controls.Add(this.lbLastXIPort); this.pnlXIPorts.Controls.Add(this.lbLastXIPort);
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Name = "pnlXIPorts"; this.pnlXIPorts.Name = "pnlXIPorts";
this.toolTip1.SetToolTip(this.pnlXIPorts, resources.GetString("pnlXIPorts.ToolTip"));
this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter); this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter);
this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave); this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave);
// //
@ -964,7 +916,6 @@
// //
resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts"); resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts");
this.lbUseXIPorts.Name = "lbUseXIPorts"; this.lbUseXIPorts.Name = "lbUseXIPorts";
this.toolTip1.SetToolTip(this.lbUseXIPorts, resources.GetString("lbUseXIPorts.ToolTip"));
// //
// nUDXIPorts // nUDXIPorts
// //
@ -980,7 +931,6 @@
0, 0,
0}); 0});
this.nUDXIPorts.Name = "nUDXIPorts"; this.nUDXIPorts.Name = "nUDXIPorts";
this.toolTip1.SetToolTip(this.nUDXIPorts, resources.GetString("nUDXIPorts.ToolTip"));
this.nUDXIPorts.Value = new decimal(new int[] { this.nUDXIPorts.Value = new decimal(new int[] {
1, 1,
0, 0,
@ -994,7 +944,6 @@
// //
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort"); resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort"; this.lbLastXIPort.Name = "lbLastXIPort";
this.toolTip1.SetToolTip(this.lbLastXIPort, resources.GetString("lbLastXIPort.ToolTip"));
// //
// flowLayoutPanel1 // flowLayoutPanel1
// //
@ -1005,14 +954,12 @@
this.flowLayoutPanel1.Controls.Add(this.linkSetup); this.flowLayoutPanel1.Controls.Add(this.linkSetup);
this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate);
this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip"));
// //
// linkProfiles // linkProfiles
// //
resources.ApplyResources(this.linkProfiles, "linkProfiles"); resources.ApplyResources(this.linkProfiles, "linkProfiles");
this.linkProfiles.Name = "linkProfiles"; this.linkProfiles.Name = "linkProfiles";
this.linkProfiles.TabStop = true; this.linkProfiles.TabStop = true;
this.toolTip1.SetToolTip(this.linkProfiles, resources.GetString("linkProfiles.ToolTip"));
this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked); this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked);
// //
// lnkControllers // lnkControllers
@ -1020,7 +967,6 @@
resources.ApplyResources(this.lnkControllers, "lnkControllers"); resources.ApplyResources(this.lnkControllers, "lnkControllers");
this.lnkControllers.Name = "lnkControllers"; this.lnkControllers.Name = "lnkControllers";
this.lnkControllers.TabStop = true; this.lnkControllers.TabStop = true;
this.toolTip1.SetToolTip(this.lnkControllers, resources.GetString("lnkControllers.ToolTip"));
this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked); this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked);
// //
// linkUninstall // linkUninstall
@ -1028,7 +974,6 @@
resources.ApplyResources(this.linkUninstall, "linkUninstall"); resources.ApplyResources(this.linkUninstall, "linkUninstall");
this.linkUninstall.Name = "linkUninstall"; this.linkUninstall.Name = "linkUninstall";
this.linkUninstall.TabStop = true; this.linkUninstall.TabStop = true;
this.toolTip1.SetToolTip(this.linkUninstall, resources.GetString("linkUninstall.ToolTip"));
this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked); this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked);
// //
// linkSetup // linkSetup
@ -1036,7 +981,6 @@
resources.ApplyResources(this.linkSetup, "linkSetup"); resources.ApplyResources(this.linkSetup, "linkSetup");
this.linkSetup.Name = "linkSetup"; this.linkSetup.Name = "linkSetup";
this.linkSetup.TabStop = true; this.linkSetup.TabStop = true;
this.toolTip1.SetToolTip(this.linkSetup, resources.GetString("linkSetup.ToolTip"));
this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked); this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked);
// //
// lLBUpdate // lLBUpdate
@ -1044,16 +988,14 @@
resources.ApplyResources(this.lLBUpdate, "lLBUpdate"); resources.ApplyResources(this.lLBUpdate, "lLBUpdate");
this.lLBUpdate.Name = "lLBUpdate"; this.lLBUpdate.Name = "lLBUpdate";
this.lLBUpdate.TabStop = true; this.lLBUpdate.TabStop = true;
this.toolTip1.SetToolTip(this.lLBUpdate, resources.GetString("lLBUpdate.ToolTip"));
this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked); this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked);
// //
// tabLog // tabLog
// //
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Controls.Add(this.lvDebug); this.tabLog.Controls.Add(this.lvDebug);
this.tabLog.Controls.Add(this.btnClear); this.tabLog.Controls.Add(this.btnClear);
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Name = "tabLog"; this.tabLog.Name = "tabLog";
this.toolTip1.SetToolTip(this.tabLog, resources.GetString("tabLog.ToolTip"));
this.tabLog.UseVisualStyleBackColor = true; this.tabLog.UseVisualStyleBackColor = true;
// //
// saveProfiles // saveProfiles
@ -1062,14 +1004,13 @@
// //
// DS4Form // DS4Form
// //
resources.ApplyResources(this, "$this");
this.AllowDrop = true; this.AllowDrop = true;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White; this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tabMain); this.Controls.Add(this.tabMain);
this.Controls.Add(this.pnlButton); this.Controls.Add(this.pnlButton);
this.Name = "DS4Form"; this.Name = "DS4Form";
this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter);
@ -1217,6 +1158,7 @@
private System.Windows.Forms.Label lbNoControllers; private System.Windows.Forms.Label lbNoControllers;
private System.Windows.Forms.ToolTip toolTip1; private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox cBDownloadLangauge; private System.Windows.Forms.CheckBox cBDownloadLangauge;
private System.Windows.Forms.CheckBox cBFlashWhenLate;
//private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; //private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
} }
} }

View File

@ -71,6 +71,7 @@ namespace DS4Windows
public DS4Form(string[] args) public DS4Form(string[] args)
{ {
//System.Threading.Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("ru-RU");
InitializeComponent(); InitializeComponent();
arguements = args; arguements = args;
ThemeUtil.SetTheme(lvDebug); ThemeUtil.SetTheme(lvDebug);
@ -203,6 +204,7 @@ namespace DS4Windows
if (lang.StartsWith("en")) if (lang.StartsWith("en"))
cBDownloadLangauge.Visible = false; cBDownloadLangauge.Visible = false;
cBDownloadLangauge.Checked = Global.DownloadLang; cBDownloadLangauge.Checked = Global.DownloadLang;
cBFlashWhenLate.Checked = Global.FlashWhenLate;
if (!Global.LoadActions()) //if first no actions have been made yet, create PS+Option to D/C and save it to every profile if (!Global.LoadActions()) //if first no actions have been made yet, create PS+Option to D/C and save it to every profile
{ {
XmlDocument xDoc = new XmlDocument(); XmlDocument xDoc = new XmlDocument();
@ -491,6 +493,7 @@ namespace DS4Windows
string originalsettingstext; string originalsettingstext;
private void CheckDrivers() private void CheckDrivers()
{ {
originalsettingstext = tabSettings.Text;
bool deriverinstalled = false; bool deriverinstalled = false;
try try
{ {
@ -524,7 +527,6 @@ namespace DS4Windows
if (!File.Exists(exepath + "\\Auto Profiles.xml") && !File.Exists(appdatapath + "\\Auto Profiles.xml")) if (!File.Exists(exepath + "\\Auto Profiles.xml") && !File.Exists(appdatapath + "\\Auto Profiles.xml"))
{ {
linkSetup.LinkColor = Color.Green; linkSetup.LinkColor = Color.Green;
originalsettingstext = tabSettings.Text;
tabSettings.Text += " (" + Properties.Resources.InstallDriver + ")"; tabSettings.Text += " (" + Properties.Resources.InstallDriver + ")";
} }
} }
@ -553,7 +555,7 @@ namespace DS4Windows
} }
Process p = new Process(); Process p = new Process();
p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; p.StartInfo.FileName = exepath + "\\DS4Updater.exe";
if (cBDownloadLangauge.Checked) if (!cBDownloadLangauge.Checked)
p.StartInfo.Arguments = "-skipLang"; p.StartInfo.Arguments = "-skipLang";
if (Global.AdminNeeded()) if (Global.AdminNeeded())
p.StartInfo.Verb = "runas"; p.StartInfo.Verb = "runas";
@ -1442,7 +1444,7 @@ namespace DS4Windows
} }
Process p = new Process(); Process p = new Process();
p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; p.StartInfo.FileName = exepath + "\\DS4Updater.exe";
if (cBDownloadLangauge.Checked) if (!cBDownloadLangauge.Checked)
p.StartInfo.Arguments = "-skipLang"; p.StartInfo.Arguments = "-skipLang";
if (Global.AdminNeeded()) if (Global.AdminNeeded())
p.StartInfo.Verb = "runas"; p.StartInfo.Verb = "runas";
@ -1604,6 +1606,11 @@ namespace DS4Windows
{ {
Global.DownloadLang = cBDownloadLangauge.Checked; Global.DownloadLang = cBDownloadLangauge.Checked;
} }
private void cBFlashWhenLate_CheckedChanged(object sender, EventArgs e)
{
Global.FlashWhenLate = cBFlashWhenLate.Checked;
}
} }
public class ThemeUtil public class ThemeUtil

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -293,7 +293,7 @@ namespace DS4Windows
rb.Visible = true; rb.Visible = true;
Controls.Add(rb); Controls.Add(rb);
rb.BringToFront(); rb.BringToFront();
rb.FormClosed += delegate { Controls.Add(cBScanCode); cBScanCode.Location = new Point(663, 8); ActiveControl = lBMacroOn; }; rb.FormClosed += delegate { Controls.Add(cBScanCode); cBScanCode.Location = new Point(663, 8); ActiveControl = lBMacroOn; rb = null; };
} }
protected override bool IsInputKey(Keys keyData) protected override bool IsInputKey(Keys keyData)

View File

@ -129,6 +129,9 @@ namespace DS4Windows
DS4Color cColor = Global.ChargingColor[device]; DS4Color cColor = Global.ChargingColor[device];
btnChargingColor.BackColor = Color.FromArgb(cColor.red, cColor.green, cColor.blue); btnChargingColor.BackColor = Color.FromArgb(cColor.red, cColor.green, cColor.blue);
if (Global.FlashType[device] > cBFlashType.Items.Count - 1)
cBFlashType.SelectedIndex = 0;
else
cBFlashType.SelectedIndex = Global.FlashType[device]; cBFlashType.SelectedIndex = Global.FlashType[device];
DS4Color fColor = Global.FlashColor[device]; DS4Color fColor = Global.FlashColor[device];
if (fColor.Equals(new DS4Color { red = 0, green = 0, blue = 0 })) if (fColor.Equals(new DS4Color { red = 0, green = 0, blue = 0 }))
@ -166,8 +169,10 @@ namespace DS4Windows
full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg); full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg);
lowColorChooserButton.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); lowColorChooserButton.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full);
nUDRainbow.Value = (decimal)Global.Rainbow[device]; nUDRainbow.Value = (decimal)Global.Rainbow[device];
try { cBWhileCharging.SelectedIndex = Global.ChargingType[device]; } if (Global.ChargingType[device] > cBWhileCharging.Items.Count - 1)
catch { cBWhileCharging.SelectedIndex = 0; } cBWhileCharging.SelectedIndex = 0;
else
cBWhileCharging.SelectedIndex = Global.ChargingType[device];
if (Global.Rainbow[device] == 0) if (Global.Rainbow[device] == 0)
{ {
pBRainbow.Image = greyscale; pBRainbow.Image = greyscale;
@ -199,6 +204,8 @@ namespace DS4Windows
} }
else else
{ {
cBFlashType.SelectedIndex = 0;
cBWhileCharging.SelectedIndex = 0;
Set(); Set();
switch (device) switch (device)
{ {

View File

@ -74,6 +74,11 @@
this.lbFullBatt = new System.Windows.Forms.Label(); this.lbFullBatt = new System.Windows.Forms.Label();
this.lbEmptyBatt = new System.Windows.Forms.Label(); this.lbEmptyBatt = new System.Windows.Forms.Label();
this.lbSecsBatt = new System.Windows.Forms.Label(); this.lbSecsBatt = new System.Windows.Forms.Label();
this.nUDProg = new System.Windows.Forms.NumericUpDown();
this.lbHoldForProg = new System.Windows.Forms.Label();
this.lbSecsProg = new System.Windows.Forms.Label();
this.lbArg = new System.Windows.Forms.Label();
this.tBArg = new System.Windows.Forms.TextBox();
this.advColorDialog = new DS4Windows.AdvancedColorDialog(); this.advColorDialog = new DS4Windows.AdvancedColorDialog();
((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit();
this.pnlProgram.SuspendLayout(); this.pnlProgram.SuspendLayout();
@ -85,6 +90,7 @@
this.pnlBatteryCheck.SuspendLayout(); this.pnlBatteryCheck.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pBGraident)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pBGraident)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nUDDCBatt)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDDCBatt)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nUDProg)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
// lVTrigger // lVTrigger
@ -305,6 +311,11 @@
// //
// pnlProgram // pnlProgram
// //
this.pnlProgram.Controls.Add(this.tBArg);
this.pnlProgram.Controls.Add(this.nUDProg);
this.pnlProgram.Controls.Add(this.lbArg);
this.pnlProgram.Controls.Add(this.lbHoldForProg);
this.pnlProgram.Controls.Add(this.lbSecsProg);
this.pnlProgram.Controls.Add(this.btnBrowse); this.pnlProgram.Controls.Add(this.btnBrowse);
this.pnlProgram.Controls.Add(this.lbProgram); this.pnlProgram.Controls.Add(this.lbProgram);
this.pnlProgram.Controls.Add(this.pBProgram); this.pnlProgram.Controls.Add(this.pBProgram);
@ -495,6 +506,37 @@
resources.ApplyResources(this.lbSecsBatt, "lbSecsBatt"); resources.ApplyResources(this.lbSecsBatt, "lbSecsBatt");
this.lbSecsBatt.Name = "lbSecsBatt"; this.lbSecsBatt.Name = "lbSecsBatt";
// //
// nUDProg
//
this.nUDProg.DecimalPlaces = 1;
resources.ApplyResources(this.nUDProg, "nUDProg");
this.nUDProg.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.nUDProg.Name = "nUDProg";
//
// lbHoldForProg
//
resources.ApplyResources(this.lbHoldForProg, "lbHoldForProg");
this.lbHoldForProg.Name = "lbHoldForProg";
//
// lbSecsProg
//
resources.ApplyResources(this.lbSecsProg, "lbSecsProg");
this.lbSecsProg.Name = "lbSecsProg";
//
// lbArg
//
resources.ApplyResources(this.lbArg, "lbArg");
this.lbArg.Name = "lbArg";
//
// tBArg
//
resources.ApplyResources(this.tBArg, "tBArg");
this.tBArg.Name = "tBArg";
//
// advColorDialog // advColorDialog
// //
this.advColorDialog.AnyColor = true; this.advColorDialog.AnyColor = true;
@ -507,7 +549,6 @@
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control; this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.pnlBatteryCheck);
this.Controls.Add(this.tBName); this.Controls.Add(this.tBName);
this.Controls.Add(this.cBActions); this.Controls.Add(this.cBActions);
this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnCancel);
@ -516,15 +557,17 @@
this.Controls.Add(this.lVTrigger); this.Controls.Add(this.lVTrigger);
this.Controls.Add(this.lVUnloadTrigger); this.Controls.Add(this.lVUnloadTrigger);
this.Controls.Add(this.btnBorder); this.Controls.Add(this.btnBorder);
this.Controls.Add(this.pnlProgram);
this.Controls.Add(this.pnlBatteryCheck);
this.Controls.Add(this.pnlDisconnectBT); this.Controls.Add(this.pnlDisconnectBT);
this.Controls.Add(this.pnlKeys); this.Controls.Add(this.pnlKeys);
this.Controls.Add(this.pnlMacro); this.Controls.Add(this.pnlMacro);
this.Controls.Add(this.pnlProfile); this.Controls.Add(this.pnlProfile);
this.Controls.Add(this.pnlProgram);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "SpecActions"; this.Name = "SpecActions";
((System.ComponentModel.ISupportInitialize)(this.pBProgram)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).EndInit();
this.pnlProgram.ResumeLayout(false); this.pnlProgram.ResumeLayout(false);
this.pnlProgram.PerformLayout();
this.pnlMacro.ResumeLayout(false); this.pnlMacro.ResumeLayout(false);
this.pnlMacro.PerformLayout(); this.pnlMacro.PerformLayout();
this.pnlProfile.ResumeLayout(false); this.pnlProfile.ResumeLayout(false);
@ -535,6 +578,7 @@
this.pnlBatteryCheck.PerformLayout(); this.pnlBatteryCheck.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pBGraident)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pBGraident)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nUDDCBatt)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDDCBatt)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nUDProg)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
@ -587,5 +631,10 @@
private System.Windows.Forms.Label lbEmptyBatt; private System.Windows.Forms.Label lbEmptyBatt;
private System.Windows.Forms.Label lbSecsBatt; private System.Windows.Forms.Label lbSecsBatt;
private AdvancedColorDialog advColorDialog; private AdvancedColorDialog advColorDialog;
private System.Windows.Forms.TextBox tBArg;
private System.Windows.Forms.NumericUpDown nUDProg;
private System.Windows.Forms.Label lbArg;
private System.Windows.Forms.Label lbHoldForProg;
private System.Windows.Forms.Label lbSecsProg;
} }
} }

View File

@ -30,12 +30,11 @@ namespace DS4Windows
{ {
InitializeComponent(); InitializeComponent();
this.opt = opt; this.opt = opt;
lbHoldForBatt.Text = lbHoldFor.Text; lbHoldForBatt.Text = lbHoldForProg.Text = lbHoldFor.Text;
lbSecsBatt.Text = lbSecsBatt.Text; lbSecsBatt.Text = lbSecsBatt.Text = lbSecsBatt.Text;
device = opt.device; device = opt.device;
cBProfiles.Items.Add(Properties.Resources.noneProfile); cBProfiles.Items.Add(Properties.Resources.noneProfile);
cBProfiles.SelectedIndex = 0; cBProfiles.SelectedIndex = 0;
//cBPressToggleKeys.SelectedIndex = 0;
cBActions.SelectedIndex = 0; cBActions.SelectedIndex = 0;
cBPressRelease.SelectedIndex = 0; cBPressRelease.SelectedIndex = 0;
foreach (object s in opt.root.lBProfiles.Items) foreach (object s in opt.root.lBProfiles.Items)
@ -67,7 +66,13 @@ namespace DS4Windows
lbMacroRecorded.Text = "Macro Recored"; lbMacroRecorded.Text = "Macro Recored";
cBMacroScanCode.Checked = act.keyType.HasFlag(DS4KeyType.ScanCode); cBMacroScanCode.Checked = act.keyType.HasFlag(DS4KeyType.ScanCode);
break; break;
case "Program": cBActions.SelectedIndex = 2; LoadProgram(act.details); break; case "Program":
cBActions.SelectedIndex = 2;
LoadProgram(act.details);
nUDProg.Value = (decimal)act.delayTime;
tBArg.Text = act.extra;
break;
case "Profile": case "Profile":
cBActions.SelectedIndex = 3; cBActions.SelectedIndex = 3;
cBProfiles.Text = act.details; cBProfiles.Text = act.details;
@ -102,16 +107,12 @@ namespace DS4Windows
break; break;
case "DisconnectBT": case "DisconnectBT":
cBActions.SelectedIndex = 5; cBActions.SelectedIndex = 5;
decimal d = 0; nUDDCBT.Value = (decimal)act.delayTime;
decimal.TryParse(act.details, out d);
nUDDCBT.Value = d;
break; break;
case "BatteryCheck": case "BatteryCheck":
cBActions.SelectedIndex = 6; cBActions.SelectedIndex = 6;
string[] dets = act.details.Split(','); string[] dets = act.details.Split(',');
d = 0; nUDDCBatt.Value = (decimal)act.delayTime;
decimal.TryParse(dets[0], out d);
nUDDCBatt.Value = d;
cBNotificationBatt.Checked = bool.Parse(dets[1]); cBNotificationBatt.Checked = bool.Parse(dets[1]);
cbLightbarBatt.Checked = bool.Parse(dets[2]); cbLightbarBatt.Checked = bool.Parse(dets[2]);
bnEmptyColor.BackColor = Color.FromArgb(byte.Parse(dets[3]), byte.Parse(dets[4]), byte.Parse(dets[5])); bnEmptyColor.BackColor = Color.FromArgb(byte.Parse(dets[3]), byte.Parse(dets[4]), byte.Parse(dets[5]));
@ -188,7 +189,7 @@ namespace DS4Windows
actRe = true; actRe = true;
if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text) if (!string.IsNullOrEmpty(oldprofilename) && oldprofilename != tBName.Text)
Global.RemoveAction(oldprofilename); Global.RemoveAction(oldprofilename);
Global.SaveAction(tBName.Text, String.Join("/", controls), cBActions.SelectedIndex, program, edit); Global.SaveAction(tBName.Text, String.Join("/", controls), cBActions.SelectedIndex, program + "?" + nUDProg.Value, edit, tBArg.Text);
} }
break; break;
case 3: case 3:

View File

@ -709,6 +709,78 @@
aWNyb3NvZnQgU2FucyBTZXJpZgAABEEF9////xhTeXN0ZW0uRHJhd2luZy5Gb250U3R5bGUBAAAAB3Zh aWNyb3NvZnQgU2FucyBTZXJpZgAABEEF9////xhTeXN0ZW0uRHJhd2luZy5Gb250U3R5bGUBAAAAB3Zh
bHVlX18ACAMAAAAAAAAABfb///8bU3lzdGVtLkRyYXdpbmcuR3JhcGhpY3NVbml0AQAAAAd2YWx1ZV9f bHVlX18ACAMAAAAAAAAABfb///8bU3lzdGVtLkRyYXdpbmcuR3JhcGhpY3NVbml0AQAAAAd2YWx1ZV9f
AAgDAAAAAwAAAAs= AAgDAAAAAwAAAAs=
</value>
</data>
<data name="lVTrigger.Items33" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAdUaWx0IFVw/////wX7
////FFN5c3RlbS5EcmF3aW5nLkNvbG9yBAAAAARuYW1lBXZhbHVlCmtub3duQ29sb3IFc3RhdGUBAAAA
CQcHAwAAAAoAAAAAAAAAABgAAQAACQYAAAAB+f////v///8KAAAAAAAAAAAaAAEAAQUGAAAAE1N5c3Rl
bS5EcmF3aW5nLkZvbnQEAAAABE5hbWUEU2l6ZQVTdHlsZQRVbml0AQAEBAsYU3lzdGVtLkRyYXdpbmcu
Rm9udFN0eWxlAwAAABtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQDAAAAAwAAAAYIAAAAFE1pY3Jv
c29mdCBTYW5zIFNlcmlmAAAEQQX3////GFN5c3RlbS5EcmF3aW5nLkZvbnRTdHlsZQEAAAAHdmFsdWVf
XwAIAwAAAAAAAAAF9v///xtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQBAAAAB3ZhbHVlX18ACAMA
AAADAAAACw==
</value>
</data>
<data name="lVTrigger.Items34" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAlUaWx0IERvd27/////
Bfv///8UU3lzdGVtLkRyYXdpbmcuQ29sb3IEAAAABG5hbWUFdmFsdWUKa25vd25Db2xvcgVzdGF0ZQEA
AAAJBwcDAAAACgAAAAAAAAAAGAABAAAJBgAAAAH5////+////woAAAAAAAAAABoAAQABBQYAAAATU3lz
dGVtLkRyYXdpbmcuRm9udAQAAAAETmFtZQRTaXplBVN0eWxlBFVuaXQBAAQECxhTeXN0ZW0uRHJhd2lu
Zy5Gb250U3R5bGUDAAAAG1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAMAAAADAAAABggAAAAUTWlj
cm9zb2Z0IFNhbnMgU2VyaWYAAARBBff///8YU3lzdGVtLkRyYXdpbmcuRm9udFN0eWxlAQAAAAd2YWx1
ZV9fAAgDAAAAAAAAAAX2////G1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAEAAAAHdmFsdWVfXwAI
AwAAAAMAAAAL
</value>
</data>
<data name="lVTrigger.Items35" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAlUaWx0IExlZnT/////
Bfv///8UU3lzdGVtLkRyYXdpbmcuQ29sb3IEAAAABG5hbWUFdmFsdWUKa25vd25Db2xvcgVzdGF0ZQEA
AAAJBwcDAAAACgAAAAAAAAAAGAABAAAJBgAAAAH5////+////woAAAAAAAAAABoAAQABBQYAAAATU3lz
dGVtLkRyYXdpbmcuRm9udAQAAAAETmFtZQRTaXplBVN0eWxlBFVuaXQBAAQECxhTeXN0ZW0uRHJhd2lu
Zy5Gb250U3R5bGUDAAAAG1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAMAAAADAAAABggAAAAUTWlj
cm9zb2Z0IFNhbnMgU2VyaWYAAARBBff///8YU3lzdGVtLkRyYXdpbmcuRm9udFN0eWxlAQAAAAd2YWx1
ZV9fAAgDAAAAAAAAAAX2////G1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAEAAAAHdmFsdWVfXwAI
AwAAAAMAAAAL
</value>
</data>
<data name="lVTrigger.Items36" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAApUaWx0IFJpZ2h0////
/wX7////FFN5c3RlbS5EcmF3aW5nLkNvbG9yBAAAAARuYW1lBXZhbHVlCmtub3duQ29sb3IFc3RhdGUB
AAAACQcHAwAAAAoAAAAAAAAAABgAAQAACQYAAAAB+f////v///8KAAAAAAAAAAAaAAEAAQUGAAAAE1N5
c3RlbS5EcmF3aW5nLkZvbnQEAAAABE5hbWUEU2l6ZQVTdHlsZQRVbml0AQAEBAsYU3lzdGVtLkRyYXdp
bmcuRm9udFN0eWxlAwAAABtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQDAAAAAwAAAAYIAAAAFE1p
Y3Jvc29mdCBTYW5zIFNlcmlmAAAEQQX3////GFN5c3RlbS5EcmF3aW5nLkZvbnRTdHlsZQEAAAAHdmFs
dWVfXwAIAwAAAAAAAAAF9v///xtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQBAAAAB3ZhbHVlX18A
CAMAAAADAAAACw==
</value> </value>
</data> </data>
<data name="btnRecordMacro.Text" xml:space="preserve"> <data name="btnRecordMacro.Text" xml:space="preserve">
@ -744,6 +816,9 @@
<data name="cBActions.Items5" xml:space="preserve"> <data name="cBActions.Items5" xml:space="preserve">
<value>Disconnetti da Bluetooth</value> <value>Disconnetti da Bluetooth</value>
</data> </data>
<data name="cBActions.Items6" xml:space="preserve">
<value>Controlla Durata Batteria</value>
</data>
<data name="btnSetUTriggerProfile.Text" xml:space="preserve"> <data name="btnSetUTriggerProfile.Text" xml:space="preserve">
<value>Imposta grilletto Unload</value> <value>Imposta grilletto Unload</value>
</data> </data>
@ -1342,6 +1417,78 @@
aWNyb3NvZnQgU2FucyBTZXJpZgAABEEF9////xhTeXN0ZW0uRHJhd2luZy5Gb250U3R5bGUBAAAAB3Zh aWNyb3NvZnQgU2FucyBTZXJpZgAABEEF9////xhTeXN0ZW0uRHJhd2luZy5Gb250U3R5bGUBAAAAB3Zh
bHVlX18ACAMAAAAAAAAABfb///8bU3lzdGVtLkRyYXdpbmcuR3JhcGhpY3NVbml0AQAAAAd2YWx1ZV9f bHVlX18ACAMAAAAAAAAABfb///8bU3lzdGVtLkRyYXdpbmcuR3JhcGhpY3NVbml0AQAAAAd2YWx1ZV9f
AAgDAAAAAwAAAAs= AAgDAAAAAwAAAAs=
</value>
</data>
<data name="lVUnloadTrigger.Items33" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAdUaWx0IFVw/////wX7
////FFN5c3RlbS5EcmF3aW5nLkNvbG9yBAAAAARuYW1lBXZhbHVlCmtub3duQ29sb3IFc3RhdGUBAAAA
CQcHAwAAAAoAAAAAAAAAABgAAQAACQYAAAAB+f////v///8KAAAAAAAAAAAaAAEAAQUGAAAAE1N5c3Rl
bS5EcmF3aW5nLkZvbnQEAAAABE5hbWUEU2l6ZQVTdHlsZQRVbml0AQAEBAsYU3lzdGVtLkRyYXdpbmcu
Rm9udFN0eWxlAwAAABtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQDAAAAAwAAAAYIAAAAFE1pY3Jv
c29mdCBTYW5zIFNlcmlmAAAEQQX3////GFN5c3RlbS5EcmF3aW5nLkZvbnRTdHlsZQEAAAAHdmFsdWVf
XwAIAwAAAAAAAAAF9v///xtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQBAAAAB3ZhbHVlX18ACAMA
AAADAAAACw==
</value>
</data>
<data name="lVUnloadTrigger.Items34" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAlUaWx0IERvd27/////
Bfv///8UU3lzdGVtLkRyYXdpbmcuQ29sb3IEAAAABG5hbWUFdmFsdWUKa25vd25Db2xvcgVzdGF0ZQEA
AAAJBwcDAAAACgAAAAAAAAAAGAABAAAJBgAAAAH5////+////woAAAAAAAAAABoAAQABBQYAAAATU3lz
dGVtLkRyYXdpbmcuRm9udAQAAAAETmFtZQRTaXplBVN0eWxlBFVuaXQBAAQECxhTeXN0ZW0uRHJhd2lu
Zy5Gb250U3R5bGUDAAAAG1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAMAAAADAAAABggAAAAUTWlj
cm9zb2Z0IFNhbnMgU2VyaWYAAARBBff///8YU3lzdGVtLkRyYXdpbmcuRm9udFN0eWxlAQAAAAd2YWx1
ZV9fAAgDAAAAAAAAAAX2////G1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAEAAAAHdmFsdWVfXwAI
AwAAAAMAAAAL
</value>
</data>
<data name="lVUnloadTrigger.Items35" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAAlUaWx0IExlZnT/////
Bfv///8UU3lzdGVtLkRyYXdpbmcuQ29sb3IEAAAABG5hbWUFdmFsdWUKa25vd25Db2xvcgVzdGF0ZQEA
AAAJBwcDAAAACgAAAAAAAAAAGAABAAAJBgAAAAH5////+////woAAAAAAAAAABoAAQABBQYAAAATU3lz
dGVtLkRyYXdpbmcuRm9udAQAAAAETmFtZQRTaXplBVN0eWxlBFVuaXQBAAQECxhTeXN0ZW0uRHJhd2lu
Zy5Gb250U3R5bGUDAAAAG1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAMAAAADAAAABggAAAAUTWlj
cm9zb2Z0IFNhbnMgU2VyaWYAAARBBff///8YU3lzdGVtLkRyYXdpbmcuRm9udFN0eWxlAQAAAAd2YWx1
ZV9fAAgDAAAAAAAAAAX2////G1N5c3RlbS5EcmF3aW5nLkdyYXBoaWNzVW5pdAEAAAAHdmFsdWVfXwAI
AwAAAAMAAAAL
</value>
</data>
<data name="lVUnloadTrigger.Items36" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkMAwAAAFFTeXN0
ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2Vu
PWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5MaXN0Vmlld0l0ZW0HAAAA
BFRleHQKSW1hZ2VJbmRleAlCYWNrQ29sb3IHQ2hlY2tlZARGb250CUZvcmVDb2xvchdVc2VJdGVtU3R5
bGVGb3JTdWJJdGVtcwEABAAEBAAIFFN5c3RlbS5EcmF3aW5nLkNvbG9yAwAAAAETU3lzdGVtLkRyYXdp
bmcuRm9udAMAAAAUU3lzdGVtLkRyYXdpbmcuQ29sb3IDAAAAAQIAAAAGBAAAAApUaWx0IFJpZ2h0////
/wX7////FFN5c3RlbS5EcmF3aW5nLkNvbG9yBAAAAARuYW1lBXZhbHVlCmtub3duQ29sb3IFc3RhdGUB
AAAACQcHAwAAAAoAAAAAAAAAABgAAQAACQYAAAAB+f////v///8KAAAAAAAAAAAaAAEAAQUGAAAAE1N5
c3RlbS5EcmF3aW5nLkZvbnQEAAAABE5hbWUEU2l6ZQVTdHlsZQRVbml0AQAEBAsYU3lzdGVtLkRyYXdp
bmcuRm9udFN0eWxlAwAAABtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQDAAAAAwAAAAYIAAAAFE1p
Y3Jvc29mdCBTYW5zIFNlcmlmAAAEQQX3////GFN5c3RlbS5EcmF3aW5nLkZvbnRTdHlsZQEAAAAHdmFs
dWVfXwAIAwAAAAAAAAAF9v///xtTeXN0ZW0uRHJhd2luZy5HcmFwaGljc1VuaXQBAAAAB3ZhbHVlX18A
CAMAAAADAAAACw==
</value> </value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
@ -1372,13 +1519,16 @@
<data name="lbUnloadTipKey.Text" xml:space="preserve"> <data name="lbUnloadTipKey.Text" xml:space="preserve">
<value>Tasto Untoggle per</value> <value>Tasto Untoggle per</value>
</data> </data>
<data name="cBActions.Items6" xml:space="preserve"> <data name="cBNotificationBatt.Size" type="System.Drawing.Size, System.Drawing">
<value>Controlla Durata Batteria</value> <value>77, 17</value>
</data>
<data name="cbLightbarBatt.Text" xml:space="preserve">
<value>via barra luminosa</value>
</data> </data>
<data name="cBNotificationBatt.Text" xml:space="preserve"> <data name="cBNotificationBatt.Text" xml:space="preserve">
<value>via notifica</value> <value>via notifica</value>
</data> </data>
<data name="cbLightbarBatt.Size" type="System.Drawing.Size, System.Drawing">
<value>111, 17</value>
</data>
<data name="cbLightbarBatt.Text" xml:space="preserve">
<value>via barra luminosa</value>
</data>
</root> </root>

View File

@ -814,7 +814,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;lVTrigger.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lVTrigger.ZOrder" xml:space="preserve">
<value>6</value> <value>5</value>
</data> </data>
<data name="btnRecordMacro.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnRecordMacro.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -847,7 +847,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing"> <data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value> <value>1, 27</value>
</data> </data>
<data name="btnBrowse.Size" type="System.Drawing.Size, System.Drawing"> <data name="btnBrowse.Size" type="System.Drawing.Size, System.Drawing">
<value>153, 23</value> <value>153, 23</value>
@ -868,7 +868,7 @@
<value>pnlProgram</value> <value>pnlProgram</value>
</data> </data>
<data name="&gt;&gt;btnBrowse.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnBrowse.ZOrder" xml:space="preserve">
<value>0</value> <value>5</value>
</data> </data>
<data name="cBProfiles.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBProfiles.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value> <value>0, 0</value>
@ -922,7 +922,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;btnSave.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnSave.ZOrder" xml:space="preserve">
<value>4</value> <value>3</value>
</data> </data>
<data name="btnCancel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="btnCancel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value> <value>Bottom, Left</value>
@ -952,7 +952,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;btnCancel.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnCancel.ZOrder" xml:space="preserve">
<value>3</value> <value>2</value>
</data> </data>
<data name="lbName.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbName.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -982,7 +982,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;lbName.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbName.ZOrder" xml:space="preserve">
<value>5</value> <value>4</value>
</data> </data>
<data name="tBName.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="tBName.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left, Right</value> <value>Top, Left, Right</value>
@ -1006,7 +1006,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;tBName.ZOrder" xml:space="preserve"> <data name="&gt;&gt;tBName.ZOrder" xml:space="preserve">
<value>1</value> <value>0</value>
</data> </data>
<data name="cBActions.Items" xml:space="preserve"> <data name="cBActions.Items" xml:space="preserve">
<value>-Select an Action-</value> <value>-Select an Action-</value>
@ -1048,7 +1048,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;cBActions.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cBActions.ZOrder" xml:space="preserve">
<value>2</value> <value>1</value>
</data> </data>
<metadata name="openFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="openFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value> <value>17, 17</value>
@ -1063,7 +1063,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>129, 26</value> <value>130, 53</value>
</data> </data>
<data name="pBProgram.Size" type="System.Drawing.Size, System.Drawing"> <data name="pBProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>23, 23</value> <value>23, 23</value>
@ -1084,16 +1084,16 @@
<value>pnlProgram</value> <value>pnlProgram</value>
</data> </data>
<data name="&gt;&gt;pBProgram.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pBProgram.ZOrder" xml:space="preserve">
<value>2</value> <value>7</value>
</data> </data>
<data name="lbProgram.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbProgram.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="lbProgram.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 26</value> <value>3, 53</value>
</data> </data>
<data name="lbProgram.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>124, 23</value> <value>122, 23</value>
</data> </data>
<data name="lbProgram.TabIndex" type="System.Int32, mscorlib"> <data name="lbProgram.TabIndex" type="System.Int32, mscorlib">
<value>15</value> <value>15</value>
@ -1111,7 +1111,7 @@
<value>pnlProgram</value> <value>pnlProgram</value>
</data> </data>
<data name="&gt;&gt;lbProgram.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbProgram.ZOrder" xml:space="preserve">
<value>1</value> <value>6</value>
</data> </data>
<data name="btnBorder.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="btnBorder.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left</value> <value>Top, Bottom, Left</value>
@ -1141,7 +1141,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;btnBorder.ZOrder" xml:space="preserve"> <data name="&gt;&gt;btnBorder.ZOrder" xml:space="preserve">
<value>8</value> <value>7</value>
</data> </data>
<data name="btnSetUTriggerProfile.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnSetUTriggerProfile.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -1864,13 +1864,148 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;lVUnloadTrigger.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lVUnloadTrigger.ZOrder" xml:space="preserve">
<value>7</value> <value>6</value>
</data>
<data name="tBArg.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 91</value>
</data>
<data name="tBArg.Size" type="System.Drawing.Size, System.Drawing">
<value>148, 20</value>
</data>
<data name="tBArg.TabIndex" type="System.Int32, mscorlib">
<value>264</value>
</data>
<data name="&gt;&gt;tBArg.Name" xml:space="preserve">
<value>tBArg</value>
</data>
<data name="&gt;&gt;tBArg.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tBArg.Parent" xml:space="preserve">
<value>pnlProgram</value>
</data>
<data name="&gt;&gt;tBArg.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="nUDProg.Location" type="System.Drawing.Point, System.Drawing">
<value>56, 3</value>
</data>
<data name="nUDProg.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 20</value>
</data>
<data name="nUDProg.TabIndex" type="System.Int32, mscorlib">
<value>263</value>
</data>
<data name="&gt;&gt;nUDProg.Name" xml:space="preserve">
<value>nUDProg</value>
</data>
<data name="&gt;&gt;nUDProg.Type" xml:space="preserve">
<value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;nUDProg.Parent" xml:space="preserve">
<value>pnlProgram</value>
</data>
<data name="&gt;&gt;nUDProg.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lbArg.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lbArg.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="lbArg.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 76</value>
</data>
<data name="lbArg.Size" type="System.Drawing.Size, System.Drawing">
<value>57, 13</value>
</data>
<data name="lbArg.TabIndex" type="System.Int32, mscorlib">
<value>261</value>
</data>
<data name="lbArg.Text" xml:space="preserve">
<value>Arguments</value>
</data>
<data name="lbArg.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>TopCenter</value>
</data>
<data name="&gt;&gt;lbArg.Name" xml:space="preserve">
<value>lbArg</value>
</data>
<data name="&gt;&gt;lbArg.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lbArg.Parent" xml:space="preserve">
<value>pnlProgram</value>
</data>
<data name="&gt;&gt;lbArg.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="lbHoldForProg.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="lbHoldForProg.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 5</value>
</data>
<data name="lbHoldForProg.Size" type="System.Drawing.Size, System.Drawing">
<value>47, 18</value>
</data>
<data name="lbHoldForProg.TabIndex" type="System.Int32, mscorlib">
<value>261</value>
</data>
<data name="lbHoldForProg.Text" xml:space="preserve">
<value>Hold for</value>
</data>
<data name="lbHoldForProg.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>TopCenter</value>
</data>
<data name="&gt;&gt;lbHoldForProg.Name" xml:space="preserve">
<value>lbHoldForProg</value>
</data>
<data name="&gt;&gt;lbHoldForProg.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lbHoldForProg.Parent" xml:space="preserve">
<value>pnlProgram</value>
</data>
<data name="&gt;&gt;lbHoldForProg.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="lbSecsProg.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="lbSecsProg.Location" type="System.Drawing.Point, System.Drawing">
<value>115, 5</value>
</data>
<data name="lbSecsProg.Size" type="System.Drawing.Size, System.Drawing">
<value>33, 18</value>
</data>
<data name="lbSecsProg.TabIndex" type="System.Int32, mscorlib">
<value>262</value>
</data>
<data name="lbSecsProg.Text" xml:space="preserve">
<value>secs</value>
</data>
<data name="lbSecsProg.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>TopCenter</value>
</data>
<data name="&gt;&gt;lbSecsProg.Name" xml:space="preserve">
<value>lbSecsProg</value>
</data>
<data name="&gt;&gt;lbSecsProg.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lbSecsProg.Parent" xml:space="preserve">
<value>pnlProgram</value>
</data>
<data name="&gt;&gt;lbSecsProg.ZOrder" xml:space="preserve">
<value>4</value>
</data> </data>
<data name="pnlProgram.Location" type="System.Drawing.Point, System.Drawing"> <data name="pnlProgram.Location" type="System.Drawing.Point, System.Drawing">
<value>206, 58</value> <value>206, 58</value>
</data> </data>
<data name="pnlProgram.Size" type="System.Drawing.Size, System.Drawing"> <data name="pnlProgram.Size" type="System.Drawing.Size, System.Drawing">
<value>162, 62</value> <value>162, 124</value>
</data> </data>
<data name="pnlProgram.TabIndex" type="System.Int32, mscorlib"> <data name="pnlProgram.TabIndex" type="System.Int32, mscorlib">
<value>260</value> <value>260</value>
@ -1888,7 +2023,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlProgram.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlProgram.ZOrder" xml:space="preserve">
<value>13</value> <value>8</value>
</data> </data>
<data name="cBMacroScanCode.AutoSize" type="System.Boolean, mscorlib"> <data name="cBMacroScanCode.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1969,7 +2104,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlMacro.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlMacro.ZOrder" xml:space="preserve">
<value>11</value> <value>12</value>
</data> </data>
<data name="lbUnloadTipProfile.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbUnloadTipProfile.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -2017,7 +2152,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlProfile.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlProfile.ZOrder" xml:space="preserve">
<value>12</value> <value>13</value>
</data> </data>
<data name="nUDDCBT.Location" type="System.Drawing.Point, System.Drawing"> <data name="nUDDCBT.Location" type="System.Drawing.Point, System.Drawing">
<value>56, 3</value> <value>56, 3</value>
@ -2122,7 +2257,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlDisconnectBT.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlDisconnectBT.ZOrder" xml:space="preserve">
<value>9</value> <value>10</value>
</data> </data>
<data name="btnSelectKey.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="btnSelectKey.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -2266,7 +2401,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlKeys.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlKeys.ZOrder" xml:space="preserve">
<value>10</value> <value>11</value>
</data> </data>
<data name="pBGraident.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="pBGraident.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
@ -2566,7 +2701,7 @@
<value>$this</value> <value>$this</value>
</data> </data>
<data name="&gt;&gt;pnlBatteryCheck.ZOrder" xml:space="preserve"> <data name="&gt;&gt;pnlBatteryCheck.ZOrder" xml:space="preserve">
<value>0</value> <value>9</value>
</data> </data>
<metadata name="advColorDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="advColorDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>267, 17</value> <value>267, 17</value>
@ -2574,15 +2709,15 @@
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
<metadata name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>it-IT</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing"> <data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value> <value>6, 13</value>
</data> </data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>402, 264</value> <value>402, 264</value>
</data> </data>
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>SpecActions</value> <value>SpecActions</value>
</data> </data>
@ -2614,7 +2749,7 @@
<value>advColorDialog</value> <value>advColorDialog</value>
</data> </data>
<data name="&gt;&gt;advColorDialog.Type" xml:space="preserve"> <data name="&gt;&gt;advColorDialog.Type" xml:space="preserve">
<value>DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.241.0, Culture=neutral, PublicKeyToken=null</value> <value>DS4Windows.AdvancedColorDialog, DS4Windows, Version=1.4.244.0, Culture=neutral, PublicKeyToken=null</value>
</data> </data>
<data name="&gt;&gt;$this.Name" xml:space="preserve"> <data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>SpecActions</value> <value>SpecActions</value>

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.241")] [assembly: AssemblyVersion("1.4.245")]
[assembly: AssemblyFileVersion("1.4.241")] [assembly: AssemblyFileVersion("1.4.245")]