diff --git a/DS4Control/Mapping.cs b/DS4Control/Mapping.cs index fdbb8bf..458396c 100644 --- a/DS4Control/Mapping.cs +++ b/DS4Control/Mapping.cs @@ -329,7 +329,6 @@ namespace DS4Control public static async void MapCustom(int device, DS4State cState, DS4State MappedState, DS4StateExposed eState, Mouse tp) { bool shift; - cState.CopyTo(MappedState); SyntheticState deviceState = Mapping.deviceState[device]; switch (Global.getShiftModifier(device)) { @@ -361,8 +360,10 @@ namespace DS4Control case 26: shift = cState.Touch1; break; default: shift = false; break; } + cState.CopyTo(MappedState); if (shift) MapShiftCustom(device, cState, MappedState, eState, tp); + //else foreach (KeyValuePair customKey in Global.getCustomMacros(device)) { if (shift == false || @@ -782,7 +783,7 @@ namespace DS4Control public static async void MapShiftCustom(int device, DS4State cState, DS4State MappedState, DS4StateExposed eState, Mouse tp) { - cState.CopyTo(MappedState); + //cState.CopyTo(MappedState); SyntheticState deviceState = Mapping.deviceState[device]; foreach (KeyValuePair customKey in Global.getShiftCustomMacros(device)) //with delays { @@ -955,6 +956,7 @@ namespace DS4Control List RYP = new List(); foreach (KeyValuePair customButton in customButtons) { + resetToDefaultValue(customButton.Key, MappedState); // erase default mappings for things that are remapped DS4KeyType keyType = Global.getShiftCustomKeyType(device, customButton.Key); int keyvalue = 0; switch (customButton.Value) @@ -969,7 +971,6 @@ namespace DS4Control { if (getBoolMapping(customButton.Key, cState, eState, tp)) { - resetToDefaultValue(customButton.Key, MappedState); if (!pressedonce[keyvalue]) { deviceState.currentClicks.toggle = !deviceState.currentClicks.toggle; @@ -1068,6 +1069,7 @@ namespace DS4Control break; } } + Console.WriteLine(Cross.Count); foreach (DS4Controls dc in Cross) if (getBoolMapping(dc, cState, eState, tp)) MappedState.Cross = true; @@ -1120,21 +1122,21 @@ namespace DS4Control if (getBoolMapping(dc, cState, eState, tp)) MappedState.PS = true; - if (Global.getCustomButton(device, DS4Controls.LXNeg) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.LXNeg) == X360Controls.None) LXN.Add(DS4Controls.LXNeg); - if (Global.getCustomButton(device, DS4Controls.LXPos) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.LXPos) == X360Controls.None) LXP.Add(DS4Controls.LXPos); - if (Global.getCustomButton(device, DS4Controls.LYNeg) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.LYNeg) == X360Controls.None) LYN.Add(DS4Controls.LYNeg); - if (Global.getCustomButton(device, DS4Controls.LYPos) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.LYPos) == X360Controls.None) LYP.Add(DS4Controls.LYPos); - if (Global.getCustomButton(device, DS4Controls.RXNeg) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.RXNeg) == X360Controls.None) RXN.Add(DS4Controls.RXNeg); - if (Global.getCustomButton(device, DS4Controls.RXPos) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.RXPos) == X360Controls.None) RXP.Add(DS4Controls.RXPos); - if (Global.getCustomButton(device, DS4Controls.RYNeg) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.RYNeg) == X360Controls.None) RYN.Add(DS4Controls.RYNeg); - if (Global.getCustomButton(device, DS4Controls.RYPos) == X360Controls.None) + if (Global.getShiftCustomButton(device, DS4Controls.RYPos) == X360Controls.None) RYP.Add(DS4Controls.RYPos); if (LXN.Count > 0 || LXP.Count > 0) { @@ -1356,10 +1358,10 @@ namespace DS4Control case DS4Controls.Square: return (byte)(cState.Square ? 255 : 0); case DS4Controls.Triangle: return (byte)(cState.Triangle ? 255 : 0); case DS4Controls.Circle: return (byte)(cState.Circle ? 255 : 0); - case DS4Controls.TouchLeft: return (byte)(tp.leftDown ? 255 : 0); - case DS4Controls.TouchRight: return (byte)(tp.rightDown ? 255 : 0); - case DS4Controls.TouchMulti: return (byte)(tp.multiDown ? 255 : 0); - case DS4Controls.TouchUpper: return (byte)(tp.upperDown ? 255 : 0); + case DS4Controls.TouchLeft: return (byte)(tp != null && tp.leftDown ? 255 : 0); + case DS4Controls.TouchRight: return (byte)(tp != null && tp.rightDown ? 255 : 0); + case DS4Controls.TouchMulti: return (byte)(tp != null && tp.multiDown ? 255 : 0); + case DS4Controls.TouchUpper: return (byte)(tp != null && tp.upperDown ? 255 : 0); case DS4Controls.LXNeg: return (byte)cState.LX; case DS4Controls.LYNeg: return (byte)cState.LY; case DS4Controls.RXNeg: return (byte)cState.RX; @@ -1444,10 +1446,10 @@ namespace DS4Control case DS4Controls.Square: return (byte)(cState.Square ? trueVal : falseVal); case DS4Controls.Triangle: return (byte)(cState.Triangle ? trueVal : falseVal); case DS4Controls.Circle: return (byte)(cState.Circle ? trueVal : falseVal); - case DS4Controls.TouchLeft: return (byte)(tp.leftDown ? trueVal : falseVal); - case DS4Controls.TouchRight: return (byte)(tp.rightDown ? trueVal : falseVal); - case DS4Controls.TouchMulti: return (byte)(tp.multiDown ? trueVal : falseVal); - case DS4Controls.TouchUpper: return (byte)(tp.upperDown ? trueVal : falseVal); + case DS4Controls.TouchLeft: return (byte)(tp != null && tp.leftDown ? trueVal : falseVal); + case DS4Controls.TouchRight: return (byte)(tp != null && tp.rightDown ? trueVal : falseVal); + case DS4Controls.TouchMulti: return (byte)(tp != null && tp.multiDown ? trueVal : falseVal); + case DS4Controls.TouchUpper: return (byte)(tp != null && tp.upperDown ? trueVal : falseVal); case DS4Controls.L2: if (alt) return (byte)(127 + cState.L2 / 2); else return (byte)(127 - cState.L2 / 2); case DS4Controls.R2: if (alt) return (byte)(127 + cState.R2 / 2); else return (byte)(127 - cState.R2 / 2); case DS4Controls.GyroXPos: if (eState.GyroX > SXD * 7500) diff --git a/DS4Control/ScpUtil.cs b/DS4Control/ScpUtil.cs index 0695242..984ed0e 100644 --- a/DS4Control/ScpUtil.cs +++ b/DS4Control/ScpUtil.cs @@ -1102,6 +1102,45 @@ namespace DS4Control case "bnGyroZN": return DS4Controls.GyroZNeg; + case "bnShiftShare": return DS4Controls.Share; + case "bnShiftL3": return DS4Controls.L3; + case "bnShiftR3": return DS4Controls.R3; + case "bnShiftOptions": return DS4Controls.Options; + case "bnShiftUp": return DS4Controls.DpadUp; + case "bnShiftRight": return DS4Controls.DpadRight; + case "bnShiftDown": return DS4Controls.DpadDown; + case "bnShiftLeft": return DS4Controls.DpadLeft; + + case "bnShiftL1": return DS4Controls.L1; + case "bnShiftR1": return DS4Controls.R1; + case "bnShiftTriangle": return DS4Controls.Triangle; + case "bnShiftCircle": return DS4Controls.Circle; + case "bnShiftCross": return DS4Controls.Cross; + case "bnShiftSquare": return DS4Controls.Square; + + case "bnShiftPS": return DS4Controls.PS; + case "bnShiftLSLeft": return DS4Controls.LXNeg; + case "bnShiftLSUp": return DS4Controls.LYNeg; + case "bnShiftRSLeft": return DS4Controls.RXNeg; + case "bnShiftRSUp": return DS4Controls.RYNeg; + + case "bnShiftLSRight": return DS4Controls.LXPos; + case "bnShiftLSDown": return DS4Controls.LYPos; + case "bnShiftRSRight": return DS4Controls.RXPos; + case "bnShiftRSDown": return DS4Controls.RYPos; + case "bnShiftL2": return DS4Controls.L2; + case "bnShiftR2": return DS4Controls.R2; + + case "bnShiftTouchLeft": return DS4Controls.TouchLeft; + case "bnShiftTouchMulti": return DS4Controls.TouchMulti; + case "bnShiftTouchUpper": return DS4Controls.TouchUpper; + case "bnShiftTouchRight": return DS4Controls.TouchRight; + case "bnShiftGsyroXP": return DS4Controls.GyroXPos; + case "bnShiftGyroXN": return DS4Controls.GyroXNeg; + case "bnShiftGyroZP": return DS4Controls.GyroZPos; + case "bnShiftGyroZN": return DS4Controls.GyroZNeg; + + //old name case "sbnShare": return DS4Controls.Share; case "sbnL3": return DS4Controls.L3; case "sbnR3": return DS4Controls.R3; @@ -1139,6 +1178,45 @@ namespace DS4Control case "sbnGyroXN": return DS4Controls.GyroXNeg; case "sbnGyroZP": return DS4Controls.GyroZPos; case "sbnGyroZN": return DS4Controls.GyroZNeg; + //end old name + + case "bnHoldShare": return DS4Controls.Share; + case "bnHoldL3": return DS4Controls.L3; + case "bnHoldR3": return DS4Controls.R3; + case "bnHoldOptions": return DS4Controls.Options; + case "bnHoldUp": return DS4Controls.DpadUp; + case "bnHoldRight": return DS4Controls.DpadRight; + case "bnHoldDown": return DS4Controls.DpadDown; + case "bnHoldLeft": return DS4Controls.DpadLeft; + + case "bnHoldL1": return DS4Controls.L1; + case "bnHoldR1": return DS4Controls.R1; + case "bnHoldTriangle": return DS4Controls.Triangle; + case "bnHoldCircle": return DS4Controls.Circle; + case "bnHoldCross": return DS4Controls.Cross; + case "bnHoldSquare": return DS4Controls.Square; + + case "bnHoldPS": return DS4Controls.PS; + case "bnHoldLSLeft": return DS4Controls.LXNeg; + case "bnHoldLSUp": return DS4Controls.LYNeg; + case "bnHoldRSLeft": return DS4Controls.RXNeg; + case "bnHoldRSUp": return DS4Controls.RYNeg; + + case "bnHoldLSRight": return DS4Controls.LXPos; + case "bnHoldLSDown": return DS4Controls.LYPos; + case "bnHoldRSRight": return DS4Controls.RXPos; + case "bnHoldRSDown": return DS4Controls.RYPos; + case "bnHoldL2": return DS4Controls.L2; + case "bnHoldR2": return DS4Controls.R2; + + case "bnHoldTouchLeft": return DS4Controls.TouchLeft; + case "bnHoldTouchMulti": return DS4Controls.TouchMulti; + case "bnHoldTouchUpper": return DS4Controls.TouchUpper; + case "bnHoldTouchRight": return DS4Controls.TouchRight; + case "bnHoldGsyroXP": return DS4Controls.GyroXPos; + case "bnHoldGyroXN": return DS4Controls.GyroXNeg; + case "bnHoldGyroZP": return DS4Controls.GyroZPos; + case "bnHoldGyroZN": return DS4Controls.GyroZNeg; } return 0; } diff --git a/DS4Tool/KBM360.cs b/DS4Tool/KBM360.cs index e68e9b6..17732e7 100644 --- a/DS4Tool/KBM360.cs +++ b/DS4Tool/KBM360.cs @@ -29,13 +29,18 @@ namespace ScpServer cbScanCode.Checked = button.Font.Bold; //cBMacro.Checked = button.Font.Underline; lBMacroOn.Visible = button.Font.Underline; - if (button.Name.StartsWith("bn")) - Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(2)); - else if (button.Name.StartsWith("sbn")) + if (button.Name.StartsWith("bnHold")) { - Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(3)); - btnFallBack.Text = "Fall Back"; + Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(6)); + btnFallBack.Text = "Disable"; } + else if (button.Name.StartsWith("bnShift")) + { + Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(7)); + btnFallBack.Text = "Fall Back"; + } + else if (button.Name.StartsWith("bn")) + Text = Properties.Resources.SelectActionTitle.Replace("*action*", button.Name.Substring(2)); foreach (System.Windows.Forms.Control control in this.Controls) if (control is Button) ((Button)control).Click += anybtn_Click; diff --git a/DS4Tool/Options.Designer.cs b/DS4Tool/Options.Designer.cs index 45deb3e..467807a 100644 --- a/DS4Tool/Options.Designer.cs +++ b/DS4Tool/Options.Designer.cs @@ -29,45 +29,6 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options)); - this.bnL2 = new System.Windows.Forms.Button(); - this.bnR2 = new System.Windows.Forms.Button(); - this.bnTouchUpper = new System.Windows.Forms.Button(); - this.bnTouchMulti = new System.Windows.Forms.Button(); - this.bnTouchRight = new System.Windows.Forms.Button(); - this.bnTouchLeft = new System.Windows.Forms.Button(); - this.MainPanel = new System.Windows.Forms.Panel(); - this.pBController = new System.Windows.Forms.PictureBox(); - this.bnR1 = new System.Windows.Forms.Button(); - this.bnCross = new System.Windows.Forms.Button(); - this.bnCircle = new System.Windows.Forms.Button(); - this.btnRightStick = new System.Windows.Forms.Button(); - this.bnSquare = new System.Windows.Forms.Button(); - this.btnLightbar = new System.Windows.Forms.Button(); - this.bnTriangle = new System.Windows.Forms.Button(); - this.bnUp = new System.Windows.Forms.Button(); - this.btnLeftStick = new System.Windows.Forms.Button(); - this.bnDown = new System.Windows.Forms.Button(); - this.bnRight = new System.Windows.Forms.Button(); - this.bnLeft = new System.Windows.Forms.Button(); - this.bnL1 = new System.Windows.Forms.Button(); - this.bnOptions = new System.Windows.Forms.Button(); - this.bnPS = new System.Windows.Forms.Button(); - this.bnShare = new System.Windows.Forms.Button(); - this.SticksPanel = new System.Windows.Forms.Panel(); - this.btnFullView = new System.Windows.Forms.Button(); - this.pBSticks = new System.Windows.Forms.PictureBox(); - this.bnL3 = new System.Windows.Forms.Button(); - this.bnRSDown = new System.Windows.Forms.Button(); - this.bnLSUp = new System.Windows.Forms.Button(); - this.bnRSUp = new System.Windows.Forms.Button(); - this.bnLSLeft = new System.Windows.Forms.Button(); - this.bnRSRight = new System.Windows.Forms.Button(); - this.bnLSRight = new System.Windows.Forms.Button(); - this.bnRSLeft = new System.Windows.Forms.Button(); - this.bnLSDown = new System.Windows.Forms.Button(); - this.bnR3 = new System.Windows.Forms.Button(); - this.lbControlTip = new System.Windows.Forms.Label(); - this.lBControls = new System.Windows.Forms.ListBox(); this.lowColorChooserButton = new System.Windows.Forms.Button(); this.nUDRainbow = new System.Windows.Forms.NumericUpDown(); this.pBRainbow = new System.Windows.Forms.PictureBox(); @@ -94,15 +55,8 @@ this.lbIdleMinutes = new System.Windows.Forms.Label(); this.nUDIdleDisconnect = new System.Windows.Forms.NumericUpDown(); this.nUDR2 = new System.Windows.Forms.NumericUpDown(); - this.tBsixaxisAccelZ = new System.Windows.Forms.TrackBar(); this.cBFlushHIDQueue = new System.Windows.Forms.CheckBox(); - this.tBsixaxisAccelY = new System.Windows.Forms.TrackBar(); - this.tBsixaxisAccelX = new System.Windows.Forms.TrackBar(); - this.tBsixaxisGyroZ = new System.Windows.Forms.TrackBar(); - this.tBsixaxisGyroY = new System.Windows.Forms.TrackBar(); - this.tBsixaxisGyroX = new System.Windows.Forms.TrackBar(); this.nUDRumbleBoost = new System.Windows.Forms.NumericUpDown(); - this.lb6Accel = new System.Windows.Forms.Label(); this.btnRumbleTest = new System.Windows.Forms.Button(); this.lbFull = new System.Windows.Forms.Label(); this.lbLowRed = new System.Windows.Forms.Label(); @@ -112,9 +66,8 @@ this.tBLowGreenBar = new System.Windows.Forms.TrackBar(); this.tBLowBlueBar = new System.Windows.Forms.TrackBar(); this.lbEmpty = new System.Windows.Forms.Label(); - this.FullPanel = new System.Windows.Forms.Panel(); - this.lowBatteryPanel = new System.Windows.Forms.Panel(); - this.lb6Gryo = new System.Windows.Forms.Label(); + this.pnlFull = new System.Windows.Forms.Panel(); + this.pnlLowBattery = new System.Windows.Forms.Panel(); this.lbRS = new System.Windows.Forms.Label(); this.lbLS = new System.Windows.Forms.Label(); this.nUDRS = new System.Windows.Forms.NumericUpDown(); @@ -134,15 +87,6 @@ this.cBControllerInput = new System.Windows.Forms.CheckBox(); this.cBIdleDisconnect = new System.Windows.Forms.CheckBox(); this.gBLightbar = new System.Windows.Forms.GroupBox(); - this.ShiftPanel = new System.Windows.Forms.Panel(); - this.cBShiftLight = new System.Windows.Forms.CheckBox(); - this.lbShift = new System.Windows.Forms.Label(); - this.lbShiftRed = new System.Windows.Forms.Label(); - this.lbShiftGreen = new System.Windows.Forms.Label(); - this.lbShiftBlue = new System.Windows.Forms.Label(); - this.tBShiftRedBar = new System.Windows.Forms.TrackBar(); - this.tBShiftGreenBar = new System.Windows.Forms.TrackBar(); - this.tBShiftBlueBar = new System.Windows.Forms.TrackBar(); this.btnChargingColor = new System.Windows.Forms.Button(); this.rBColor = new System.Windows.Forms.RadioButton(); this.rBFade = new System.Windows.Forms.RadioButton(); @@ -152,6 +96,15 @@ this.lbPercentFlashBar = new System.Windows.Forms.Label(); this.nUDflashLED = new System.Windows.Forms.NumericUpDown(); this.lbFlashAt = new System.Windows.Forms.Label(); + this.pnlShift = new System.Windows.Forms.Panel(); + this.cBShiftLight = new System.Windows.Forms.CheckBox(); + this.lbShift = new System.Windows.Forms.Label(); + this.lbShiftRed = new System.Windows.Forms.Label(); + this.lbShiftGreen = new System.Windows.Forms.Label(); + this.lbShiftBlue = new System.Windows.Forms.Label(); + this.tBShiftRedBar = new System.Windows.Forms.TrackBar(); + this.tBShiftGreenBar = new System.Windows.Forms.TrackBar(); + this.tBShiftBlueBar = new System.Windows.Forms.TrackBar(); this.gBRumble = new System.Windows.Forms.GroupBox(); this.lbPercentRumble = new System.Windows.Forms.Label(); this.gBDeadzone = new System.Windows.Forms.GroupBox(); @@ -159,88 +112,131 @@ this.lbSixaxisZ = new System.Windows.Forms.Label(); this.nUDSZ = new System.Windows.Forms.NumericUpDown(); this.nUDSX = new System.Windows.Forms.NumericUpDown(); - this.tabControls = new System.Windows.Forms.TabControl(); - this.tPControls = new System.Windows.Forms.TabPage(); - this.lbGryo = new System.Windows.Forms.Label(); - this.fLPTiltControls = new System.Windows.Forms.FlowLayoutPanel(); - this.bnGyroZN = new System.Windows.Forms.Button(); - this.bnGyroZP = new System.Windows.Forms.Button(); - this.bnGyroXP = new System.Windows.Forms.Button(); - this.bnGyroXN = new System.Windows.Forms.Button(); - this.tPShiftMod = new System.Windows.Forms.TabPage(); - this.slbGryo = new System.Windows.Forms.Label(); - this.sfLPTiltControls = new System.Windows.Forms.FlowLayoutPanel(); - this.sbnGyroZN = new System.Windows.Forms.Button(); - this.sbnGyroZP = new System.Windows.Forms.Button(); - this.sbnGyroXP = new System.Windows.Forms.Button(); - this.sbnGyroXN = new System.Windows.Forms.Button(); - this.cBShiftControl = new System.Windows.Forms.ComboBox(); - this.lBShiftControls = new System.Windows.Forms.ListBox(); - this.lbHold = new System.Windows.Forms.Label(); - this.lbtoUse = new System.Windows.Forms.Label(); - this.ShiftMainPanel = new System.Windows.Forms.Panel(); - this.spBController = new System.Windows.Forms.PictureBox(); - this.sbnTouchUpper = new System.Windows.Forms.Button(); - this.sbnTouchLeft = new System.Windows.Forms.Button(); - this.sbnTouchRight = new System.Windows.Forms.Button(); - this.sbnTouchMulti = new System.Windows.Forms.Button(); - this.sbnR1 = new System.Windows.Forms.Button(); - this.sbnCross = new System.Windows.Forms.Button(); - this.sbnCircle = new System.Windows.Forms.Button(); - this.sbtnRightStick = new System.Windows.Forms.Button(); - this.sbnSquare = new System.Windows.Forms.Button(); - this.sbtnLightbar = new System.Windows.Forms.Button(); - this.sbnTriangle = new System.Windows.Forms.Button(); - this.sbnUp = new System.Windows.Forms.Button(); - this.sbtnLeftStick = new System.Windows.Forms.Button(); - this.sbnDown = new System.Windows.Forms.Button(); - this.sbnL2 = new System.Windows.Forms.Button(); - this.sbnRight = new System.Windows.Forms.Button(); - this.sbnR2 = new System.Windows.Forms.Button(); - this.sbnLeft = new System.Windows.Forms.Button(); - this.sbnL1 = new System.Windows.Forms.Button(); - this.sbnOptions = new System.Windows.Forms.Button(); - this.sbnPS = new System.Windows.Forms.Button(); - this.sbnShare = new System.Windows.Forms.Button(); - this.ShiftSticksPanel = new System.Windows.Forms.Panel(); - this.sbtnFullView = new System.Windows.Forms.Button(); - this.spBSticks = new System.Windows.Forms.PictureBox(); - this.sbnL3 = new System.Windows.Forms.Button(); - this.sbnRSDown = new System.Windows.Forms.Button(); - this.sbnLSUp = new System.Windows.Forms.Button(); - this.sbnRSUp = new System.Windows.Forms.Button(); - this.sbnLSLeft = new System.Windows.Forms.Button(); - this.sbnRSRight = new System.Windows.Forms.Button(); - this.sbnLSRight = new System.Windows.Forms.Button(); - this.sbnRSLeft = new System.Windows.Forms.Button(); - this.sbnLSDown = new System.Windows.Forms.Button(); - this.sbnR3 = new System.Windows.Forms.Button(); - this.tPController = new System.Windows.Forms.TabPage(); - this.SixaxisPanel = new System.Windows.Forms.Panel(); - this.lbL2Track = new System.Windows.Forms.Label(); - this.pBDelayTracker = new System.Windows.Forms.PictureBox(); - this.btnSATrack = new System.Windows.Forms.Button(); - this.btnRSTrack = new System.Windows.Forms.Button(); - this.lbRSTip = new System.Windows.Forms.Label(); - this.lbInputDelay = new System.Windows.Forms.Label(); - this.lbR2Track = new System.Windows.Forms.Label(); - this.lbLSTip = new System.Windows.Forms.Label(); - this.lbSATip = new System.Windows.Forms.Label(); - this.btnLSTrack = new System.Windows.Forms.Button(); - this.pBSADeadzone = new System.Windows.Forms.PictureBox(); - this.pBRSDeadzone = new System.Windows.Forms.PictureBox(); - this.lbRSTrack = new System.Windows.Forms.Label(); - this.pBLSDeadzone = new System.Windows.Forms.PictureBox(); - this.lbLSTrack = new System.Windows.Forms.Label(); - this.tBR2 = new System.Windows.Forms.TrackBar(); - this.tBL2 = new System.Windows.Forms.TrackBar(); - this.lbSATrack = new System.Windows.Forms.Label(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.advColorDialog = new ScpServer.AdvancedColorDialog(); - this.MainPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pBController)).BeginInit(); - this.SticksPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pBSticks)).BeginInit(); + this.tPController = new System.Windows.Forms.TabPage(); + this.lbSATrack = new System.Windows.Forms.Label(); + this.tBL2 = new System.Windows.Forms.TrackBar(); + this.tBR2 = new System.Windows.Forms.TrackBar(); + this.lbLSTrack = new System.Windows.Forms.Label(); + this.pBLSDeadzone = new System.Windows.Forms.PictureBox(); + this.lbRSTrack = new System.Windows.Forms.Label(); + this.pBRSDeadzone = new System.Windows.Forms.PictureBox(); + this.pBSADeadzone = new System.Windows.Forms.PictureBox(); + this.btnLSTrack = new System.Windows.Forms.Button(); + this.lbSATip = new System.Windows.Forms.Label(); + this.lbLSTip = new System.Windows.Forms.Label(); + this.lbR2Track = new System.Windows.Forms.Label(); + this.lbInputDelay = new System.Windows.Forms.Label(); + this.lbRSTip = new System.Windows.Forms.Label(); + this.btnRSTrack = new System.Windows.Forms.Button(); + this.btnSATrack = new System.Windows.Forms.Button(); + this.pBDelayTracker = new System.Windows.Forms.PictureBox(); + this.lbL2Track = new System.Windows.Forms.Label(); + this.pnlSixaxis = new System.Windows.Forms.Panel(); + this.tBsixaxisAccelZ = new System.Windows.Forms.TrackBar(); + this.tBsixaxisAccelY = new System.Windows.Forms.TrackBar(); + this.tBsixaxisGyroZ = new System.Windows.Forms.TrackBar(); + this.tBsixaxisGyroY = new System.Windows.Forms.TrackBar(); + this.lb6Gryo = new System.Windows.Forms.Label(); + this.tBsixaxisGyroX = new System.Windows.Forms.TrackBar(); + this.lb6Accel = new System.Windows.Forms.Label(); + this.tBsixaxisAccelX = new System.Windows.Forms.TrackBar(); + this.tPShiftMod = new System.Windows.Forms.TabPage(); + this.pnlShiftSticks = new System.Windows.Forms.Panel(); + this.bnShiftR3 = new System.Windows.Forms.Button(); + this.bnShiftLSDown = new System.Windows.Forms.Button(); + this.bnShiftRSLeft = new System.Windows.Forms.Button(); + this.bnShiftLSRight = new System.Windows.Forms.Button(); + this.bnShiftRSRight = new System.Windows.Forms.Button(); + this.bnShiftLSLeft = new System.Windows.Forms.Button(); + this.bnShiftRSUp = new System.Windows.Forms.Button(); + this.bnShiftLSUp = new System.Windows.Forms.Button(); + this.bnShiftRSDown = new System.Windows.Forms.Button(); + this.bnShiftL3 = new System.Windows.Forms.Button(); + this.pBShiftSticks = new System.Windows.Forms.PictureBox(); + this.btnShiftFullView = new System.Windows.Forms.Button(); + this.pnlShiftMain = new System.Windows.Forms.Panel(); + this.bnShiftShare = new System.Windows.Forms.Button(); + this.bnShiftPS = new System.Windows.Forms.Button(); + this.bnShiftOptions = new System.Windows.Forms.Button(); + this.bnShiftL1 = new System.Windows.Forms.Button(); + this.bnShiftLeft = new System.Windows.Forms.Button(); + this.bnShiftR2 = new System.Windows.Forms.Button(); + this.bnShiftRight = new System.Windows.Forms.Button(); + this.bnShiftL2 = new System.Windows.Forms.Button(); + this.bnShiftDown = new System.Windows.Forms.Button(); + this.btnShiftLeftStick = new System.Windows.Forms.Button(); + this.bnShiftUp = new System.Windows.Forms.Button(); + this.bnShiftTriangle = new System.Windows.Forms.Button(); + this.btnShiftLightbar = new System.Windows.Forms.Button(); + this.bnShiftSquare = new System.Windows.Forms.Button(); + this.btnShiftRightStick = new System.Windows.Forms.Button(); + this.bnShiftCircle = new System.Windows.Forms.Button(); + this.bnShiftCross = new System.Windows.Forms.Button(); + this.bnShiftR1 = new System.Windows.Forms.Button(); + this.bnShiftTouchMulti = new System.Windows.Forms.Button(); + this.bnShiftTouchRight = new System.Windows.Forms.Button(); + this.bnShiftTouchLeft = new System.Windows.Forms.Button(); + this.bnShiftTouchUpper = new System.Windows.Forms.Button(); + this.pBShiftController = new System.Windows.Forms.PictureBox(); + this.lbtoUse = new System.Windows.Forms.Label(); + this.lbHold = new System.Windows.Forms.Label(); + this.lBShiftControls = new System.Windows.Forms.ListBox(); + this.cBShiftControl = new System.Windows.Forms.ComboBox(); + this.fLPShiftTiltControls = new System.Windows.Forms.FlowLayoutPanel(); + this.bnShiftGyroXN = new System.Windows.Forms.Button(); + this.bnShiftGyroXP = new System.Windows.Forms.Button(); + this.bnShiftGyroZP = new System.Windows.Forms.Button(); + this.bnShiftGyroZN = new System.Windows.Forms.Button(); + this.lbShiftGryo = new System.Windows.Forms.Label(); + this.tPControls = new System.Windows.Forms.TabPage(); + this.pnlSticks = new System.Windows.Forms.Panel(); + this.bnR3 = new System.Windows.Forms.Button(); + this.bnLSDown = new System.Windows.Forms.Button(); + this.bnRSLeft = new System.Windows.Forms.Button(); + this.bnLSRight = new System.Windows.Forms.Button(); + this.bnRSRight = new System.Windows.Forms.Button(); + this.bnLSLeft = new System.Windows.Forms.Button(); + this.bnRSUp = new System.Windows.Forms.Button(); + this.bnLSUp = new System.Windows.Forms.Button(); + this.bnRSDown = new System.Windows.Forms.Button(); + this.bnL3 = new System.Windows.Forms.Button(); + this.pBSticks = new System.Windows.Forms.PictureBox(); + this.btnFullView = new System.Windows.Forms.Button(); + this.lbControlTip = new System.Windows.Forms.Label(); + this.lBControls = new System.Windows.Forms.ListBox(); + this.pnlMain = new System.Windows.Forms.Panel(); + this.bnR2 = new System.Windows.Forms.Button(); + this.bnL2 = new System.Windows.Forms.Button(); + this.bnShare = new System.Windows.Forms.Button(); + this.bnPS = new System.Windows.Forms.Button(); + this.bnOptions = new System.Windows.Forms.Button(); + this.bnL1 = new System.Windows.Forms.Button(); + this.bnLeft = new System.Windows.Forms.Button(); + this.bnRight = new System.Windows.Forms.Button(); + this.bnDown = new System.Windows.Forms.Button(); + this.btnLeftStick = new System.Windows.Forms.Button(); + this.bnUp = new System.Windows.Forms.Button(); + this.bnTriangle = new System.Windows.Forms.Button(); + this.btnLightbar = new System.Windows.Forms.Button(); + this.bnSquare = new System.Windows.Forms.Button(); + this.btnRightStick = new System.Windows.Forms.Button(); + this.bnCircle = new System.Windows.Forms.Button(); + this.bnCross = new System.Windows.Forms.Button(); + this.bnR1 = new System.Windows.Forms.Button(); + this.bnTouchMulti = new System.Windows.Forms.Button(); + this.bnTouchRight = new System.Windows.Forms.Button(); + this.bnTouchLeft = new System.Windows.Forms.Button(); + this.bnTouchUpper = new System.Windows.Forms.Button(); + this.pBController = new System.Windows.Forms.PictureBox(); + this.fLPTiltControls = new System.Windows.Forms.FlowLayoutPanel(); + this.bnGyroXN = new System.Windows.Forms.Button(); + this.bnGyroXP = new System.Windows.Forms.Button(); + this.bnGyroZP = new System.Windows.Forms.Button(); + this.bnGyroZN = new System.Windows.Forms.Button(); + this.lbGryo = new System.Windows.Forms.Label(); + this.tabControls = new System.Windows.Forms.TabControl(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).BeginInit(); @@ -251,18 +247,12 @@ ((System.ComponentModel.ISupportInitialize)(this.nUDTouch)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDIdleDisconnect)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDR2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelZ)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelY)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelX)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroZ)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroY)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRumbleBoost)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowRedBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowBlueBar)).BeginInit(); - this.FullPanel.SuspendLayout(); - this.lowBatteryPanel.SuspendLayout(); + this.pnlFull.SuspendLayout(); + this.pnlLowBattery.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDRS)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numUDMouseSens)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDLS)).BeginInit(); @@ -272,604 +262,44 @@ ((System.ComponentModel.ISupportInitialize)(this.pBProgram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).BeginInit(); this.gBLightbar.SuspendLayout(); - this.ShiftPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); + this.pnlShift.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).BeginInit(); this.gBRumble.SuspendLayout(); this.gBDeadzone.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDSZ)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSX)).BeginInit(); - this.tabControls.SuspendLayout(); - this.tPControls.SuspendLayout(); - this.fLPTiltControls.SuspendLayout(); - this.tPShiftMod.SuspendLayout(); - this.sfLPTiltControls.SuspendLayout(); - this.ShiftMainPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.spBController)).BeginInit(); - this.ShiftSticksPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.spBSticks)).BeginInit(); this.tPController.SuspendLayout(); - this.SixaxisPanel.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pBDelayTracker)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBSADeadzone)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBRSDeadzone)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBLSDeadzone)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBR2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tBL2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBR2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBLSDeadzone)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBRSDeadzone)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBSADeadzone)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBDelayTracker)).BeginInit(); + this.pnlSixaxis.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelZ)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelY)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroZ)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroY)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroX)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelX)).BeginInit(); + this.tPShiftMod.SuspendLayout(); + this.pnlShiftSticks.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pBShiftSticks)).BeginInit(); + this.pnlShiftMain.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pBShiftController)).BeginInit(); + this.fLPShiftTiltControls.SuspendLayout(); + this.tPControls.SuspendLayout(); + this.pnlSticks.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pBSticks)).BeginInit(); + this.pnlMain.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pBController)).BeginInit(); + this.fLPTiltControls.SuspendLayout(); + this.tabControls.SuspendLayout(); this.SuspendLayout(); // - // bnL2 - // - this.bnL2.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnL2, "bnL2"); - this.bnL2.Cursor = System.Windows.Forms.Cursors.Default; - this.bnL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnL2.FlatAppearance.BorderSize = 0; - this.bnL2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnL2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnL2.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnL2.Name = "bnL2"; - this.bnL2.UseVisualStyleBackColor = false; - this.bnL2.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnR2 - // - this.bnR2.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnR2, "bnR2"); - this.bnR2.Cursor = System.Windows.Forms.Cursors.Default; - this.bnR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnR2.FlatAppearance.BorderSize = 0; - this.bnR2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnR2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnR2.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnR2.Name = "bnR2"; - this.bnR2.UseVisualStyleBackColor = false; - this.bnR2.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnTouchUpper - // - this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); - this.bnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; - this.bnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnTouchUpper.FlatAppearance.BorderSize = 0; - this.bnTouchUpper.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnTouchUpper.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnTouchUpper.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnTouchUpper.Name = "bnTouchUpper"; - this.bnTouchUpper.UseVisualStyleBackColor = false; - this.bnTouchUpper.Click += new System.EventHandler(this.Show_ControlsBn); - this.bnTouchUpper.MouseLeave += new System.EventHandler(this.Toucpad_Leave); - this.bnTouchUpper.MouseHover += new System.EventHandler(this.bnTouchUpper_MouseHover); - // - // bnTouchMulti - // - this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); - this.bnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; - this.bnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnTouchMulti.FlatAppearance.BorderSize = 0; - this.bnTouchMulti.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnTouchMulti.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnTouchMulti.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnTouchMulti.Name = "bnTouchMulti"; - this.bnTouchMulti.UseVisualStyleBackColor = false; - this.bnTouchMulti.Click += new System.EventHandler(this.Show_ControlsBn); - this.bnTouchMulti.MouseLeave += new System.EventHandler(this.Toucpad_Leave); - this.bnTouchMulti.MouseHover += new System.EventHandler(this.bnTouchMulti_MouseHover); - // - // bnTouchRight - // - this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); - this.bnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; - this.bnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnTouchRight.FlatAppearance.BorderSize = 0; - this.bnTouchRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnTouchRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnTouchRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnTouchRight.Name = "bnTouchRight"; - this.bnTouchRight.UseVisualStyleBackColor = false; - this.bnTouchRight.Click += new System.EventHandler(this.Show_ControlsBn); - this.bnTouchRight.MouseLeave += new System.EventHandler(this.Toucpad_Leave); - this.bnTouchRight.MouseHover += new System.EventHandler(this.bnTouchRight_MouseHover); - // - // bnTouchLeft - // - this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); - this.bnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.bnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnTouchLeft.FlatAppearance.BorderSize = 0; - this.bnTouchLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnTouchLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnTouchLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnTouchLeft.Name = "bnTouchLeft"; - this.bnTouchLeft.UseVisualStyleBackColor = false; - this.bnTouchLeft.Click += new System.EventHandler(this.Show_ControlsBn); - this.bnTouchLeft.MouseLeave += new System.EventHandler(this.Toucpad_Leave); - this.bnTouchLeft.MouseHover += new System.EventHandler(this.bnTouchLeft_MouseHover); - // - // MainPanel - // - this.MainPanel.Controls.Add(this.pBController); - this.MainPanel.Controls.Add(this.bnTouchUpper); - this.MainPanel.Controls.Add(this.bnTouchLeft); - this.MainPanel.Controls.Add(this.bnTouchRight); - this.MainPanel.Controls.Add(this.bnTouchMulti); - this.MainPanel.Controls.Add(this.bnR1); - this.MainPanel.Controls.Add(this.bnCross); - this.MainPanel.Controls.Add(this.bnCircle); - this.MainPanel.Controls.Add(this.btnRightStick); - this.MainPanel.Controls.Add(this.bnSquare); - this.MainPanel.Controls.Add(this.btnLightbar); - this.MainPanel.Controls.Add(this.bnTriangle); - this.MainPanel.Controls.Add(this.bnUp); - this.MainPanel.Controls.Add(this.btnLeftStick); - this.MainPanel.Controls.Add(this.bnDown); - this.MainPanel.Controls.Add(this.bnRight); - this.MainPanel.Controls.Add(this.bnLeft); - this.MainPanel.Controls.Add(this.bnL1); - this.MainPanel.Controls.Add(this.bnOptions); - this.MainPanel.Controls.Add(this.bnPS); - this.MainPanel.Controls.Add(this.bnShare); - this.MainPanel.Controls.Add(this.bnL2); - this.MainPanel.Controls.Add(this.bnR2); - resources.ApplyResources(this.MainPanel, "MainPanel"); - this.MainPanel.Name = "MainPanel"; - // - // pBController - // - resources.ApplyResources(this.pBController, "pBController"); - this.pBController.Image = global::ScpServer.Properties.Resources.DS4_Controller; - this.pBController.Name = "pBController"; - this.pBController.TabStop = false; - // - // bnR1 - // - this.bnR1.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnR1, "bnR1"); - this.bnR1.Cursor = System.Windows.Forms.Cursors.Default; - this.bnR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnR1.FlatAppearance.BorderSize = 0; - this.bnR1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnR1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnR1.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnR1.Name = "bnR1"; - this.bnR1.UseVisualStyleBackColor = false; - this.bnR1.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnCross - // - this.bnCross.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnCross, "bnCross"); - this.bnCross.Cursor = System.Windows.Forms.Cursors.Default; - this.bnCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnCross.FlatAppearance.BorderSize = 0; - this.bnCross.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnCross.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnCross.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnCross.Name = "bnCross"; - this.bnCross.UseVisualStyleBackColor = false; - this.bnCross.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnCircle - // - this.bnCircle.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnCircle, "bnCircle"); - this.bnCircle.Cursor = System.Windows.Forms.Cursors.Default; - this.bnCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnCircle.FlatAppearance.BorderSize = 0; - this.bnCircle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnCircle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnCircle.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnCircle.Name = "bnCircle"; - this.bnCircle.UseVisualStyleBackColor = false; - this.bnCircle.Click += new System.EventHandler(this.Show_ControlsBn); - // - // btnRightStick - // - this.btnRightStick.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.btnRightStick, "btnRightStick"); - this.btnRightStick.Cursor = System.Windows.Forms.Cursors.Default; - this.btnRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.btnRightStick.FlatAppearance.BorderSize = 0; - this.btnRightStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.btnRightStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.btnRightStick.ForeColor = System.Drawing.SystemColors.WindowText; - this.btnRightStick.Name = "btnRightStick"; - this.btnRightStick.UseVisualStyleBackColor = false; - this.btnRightStick.Click += new System.EventHandler(this.btnSticks_Enter); - // - // bnSquare - // - this.bnSquare.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnSquare, "bnSquare"); - this.bnSquare.Cursor = System.Windows.Forms.Cursors.Default; - this.bnSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnSquare.FlatAppearance.BorderSize = 0; - this.bnSquare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnSquare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnSquare.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnSquare.Name = "bnSquare"; - this.bnSquare.UseVisualStyleBackColor = false; - this.bnSquare.Click += new System.EventHandler(this.Show_ControlsBn); - // - // btnLightbar - // - this.btnLightbar.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.btnLightbar, "btnLightbar"); - this.btnLightbar.Cursor = System.Windows.Forms.Cursors.Default; - this.btnLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.btnLightbar.FlatAppearance.BorderSize = 0; - this.btnLightbar.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.btnLightbar.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.btnLightbar.ForeColor = System.Drawing.SystemColors.WindowText; - this.btnLightbar.Name = "btnLightbar"; - this.btnLightbar.UseVisualStyleBackColor = false; - this.btnLightbar.Click += new System.EventHandler(this.btnLightbar_Click); - // - // bnTriangle - // - this.bnTriangle.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnTriangle, "bnTriangle"); - this.bnTriangle.Cursor = System.Windows.Forms.Cursors.Default; - this.bnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnTriangle.FlatAppearance.BorderSize = 0; - this.bnTriangle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnTriangle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnTriangle.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnTriangle.Name = "bnTriangle"; - this.bnTriangle.UseVisualStyleBackColor = false; - this.bnTriangle.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnUp - // - this.bnUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnUp, "bnUp"); - this.bnUp.Cursor = System.Windows.Forms.Cursors.Default; - this.bnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.bnUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnUp.FlatAppearance.BorderSize = 0; - this.bnUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnUp.Name = "bnUp"; - this.bnUp.UseVisualStyleBackColor = false; - this.bnUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // btnLeftStick - // - this.btnLeftStick.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); - this.btnLeftStick.Cursor = System.Windows.Forms.Cursors.Default; - this.btnLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.btnLeftStick.FlatAppearance.BorderSize = 0; - this.btnLeftStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.btnLeftStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.btnLeftStick.ForeColor = System.Drawing.SystemColors.WindowText; - this.btnLeftStick.Name = "btnLeftStick"; - this.btnLeftStick.UseVisualStyleBackColor = false; - this.btnLeftStick.Click += new System.EventHandler(this.btnSticks_Enter); - // - // bnDown - // - this.bnDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnDown, "bnDown"); - this.bnDown.Cursor = System.Windows.Forms.Cursors.Default; - this.bnDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnDown.FlatAppearance.BorderSize = 0; - this.bnDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnDown.Name = "bnDown"; - this.bnDown.UseVisualStyleBackColor = false; - this.bnDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnRight - // - this.bnRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnRight, "bnRight"); - this.bnRight.Cursor = System.Windows.Forms.Cursors.Default; - this.bnRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnRight.FlatAppearance.BorderSize = 0; - this.bnRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnRight.Name = "bnRight"; - this.bnRight.UseVisualStyleBackColor = false; - this.bnRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnLeft - // - this.bnLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnLeft, "bnLeft"); - this.bnLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.bnLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnLeft.FlatAppearance.BorderSize = 0; - this.bnLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnLeft.Name = "bnLeft"; - this.bnLeft.UseVisualStyleBackColor = false; - this.bnLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnL1 - // - this.bnL1.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnL1, "bnL1"); - this.bnL1.Cursor = System.Windows.Forms.Cursors.Default; - this.bnL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnL1.FlatAppearance.BorderSize = 0; - this.bnL1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnL1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnL1.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnL1.Name = "bnL1"; - this.bnL1.UseVisualStyleBackColor = false; - this.bnL1.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnOptions - // - this.bnOptions.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnOptions, "bnOptions"); - this.bnOptions.Cursor = System.Windows.Forms.Cursors.Default; - this.bnOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnOptions.FlatAppearance.BorderSize = 0; - this.bnOptions.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnOptions.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnOptions.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnOptions.Name = "bnOptions"; - this.bnOptions.UseVisualStyleBackColor = false; - this.bnOptions.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnPS - // - this.bnPS.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnPS, "bnPS"); - this.bnPS.Cursor = System.Windows.Forms.Cursors.Default; - this.bnPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnPS.FlatAppearance.BorderSize = 0; - this.bnPS.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnPS.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnPS.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnPS.Name = "bnPS"; - this.bnPS.UseVisualStyleBackColor = false; - this.bnPS.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnShare - // - this.bnShare.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnShare, "bnShare"); - this.bnShare.Cursor = System.Windows.Forms.Cursors.Default; - this.bnShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnShare.FlatAppearance.BorderSize = 0; - this.bnShare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnShare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnShare.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnShare.Name = "bnShare"; - this.bnShare.UseVisualStyleBackColor = false; - this.bnShare.Click += new System.EventHandler(this.Show_ControlsBn); - // - // SticksPanel - // - this.SticksPanel.Controls.Add(this.btnFullView); - this.SticksPanel.Controls.Add(this.pBSticks); - this.SticksPanel.Controls.Add(this.bnL3); - this.SticksPanel.Controls.Add(this.bnRSDown); - this.SticksPanel.Controls.Add(this.bnLSUp); - this.SticksPanel.Controls.Add(this.bnRSUp); - this.SticksPanel.Controls.Add(this.bnLSLeft); - this.SticksPanel.Controls.Add(this.bnRSRight); - this.SticksPanel.Controls.Add(this.bnLSRight); - this.SticksPanel.Controls.Add(this.bnRSLeft); - this.SticksPanel.Controls.Add(this.bnLSDown); - this.SticksPanel.Controls.Add(this.bnR3); - resources.ApplyResources(this.SticksPanel, "SticksPanel"); - this.SticksPanel.Name = "SticksPanel"; - // - // btnFullView - // - resources.ApplyResources(this.btnFullView, "btnFullView"); - this.btnFullView.Name = "btnFullView"; - this.btnFullView.UseVisualStyleBackColor = true; - this.btnFullView.Click += new System.EventHandler(this.btnFullView_Click); - // - // pBSticks - // - resources.ApplyResources(this.pBSticks, "pBSticks"); - this.pBSticks.Image = global::ScpServer.Properties.Resources.sticks; - this.pBSticks.Name = "pBSticks"; - this.pBSticks.TabStop = false; - // - // bnL3 - // - this.bnL3.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnL3, "bnL3"); - this.bnL3.Cursor = System.Windows.Forms.Cursors.Default; - this.bnL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnL3.FlatAppearance.BorderSize = 0; - this.bnL3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnL3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnL3.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnL3.Name = "bnL3"; - this.bnL3.UseVisualStyleBackColor = false; - this.bnL3.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnRSDown - // - this.bnRSDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnRSDown, "bnRSDown"); - this.bnRSDown.Cursor = System.Windows.Forms.Cursors.Default; - this.bnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnRSDown.FlatAppearance.BorderSize = 0; - this.bnRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnRSDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnRSDown.Name = "bnRSDown"; - this.bnRSDown.UseVisualStyleBackColor = false; - this.bnRSDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnLSUp - // - this.bnLSUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnLSUp, "bnLSUp"); - this.bnLSUp.Cursor = System.Windows.Forms.Cursors.Default; - this.bnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnLSUp.FlatAppearance.BorderSize = 0; - this.bnLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnLSUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnLSUp.Name = "bnLSUp"; - this.bnLSUp.UseVisualStyleBackColor = false; - this.bnLSUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnRSUp - // - this.bnRSUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnRSUp, "bnRSUp"); - this.bnRSUp.Cursor = System.Windows.Forms.Cursors.Default; - this.bnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnRSUp.FlatAppearance.BorderSize = 0; - this.bnRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnRSUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnRSUp.Name = "bnRSUp"; - this.bnRSUp.UseVisualStyleBackColor = false; - this.bnRSUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnLSLeft - // - this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); - this.bnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.bnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnLSLeft.FlatAppearance.BorderSize = 0; - this.bnLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnLSLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnLSLeft.Name = "bnLSLeft"; - this.bnLSLeft.UseVisualStyleBackColor = false; - this.bnLSLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnRSRight - // - this.bnRSRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnRSRight, "bnRSRight"); - this.bnRSRight.Cursor = System.Windows.Forms.Cursors.Default; - this.bnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnRSRight.FlatAppearance.BorderSize = 0; - this.bnRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnRSRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnRSRight.Name = "bnRSRight"; - this.bnRSRight.UseVisualStyleBackColor = false; - this.bnRSRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnLSRight - // - this.bnLSRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnLSRight, "bnLSRight"); - this.bnLSRight.Cursor = System.Windows.Forms.Cursors.Default; - this.bnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnLSRight.FlatAppearance.BorderSize = 0; - this.bnLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnLSRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnLSRight.Name = "bnLSRight"; - this.bnLSRight.UseVisualStyleBackColor = false; - this.bnLSRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnRSLeft - // - this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); - this.bnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.bnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnRSLeft.FlatAppearance.BorderSize = 0; - this.bnRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnRSLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnRSLeft.Name = "bnRSLeft"; - this.bnRSLeft.UseVisualStyleBackColor = false; - this.bnRSLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnLSDown - // - this.bnLSDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnLSDown, "bnLSDown"); - this.bnLSDown.Cursor = System.Windows.Forms.Cursors.Default; - this.bnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnLSDown.FlatAppearance.BorderSize = 0; - this.bnLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnLSDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnLSDown.Name = "bnLSDown"; - this.bnLSDown.UseVisualStyleBackColor = false; - this.bnLSDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // bnR3 - // - this.bnR3.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.bnR3, "bnR3"); - this.bnR3.Cursor = System.Windows.Forms.Cursors.Default; - this.bnR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.bnR3.FlatAppearance.BorderSize = 0; - this.bnR3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.bnR3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.bnR3.ForeColor = System.Drawing.SystemColors.WindowText; - this.bnR3.Name = "bnR3"; - this.bnR3.UseVisualStyleBackColor = false; - this.bnR3.Click += new System.EventHandler(this.Show_ControlsBn); - // - // lbControlTip - // - resources.ApplyResources(this.lbControlTip, "lbControlTip"); - this.lbControlTip.Name = "lbControlTip"; - // - // lBControls - // - this.lBControls.FormattingEnabled = true; - this.lBControls.Items.AddRange(new object[] { - resources.GetString("lBControls.Items"), - resources.GetString("lBControls.Items1"), - resources.GetString("lBControls.Items2"), - resources.GetString("lBControls.Items3"), - resources.GetString("lBControls.Items4"), - resources.GetString("lBControls.Items5"), - resources.GetString("lBControls.Items6"), - resources.GetString("lBControls.Items7"), - resources.GetString("lBControls.Items8"), - resources.GetString("lBControls.Items9"), - resources.GetString("lBControls.Items10"), - resources.GetString("lBControls.Items11"), - resources.GetString("lBControls.Items12"), - resources.GetString("lBControls.Items13"), - resources.GetString("lBControls.Items14"), - resources.GetString("lBControls.Items15"), - resources.GetString("lBControls.Items16"), - resources.GetString("lBControls.Items17"), - resources.GetString("lBControls.Items18"), - resources.GetString("lBControls.Items19"), - resources.GetString("lBControls.Items20"), - resources.GetString("lBControls.Items21"), - resources.GetString("lBControls.Items22"), - resources.GetString("lBControls.Items23"), - resources.GetString("lBControls.Items24"), - resources.GetString("lBControls.Items25"), - resources.GetString("lBControls.Items26"), - resources.GetString("lBControls.Items27"), - resources.GetString("lBControls.Items28"), - resources.GetString("lBControls.Items29"), - resources.GetString("lBControls.Items30"), - resources.GetString("lBControls.Items31"), - resources.GetString("lBControls.Items32")}); - resources.ApplyResources(this.lBControls, "lBControls"); - this.lBControls.Name = "lBControls"; - this.lBControls.DoubleClick += new System.EventHandler(this.Show_ControlsList); - this.lBControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); - // // lowColorChooserButton // this.lowColorChooserButton.BackColor = System.Drawing.Color.White; @@ -1117,15 +547,6 @@ this.nUDR2.Name = "nUDR2"; this.nUDR2.ValueChanged += new System.EventHandler(this.numUDR2_ValueChanged); // - // tBsixaxisAccelZ - // - resources.ApplyResources(this.tBsixaxisAccelZ, "tBsixaxisAccelZ"); - this.tBsixaxisAccelZ.BackColor = System.Drawing.Color.White; - this.tBsixaxisAccelZ.Maximum = 8500; - this.tBsixaxisAccelZ.Minimum = -8500; - this.tBsixaxisAccelZ.Name = "tBsixaxisAccelZ"; - this.tBsixaxisAccelZ.TickFrequency = 4750; - // // cBFlushHIDQueue // resources.ApplyResources(this.cBFlushHIDQueue, "cBFlushHIDQueue"); @@ -1133,51 +554,6 @@ this.cBFlushHIDQueue.UseVisualStyleBackColor = true; this.cBFlushHIDQueue.CheckedChanged += new System.EventHandler(this.flushHIDQueue_CheckedChanged); // - // tBsixaxisAccelY - // - resources.ApplyResources(this.tBsixaxisAccelY, "tBsixaxisAccelY"); - this.tBsixaxisAccelY.BackColor = System.Drawing.Color.White; - this.tBsixaxisAccelY.Maximum = 8500; - this.tBsixaxisAccelY.Minimum = -8500; - this.tBsixaxisAccelY.Name = "tBsixaxisAccelY"; - this.tBsixaxisAccelY.TickFrequency = 4750; - // - // tBsixaxisAccelX - // - resources.ApplyResources(this.tBsixaxisAccelX, "tBsixaxisAccelX"); - this.tBsixaxisAccelX.BackColor = System.Drawing.Color.White; - this.tBsixaxisAccelX.Maximum = 8500; - this.tBsixaxisAccelX.Minimum = -8500; - this.tBsixaxisAccelX.Name = "tBsixaxisAccelX"; - this.tBsixaxisAccelX.TickFrequency = 4750; - // - // tBsixaxisGyroZ - // - resources.ApplyResources(this.tBsixaxisGyroZ, "tBsixaxisGyroZ"); - this.tBsixaxisGyroZ.BackColor = System.Drawing.Color.White; - this.tBsixaxisGyroZ.Maximum = 8500; - this.tBsixaxisGyroZ.Minimum = -8500; - this.tBsixaxisGyroZ.Name = "tBsixaxisGyroZ"; - this.tBsixaxisGyroZ.TickFrequency = 4750; - // - // tBsixaxisGyroY - // - resources.ApplyResources(this.tBsixaxisGyroY, "tBsixaxisGyroY"); - this.tBsixaxisGyroY.BackColor = System.Drawing.Color.White; - this.tBsixaxisGyroY.Maximum = 8500; - this.tBsixaxisGyroY.Minimum = -8500; - this.tBsixaxisGyroY.Name = "tBsixaxisGyroY"; - this.tBsixaxisGyroY.TickFrequency = 4750; - // - // tBsixaxisGyroX - // - resources.ApplyResources(this.tBsixaxisGyroX, "tBsixaxisGyroX"); - this.tBsixaxisGyroX.BackColor = System.Drawing.Color.White; - this.tBsixaxisGyroX.Maximum = 8500; - this.tBsixaxisGyroX.Minimum = -8500; - this.tBsixaxisGyroX.Name = "tBsixaxisGyroX"; - this.tBsixaxisGyroX.TickFrequency = 4750; - // // nUDRumbleBoost // resources.ApplyResources(this.nUDRumbleBoost, "nUDRumbleBoost"); @@ -1194,11 +570,6 @@ 0}); this.nUDRumbleBoost.ValueChanged += new System.EventHandler(this.rumbleBoostBar_ValueChanged); // - // lb6Accel - // - resources.ApplyResources(this.lb6Accel, "lb6Accel"); - this.lb6Accel.Name = "lb6Accel"; - // // btnRumbleTest // resources.ApplyResources(this.btnRumbleTest, "btnRumbleTest"); @@ -1271,35 +642,30 @@ this.lbEmpty.Name = "lbEmpty"; this.lbEmpty.Click += new System.EventHandler(this.lbEmpty_Click); // - // FullPanel + // pnlFull // - this.FullPanel.Controls.Add(this.lbFull); - this.FullPanel.Controls.Add(this.lbRed); - this.FullPanel.Controls.Add(this.lbGreen); - this.FullPanel.Controls.Add(this.lbBlue); - this.FullPanel.Controls.Add(this.tBRedBar); - this.FullPanel.Controls.Add(this.tBGreenBar); - this.FullPanel.Controls.Add(this.tBBlueBar); - resources.ApplyResources(this.FullPanel, "FullPanel"); - this.FullPanel.Name = "FullPanel"; + this.pnlFull.Controls.Add(this.lbFull); + this.pnlFull.Controls.Add(this.lbRed); + this.pnlFull.Controls.Add(this.lbGreen); + this.pnlFull.Controls.Add(this.lbBlue); + this.pnlFull.Controls.Add(this.tBRedBar); + this.pnlFull.Controls.Add(this.tBGreenBar); + this.pnlFull.Controls.Add(this.tBBlueBar); + resources.ApplyResources(this.pnlFull, "pnlFull"); + this.pnlFull.Name = "pnlFull"; // - // lowBatteryPanel + // pnlLowBattery // - this.lowBatteryPanel.Controls.Add(this.lowColorChooserButton); - this.lowBatteryPanel.Controls.Add(this.lbLowRed); - this.lowBatteryPanel.Controls.Add(this.lbLowGreen); - this.lowBatteryPanel.Controls.Add(this.lbLowBlue); - this.lowBatteryPanel.Controls.Add(this.tBLowRedBar); - this.lowBatteryPanel.Controls.Add(this.tBLowGreenBar); - this.lowBatteryPanel.Controls.Add(this.tBLowBlueBar); - this.lowBatteryPanel.Controls.Add(this.lbEmpty); - resources.ApplyResources(this.lowBatteryPanel, "lowBatteryPanel"); - this.lowBatteryPanel.Name = "lowBatteryPanel"; - // - // lb6Gryo - // - resources.ApplyResources(this.lb6Gryo, "lb6Gryo"); - this.lb6Gryo.Name = "lb6Gryo"; + this.pnlLowBattery.Controls.Add(this.lowColorChooserButton); + this.pnlLowBattery.Controls.Add(this.lbLowRed); + this.pnlLowBattery.Controls.Add(this.lbLowGreen); + this.pnlLowBattery.Controls.Add(this.lbLowBlue); + this.pnlLowBattery.Controls.Add(this.tBLowRedBar); + this.pnlLowBattery.Controls.Add(this.tBLowGreenBar); + this.pnlLowBattery.Controls.Add(this.tBLowBlueBar); + this.pnlLowBattery.Controls.Add(this.lbEmpty); + resources.ApplyResources(this.pnlLowBattery, "pnlLowBattery"); + this.pnlLowBattery.Name = "pnlLowBattery"; // // lbRS // @@ -1512,25 +878,91 @@ this.gBLightbar.Controls.Add(this.lbspc); this.gBLightbar.Controls.Add(this.cBLightbyBattery); this.gBLightbar.Controls.Add(this.lbFlashAt); - this.gBLightbar.Controls.Add(this.lowBatteryPanel); - this.gBLightbar.Controls.Add(this.FullPanel); - this.gBLightbar.Controls.Add(this.ShiftPanel); + this.gBLightbar.Controls.Add(this.pnlLowBattery); + this.gBLightbar.Controls.Add(this.pnlFull); + this.gBLightbar.Controls.Add(this.pnlShift); resources.ApplyResources(this.gBLightbar, "gBLightbar"); this.gBLightbar.Name = "gBLightbar"; this.gBLightbar.TabStop = false; // - // ShiftPanel + // btnChargingColor // - this.ShiftPanel.Controls.Add(this.cBShiftLight); - this.ShiftPanel.Controls.Add(this.lbShift); - this.ShiftPanel.Controls.Add(this.lbShiftRed); - this.ShiftPanel.Controls.Add(this.lbShiftGreen); - this.ShiftPanel.Controls.Add(this.lbShiftBlue); - this.ShiftPanel.Controls.Add(this.tBShiftRedBar); - this.ShiftPanel.Controls.Add(this.tBShiftGreenBar); - this.ShiftPanel.Controls.Add(this.tBShiftBlueBar); - resources.ApplyResources(this.ShiftPanel, "ShiftPanel"); - this.ShiftPanel.Name = "ShiftPanel"; + this.btnChargingColor.BackColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); + this.btnChargingColor.Name = "btnChargingColor"; + this.btnChargingColor.UseVisualStyleBackColor = false; + this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); + // + // rBColor + // + resources.ApplyResources(this.rBColor, "rBColor"); + this.rBColor.Name = "rBColor"; + this.rBColor.TabStop = true; + this.rBColor.UseVisualStyleBackColor = true; + this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); + // + // rBFade + // + resources.ApplyResources(this.rBFade, "rBFade"); + this.rBFade.Name = "rBFade"; + this.rBFade.UseVisualStyleBackColor = true; + this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); + // + // rBNormal + // + resources.ApplyResources(this.rBNormal, "rBNormal"); + this.rBNormal.Checked = true; + this.rBNormal.Name = "rBNormal"; + this.rBNormal.TabStop = true; + this.rBNormal.UseVisualStyleBackColor = true; + this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); + // + // rBRainbow + // + resources.ApplyResources(this.rBRainbow, "rBRainbow"); + this.rBRainbow.Name = "rBRainbow"; + this.rBRainbow.UseVisualStyleBackColor = true; + this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); + // + // lbWhileCharging + // + resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); + this.lbWhileCharging.Name = "lbWhileCharging"; + // + // lbPercentFlashBar + // + resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); + this.lbPercentFlashBar.Name = "lbPercentFlashBar"; + // + // nUDflashLED + // + this.nUDflashLED.Increment = new decimal(new int[] { + 10, + 0, + 0, + 0}); + resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); + this.nUDflashLED.Name = "nUDflashLED"; + this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); + // + // lbFlashAt + // + resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); + this.lbFlashAt.Name = "lbFlashAt"; + this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); + // + // pnlShift + // + this.pnlShift.Controls.Add(this.cBShiftLight); + this.pnlShift.Controls.Add(this.lbShift); + this.pnlShift.Controls.Add(this.lbShiftRed); + this.pnlShift.Controls.Add(this.lbShiftGreen); + this.pnlShift.Controls.Add(this.lbShiftBlue); + this.pnlShift.Controls.Add(this.tBShiftRedBar); + this.pnlShift.Controls.Add(this.tBShiftGreenBar); + this.pnlShift.Controls.Add(this.tBShiftBlueBar); + resources.ApplyResources(this.pnlShift, "pnlShift"); + this.pnlShift.Name = "pnlShift"; // // cBShiftLight // @@ -1601,72 +1033,6 @@ this.tBShiftBlueBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.LightBar_MouseDown); this.tBShiftBlueBar.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Lightbar_MouseUp); // - // btnChargingColor - // - this.btnChargingColor.BackColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnChargingColor, "btnChargingColor"); - this.btnChargingColor.Name = "btnChargingColor"; - this.btnChargingColor.UseVisualStyleBackColor = false; - this.btnChargingColor.Click += new System.EventHandler(this.btnChargingColor_Click); - // - // rBColor - // - resources.ApplyResources(this.rBColor, "rBColor"); - this.rBColor.Name = "rBColor"; - this.rBColor.TabStop = true; - this.rBColor.UseVisualStyleBackColor = true; - this.rBColor.CheckedChanged += new System.EventHandler(this.rBColor_CheckedChanged); - // - // rBFade - // - resources.ApplyResources(this.rBFade, "rBFade"); - this.rBFade.Name = "rBFade"; - this.rBFade.UseVisualStyleBackColor = true; - this.rBFade.CheckedChanged += new System.EventHandler(this.rBFade_CheckedChanged); - // - // rBNormal - // - resources.ApplyResources(this.rBNormal, "rBNormal"); - this.rBNormal.Checked = true; - this.rBNormal.Name = "rBNormal"; - this.rBNormal.TabStop = true; - this.rBNormal.UseVisualStyleBackColor = true; - this.rBNormal.CheckedChanged += new System.EventHandler(this.rBNormal_CheckedChanged); - // - // rBRainbow - // - resources.ApplyResources(this.rBRainbow, "rBRainbow"); - this.rBRainbow.Name = "rBRainbow"; - this.rBRainbow.UseVisualStyleBackColor = true; - this.rBRainbow.CheckedChanged += new System.EventHandler(this.rBRainbow_CheckedChanged); - // - // lbWhileCharging - // - resources.ApplyResources(this.lbWhileCharging, "lbWhileCharging"); - this.lbWhileCharging.Name = "lbWhileCharging"; - // - // lbPercentFlashBar - // - resources.ApplyResources(this.lbPercentFlashBar, "lbPercentFlashBar"); - this.lbPercentFlashBar.Name = "lbPercentFlashBar"; - // - // nUDflashLED - // - this.nUDflashLED.Increment = new decimal(new int[] { - 10, - 0, - 0, - 0}); - resources.ApplyResources(this.nUDflashLED, "nUDflashLED"); - this.nUDflashLED.Name = "nUDflashLED"; - this.nUDflashLED.ValueChanged += new System.EventHandler(this.nUDflashLED_ValueChanged); - // - // lbFlashAt - // - resources.ApplyResources(this.lbFlashAt, "lbFlashAt"); - this.lbFlashAt.Name = "lbFlashAt"; - this.lbFlashAt.Click += new System.EventHandler(this.lbFlashAt_Click); - // // gBRumble // this.gBRumble.Controls.Add(this.lbPercentRumble); @@ -1753,161 +1119,772 @@ 131072}); this.nUDSX.ValueChanged += new System.EventHandler(this.nUDSX_ValueChanged); // - // tabControls + // openFileDialog1 // - this.tabControls.Controls.Add(this.tPControls); - this.tabControls.Controls.Add(this.tPShiftMod); - this.tabControls.Controls.Add(this.tPController); - resources.ApplyResources(this.tabControls, "tabControls"); - this.tabControls.Name = "tabControls"; - this.tabControls.SelectedIndex = 0; - this.tabControls.SelectedIndexChanged += new System.EventHandler(this.tabControls_SelectedIndexChanged); + this.openFileDialog1.FileName = "openFileDialog1"; // - // tPControls + // advColorDialog // - this.tPControls.Controls.Add(this.lbGryo); - this.tPControls.Controls.Add(this.fLPTiltControls); - this.tPControls.Controls.Add(this.MainPanel); - this.tPControls.Controls.Add(this.lBControls); - this.tPControls.Controls.Add(this.lbControlTip); - this.tPControls.Controls.Add(this.SticksPanel); - resources.ApplyResources(this.tPControls, "tPControls"); - this.tPControls.Name = "tPControls"; - this.tPControls.UseVisualStyleBackColor = true; + this.advColorDialog.AnyColor = true; + this.advColorDialog.Color = System.Drawing.Color.Blue; + this.advColorDialog.FullOpen = true; // - // lbGryo + // tPController // - resources.ApplyResources(this.lbGryo, "lbGryo"); - this.lbGryo.Name = "lbGryo"; + this.tPController.Controls.Add(this.pnlSixaxis); + this.tPController.Controls.Add(this.lbL2Track); + this.tPController.Controls.Add(this.pBDelayTracker); + this.tPController.Controls.Add(this.btnSATrack); + this.tPController.Controls.Add(this.btnRSTrack); + this.tPController.Controls.Add(this.lbRSTip); + this.tPController.Controls.Add(this.lbInputDelay); + this.tPController.Controls.Add(this.lbR2Track); + this.tPController.Controls.Add(this.lbLSTip); + this.tPController.Controls.Add(this.lbSATip); + this.tPController.Controls.Add(this.btnLSTrack); + this.tPController.Controls.Add(this.pBSADeadzone); + this.tPController.Controls.Add(this.pBRSDeadzone); + this.tPController.Controls.Add(this.lbRSTrack); + this.tPController.Controls.Add(this.pBLSDeadzone); + this.tPController.Controls.Add(this.lbLSTrack); + this.tPController.Controls.Add(this.tBR2); + this.tPController.Controls.Add(this.tBL2); + this.tPController.Controls.Add(this.lbSATrack); + resources.ApplyResources(this.tPController, "tPController"); + this.tPController.Name = "tPController"; + this.tPController.UseVisualStyleBackColor = true; // - // fLPTiltControls + // lbSATrack // - this.fLPTiltControls.Controls.Add(this.bnGyroZN); - this.fLPTiltControls.Controls.Add(this.bnGyroZP); - this.fLPTiltControls.Controls.Add(this.bnGyroXP); - this.fLPTiltControls.Controls.Add(this.bnGyroXN); - resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); - this.fLPTiltControls.Name = "fLPTiltControls"; + this.lbSATrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbSATrack, "lbSATrack"); + this.lbSATrack.Name = "lbSATrack"; + this.lbSATrack.Click += new System.EventHandler(this.lbSATrack_Click); // - // bnGyroZN + // tBL2 // - resources.ApplyResources(this.bnGyroZN, "bnGyroZN"); - this.bnGyroZN.Name = "bnGyroZN"; - this.bnGyroZN.UseVisualStyleBackColor = true; - this.bnGyroZN.Click += new System.EventHandler(this.Show_ControlsBn); + resources.ApplyResources(this.tBL2, "tBL2"); + this.tBL2.BackColor = System.Drawing.SystemColors.ControlLightLight; + this.tBL2.Maximum = 255; + this.tBL2.Name = "tBL2"; + this.tBL2.TickFrequency = 127; + this.tBL2.TickStyle = System.Windows.Forms.TickStyle.None; // - // bnGyroZP + // tBR2 // - resources.ApplyResources(this.bnGyroZP, "bnGyroZP"); - this.bnGyroZP.Name = "bnGyroZP"; - this.bnGyroZP.UseVisualStyleBackColor = true; - this.bnGyroZP.Click += new System.EventHandler(this.Show_ControlsBn); + resources.ApplyResources(this.tBR2, "tBR2"); + this.tBR2.BackColor = System.Drawing.SystemColors.ControlLightLight; + this.tBR2.Maximum = 255; + this.tBR2.Name = "tBR2"; + this.tBR2.TickFrequency = 0; + this.tBR2.TickStyle = System.Windows.Forms.TickStyle.None; // - // bnGyroXP + // lbLSTrack // - resources.ApplyResources(this.bnGyroXP, "bnGyroXP"); - this.bnGyroXP.Name = "bnGyroXP"; - this.bnGyroXP.UseVisualStyleBackColor = true; - this.bnGyroXP.Click += new System.EventHandler(this.Show_ControlsBn); + this.lbLSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); + this.lbLSTrack.Name = "lbLSTrack"; // - // bnGyroXN + // pBLSDeadzone // - resources.ApplyResources(this.bnGyroXN, "bnGyroXN"); - this.bnGyroXN.Name = "bnGyroXN"; - this.bnGyroXN.UseVisualStyleBackColor = true; - this.bnGyroXN.Click += new System.EventHandler(this.Show_ControlsBn); + this.pBLSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); + this.pBLSDeadzone.Name = "pBLSDeadzone"; + this.pBLSDeadzone.TabStop = false; + // + // lbRSTrack + // + this.lbRSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); + this.lbRSTrack.Name = "lbRSTrack"; + // + // pBRSDeadzone + // + this.pBRSDeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); + this.pBRSDeadzone.Name = "pBRSDeadzone"; + this.pBRSDeadzone.TabStop = false; + // + // pBSADeadzone + // + this.pBSADeadzone.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); + this.pBSADeadzone.Name = "pBSADeadzone"; + this.pBSADeadzone.TabStop = false; + this.pBSADeadzone.Paint += new System.Windows.Forms.PaintEventHandler(this.DrawCircle); + // + // btnLSTrack + // + this.btnLSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); + this.btnLSTrack.Name = "btnLSTrack"; + this.btnLSTrack.UseVisualStyleBackColor = false; + // + // lbSATip + // + resources.ApplyResources(this.lbSATip, "lbSATip"); + this.lbSATip.Name = "lbSATip"; + this.lbSATip.Click += new System.EventHandler(this.lbSATip_Click); + // + // lbLSTip + // + resources.ApplyResources(this.lbLSTip, "lbLSTip"); + this.lbLSTip.Name = "lbLSTip"; + // + // lbR2Track + // + resources.ApplyResources(this.lbR2Track, "lbR2Track"); + this.lbR2Track.Name = "lbR2Track"; + // + // lbInputDelay + // + resources.ApplyResources(this.lbInputDelay, "lbInputDelay"); + this.lbInputDelay.Name = "lbInputDelay"; + // + // lbRSTip + // + resources.ApplyResources(this.lbRSTip, "lbRSTip"); + this.lbRSTip.Name = "lbRSTip"; + // + // btnRSTrack + // + this.btnRSTrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); + this.btnRSTrack.Name = "btnRSTrack"; + this.btnRSTrack.UseVisualStyleBackColor = false; + // + // btnSATrack + // + this.btnSATrack.BackColor = System.Drawing.Color.Black; + resources.ApplyResources(this.btnSATrack, "btnSATrack"); + this.btnSATrack.Name = "btnSATrack"; + this.btnSATrack.UseVisualStyleBackColor = false; + // + // pBDelayTracker + // + resources.ApplyResources(this.pBDelayTracker, "pBDelayTracker"); + this.pBDelayTracker.Name = "pBDelayTracker"; + this.pBDelayTracker.TabStop = false; + // + // lbL2Track + // + resources.ApplyResources(this.lbL2Track, "lbL2Track"); + this.lbL2Track.Name = "lbL2Track"; + // + // pnlSixaxis + // + this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelX); + this.pnlSixaxis.Controls.Add(this.lb6Accel); + this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroX); + this.pnlSixaxis.Controls.Add(this.lb6Gryo); + this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroY); + this.pnlSixaxis.Controls.Add(this.tBsixaxisGyroZ); + this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelY); + this.pnlSixaxis.Controls.Add(this.tBsixaxisAccelZ); + resources.ApplyResources(this.pnlSixaxis, "pnlSixaxis"); + this.pnlSixaxis.Name = "pnlSixaxis"; + this.pnlSixaxis.Click += new System.EventHandler(this.SixaxisPanel_Click); + // + // tBsixaxisAccelZ + // + resources.ApplyResources(this.tBsixaxisAccelZ, "tBsixaxisAccelZ"); + this.tBsixaxisAccelZ.BackColor = System.Drawing.Color.White; + this.tBsixaxisAccelZ.Maximum = 8500; + this.tBsixaxisAccelZ.Minimum = -8500; + this.tBsixaxisAccelZ.Name = "tBsixaxisAccelZ"; + this.tBsixaxisAccelZ.TickFrequency = 4750; + // + // tBsixaxisAccelY + // + resources.ApplyResources(this.tBsixaxisAccelY, "tBsixaxisAccelY"); + this.tBsixaxisAccelY.BackColor = System.Drawing.Color.White; + this.tBsixaxisAccelY.Maximum = 8500; + this.tBsixaxisAccelY.Minimum = -8500; + this.tBsixaxisAccelY.Name = "tBsixaxisAccelY"; + this.tBsixaxisAccelY.TickFrequency = 4750; + // + // tBsixaxisGyroZ + // + resources.ApplyResources(this.tBsixaxisGyroZ, "tBsixaxisGyroZ"); + this.tBsixaxisGyroZ.BackColor = System.Drawing.Color.White; + this.tBsixaxisGyroZ.Maximum = 8500; + this.tBsixaxisGyroZ.Minimum = -8500; + this.tBsixaxisGyroZ.Name = "tBsixaxisGyroZ"; + this.tBsixaxisGyroZ.TickFrequency = 4750; + // + // tBsixaxisGyroY + // + resources.ApplyResources(this.tBsixaxisGyroY, "tBsixaxisGyroY"); + this.tBsixaxisGyroY.BackColor = System.Drawing.Color.White; + this.tBsixaxisGyroY.Maximum = 8500; + this.tBsixaxisGyroY.Minimum = -8500; + this.tBsixaxisGyroY.Name = "tBsixaxisGyroY"; + this.tBsixaxisGyroY.TickFrequency = 4750; + // + // lb6Gryo + // + resources.ApplyResources(this.lb6Gryo, "lb6Gryo"); + this.lb6Gryo.Name = "lb6Gryo"; + // + // tBsixaxisGyroX + // + resources.ApplyResources(this.tBsixaxisGyroX, "tBsixaxisGyroX"); + this.tBsixaxisGyroX.BackColor = System.Drawing.Color.White; + this.tBsixaxisGyroX.Maximum = 8500; + this.tBsixaxisGyroX.Minimum = -8500; + this.tBsixaxisGyroX.Name = "tBsixaxisGyroX"; + this.tBsixaxisGyroX.TickFrequency = 4750; + // + // lb6Accel + // + resources.ApplyResources(this.lb6Accel, "lb6Accel"); + this.lb6Accel.Name = "lb6Accel"; + // + // tBsixaxisAccelX + // + resources.ApplyResources(this.tBsixaxisAccelX, "tBsixaxisAccelX"); + this.tBsixaxisAccelX.BackColor = System.Drawing.Color.White; + this.tBsixaxisAccelX.Maximum = 8500; + this.tBsixaxisAccelX.Minimum = -8500; + this.tBsixaxisAccelX.Name = "tBsixaxisAccelX"; + this.tBsixaxisAccelX.TickFrequency = 4750; // // tPShiftMod // - this.tPShiftMod.Controls.Add(this.slbGryo); - this.tPShiftMod.Controls.Add(this.sfLPTiltControls); + this.tPShiftMod.Controls.Add(this.lbShiftGryo); + this.tPShiftMod.Controls.Add(this.fLPShiftTiltControls); this.tPShiftMod.Controls.Add(this.cBShiftControl); this.tPShiftMod.Controls.Add(this.lBShiftControls); this.tPShiftMod.Controls.Add(this.lbHold); this.tPShiftMod.Controls.Add(this.lbtoUse); - this.tPShiftMod.Controls.Add(this.ShiftMainPanel); - this.tPShiftMod.Controls.Add(this.ShiftSticksPanel); + this.tPShiftMod.Controls.Add(this.pnlShiftMain); + this.tPShiftMod.Controls.Add(this.pnlShiftSticks); resources.ApplyResources(this.tPShiftMod, "tPShiftMod"); this.tPShiftMod.Name = "tPShiftMod"; this.tPShiftMod.UseVisualStyleBackColor = true; // - // slbGryo + // pnlShiftSticks // - resources.ApplyResources(this.slbGryo, "slbGryo"); - this.slbGryo.Name = "slbGryo"; + this.pnlShiftSticks.Controls.Add(this.btnShiftFullView); + this.pnlShiftSticks.Controls.Add(this.pBShiftSticks); + this.pnlShiftSticks.Controls.Add(this.bnShiftL3); + this.pnlShiftSticks.Controls.Add(this.bnShiftRSDown); + this.pnlShiftSticks.Controls.Add(this.bnShiftLSUp); + this.pnlShiftSticks.Controls.Add(this.bnShiftRSUp); + this.pnlShiftSticks.Controls.Add(this.bnShiftLSLeft); + this.pnlShiftSticks.Controls.Add(this.bnShiftRSRight); + this.pnlShiftSticks.Controls.Add(this.bnShiftLSRight); + this.pnlShiftSticks.Controls.Add(this.bnShiftRSLeft); + this.pnlShiftSticks.Controls.Add(this.bnShiftLSDown); + this.pnlShiftSticks.Controls.Add(this.bnShiftR3); + resources.ApplyResources(this.pnlShiftSticks, "pnlShiftSticks"); + this.pnlShiftSticks.Name = "pnlShiftSticks"; // - // sfLPTiltControls + // bnShiftR3 // - this.sfLPTiltControls.Controls.Add(this.sbnGyroZN); - this.sfLPTiltControls.Controls.Add(this.sbnGyroZP); - this.sfLPTiltControls.Controls.Add(this.sbnGyroXP); - this.sfLPTiltControls.Controls.Add(this.sbnGyroXN); - resources.ApplyResources(this.sfLPTiltControls, "sfLPTiltControls"); - this.sfLPTiltControls.Name = "sfLPTiltControls"; + this.bnShiftR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR3, "bnShiftR3"); + this.bnShiftR3.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftR3.FlatAppearance.BorderSize = 0; + this.bnShiftR3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR3.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftR3.Name = "bnShiftR3"; + this.bnShiftR3.UseVisualStyleBackColor = false; + this.bnShiftR3.Click += new System.EventHandler(this.Show_ControlsBn); // - // sbnGyroZN + // bnShiftLSDown // - resources.ApplyResources(this.sbnGyroZN, "sbnGyroZN"); - this.sbnGyroZN.Name = "sbnGyroZN"; - this.sbnGyroZN.UseVisualStyleBackColor = true; - this.sbnGyroZN.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnShiftLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSDown, "bnShiftLSDown"); + this.bnShiftLSDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftLSDown.FlatAppearance.BorderSize = 0; + this.bnShiftLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftLSDown.Name = "bnShiftLSDown"; + this.bnShiftLSDown.UseVisualStyleBackColor = false; + this.bnShiftLSDown.Click += new System.EventHandler(this.Show_ControlsBn); // - // sbnGyroZP + // bnShiftRSLeft // - resources.ApplyResources(this.sbnGyroZP, "sbnGyroZP"); - this.sbnGyroZP.Name = "sbnGyroZP"; - this.sbnGyroZP.UseVisualStyleBackColor = true; - this.sbnGyroZP.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnShiftRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSLeft, "bnShiftRSLeft"); + this.bnShiftRSLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftRSLeft.FlatAppearance.BorderSize = 0; + this.bnShiftRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftRSLeft.Name = "bnShiftRSLeft"; + this.bnShiftRSLeft.UseVisualStyleBackColor = false; + this.bnShiftRSLeft.Click += new System.EventHandler(this.Show_ControlsBn); // - // sbnGyroXP + // bnShiftLSRight // - resources.ApplyResources(this.sbnGyroXP, "sbnGyroXP"); - this.sbnGyroXP.Name = "sbnGyroXP"; - this.sbnGyroXP.UseVisualStyleBackColor = true; - this.sbnGyroXP.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnShiftLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSRight, "bnShiftLSRight"); + this.bnShiftLSRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftLSRight.FlatAppearance.BorderSize = 0; + this.bnShiftLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftLSRight.Name = "bnShiftLSRight"; + this.bnShiftLSRight.UseVisualStyleBackColor = false; + this.bnShiftLSRight.Click += new System.EventHandler(this.Show_ControlsBn); // - // sbnGyroXN + // bnShiftRSRight // - resources.ApplyResources(this.sbnGyroXN, "sbnGyroXN"); - this.sbnGyroXN.Name = "sbnGyroXN"; - this.sbnGyroXN.UseVisualStyleBackColor = true; - this.sbnGyroXN.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnShiftRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSRight, "bnShiftRSRight"); + this.bnShiftRSRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftRSRight.FlatAppearance.BorderSize = 0; + this.bnShiftRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftRSRight.Name = "bnShiftRSRight"; + this.bnShiftRSRight.UseVisualStyleBackColor = false; + this.bnShiftRSRight.Click += new System.EventHandler(this.Show_ControlsBn); // - // cBShiftControl + // bnShiftLSLeft // - this.cBShiftControl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cBShiftControl.FormattingEnabled = true; - this.cBShiftControl.Items.AddRange(new object[] { - resources.GetString("cBShiftControl.Items"), - resources.GetString("cBShiftControl.Items1"), - resources.GetString("cBShiftControl.Items2"), - resources.GetString("cBShiftControl.Items3"), - resources.GetString("cBShiftControl.Items4"), - resources.GetString("cBShiftControl.Items5"), - resources.GetString("cBShiftControl.Items6"), - resources.GetString("cBShiftControl.Items7"), - resources.GetString("cBShiftControl.Items8"), - resources.GetString("cBShiftControl.Items9"), - resources.GetString("cBShiftControl.Items10"), - resources.GetString("cBShiftControl.Items11"), - resources.GetString("cBShiftControl.Items12"), - resources.GetString("cBShiftControl.Items13"), - resources.GetString("cBShiftControl.Items14"), - resources.GetString("cBShiftControl.Items15"), - resources.GetString("cBShiftControl.Items16"), - resources.GetString("cBShiftControl.Items17"), - resources.GetString("cBShiftControl.Items18"), - resources.GetString("cBShiftControl.Items19"), - resources.GetString("cBShiftControl.Items20"), - resources.GetString("cBShiftControl.Items21"), - resources.GetString("cBShiftControl.Items22"), - resources.GetString("cBShiftControl.Items23"), - resources.GetString("cBShiftControl.Items24"), - resources.GetString("cBShiftControl.Items25"), - resources.GetString("cBShiftControl.Items26")}); - resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); - this.cBShiftControl.Name = "cBShiftControl"; - this.cBShiftControl.SelectedIndexChanged += new System.EventHandler(this.cBShiftControl_SelectedIndexChanged); + this.bnShiftLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSLeft, "bnShiftLSLeft"); + this.bnShiftLSLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftLSLeft.FlatAppearance.BorderSize = 0; + this.bnShiftLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftLSLeft.Name = "bnShiftLSLeft"; + this.bnShiftLSLeft.UseVisualStyleBackColor = false; + this.bnShiftLSLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftRSUp + // + this.bnShiftRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSUp, "bnShiftRSUp"); + this.bnShiftRSUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftRSUp.FlatAppearance.BorderSize = 0; + this.bnShiftRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftRSUp.Name = "bnShiftRSUp"; + this.bnShiftRSUp.UseVisualStyleBackColor = false; + this.bnShiftRSUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftLSUp + // + this.bnShiftLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLSUp, "bnShiftLSUp"); + this.bnShiftLSUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftLSUp.FlatAppearance.BorderSize = 0; + this.bnShiftLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLSUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftLSUp.Name = "bnShiftLSUp"; + this.bnShiftLSUp.UseVisualStyleBackColor = false; + this.bnShiftLSUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftRSDown + // + this.bnShiftRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRSDown, "bnShiftRSDown"); + this.bnShiftRSDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftRSDown.FlatAppearance.BorderSize = 0; + this.bnShiftRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRSDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftRSDown.Name = "bnShiftRSDown"; + this.bnShiftRSDown.UseVisualStyleBackColor = false; + this.bnShiftRSDown.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftL3 + // + this.bnShiftL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL3, "bnShiftL3"); + this.bnShiftL3.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftL3.FlatAppearance.BorderSize = 0; + this.bnShiftL3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL3.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftL3.Name = "bnShiftL3"; + this.bnShiftL3.UseVisualStyleBackColor = false; + this.bnShiftL3.Click += new System.EventHandler(this.Show_ControlsBn); + // + // pBShiftSticks + // + resources.ApplyResources(this.pBShiftSticks, "pBShiftSticks"); + this.pBShiftSticks.Image = global::ScpServer.Properties.Resources.sticks; + this.pBShiftSticks.Name = "pBShiftSticks"; + this.pBShiftSticks.TabStop = false; + // + // btnShiftFullView + // + resources.ApplyResources(this.btnShiftFullView, "btnShiftFullView"); + this.btnShiftFullView.Name = "btnShiftFullView"; + this.btnShiftFullView.UseVisualStyleBackColor = true; + this.btnShiftFullView.Click += new System.EventHandler(this.btnShiftFullView_Click); + // + // pnlShiftMain + // + this.pnlShiftMain.Controls.Add(this.pBShiftController); + this.pnlShiftMain.Controls.Add(this.bnShiftTouchUpper); + this.pnlShiftMain.Controls.Add(this.bnShiftTouchLeft); + this.pnlShiftMain.Controls.Add(this.bnShiftTouchRight); + this.pnlShiftMain.Controls.Add(this.bnShiftTouchMulti); + this.pnlShiftMain.Controls.Add(this.bnShiftR1); + this.pnlShiftMain.Controls.Add(this.bnShiftCross); + this.pnlShiftMain.Controls.Add(this.bnShiftCircle); + this.pnlShiftMain.Controls.Add(this.btnShiftRightStick); + this.pnlShiftMain.Controls.Add(this.bnShiftSquare); + this.pnlShiftMain.Controls.Add(this.btnShiftLightbar); + this.pnlShiftMain.Controls.Add(this.bnShiftTriangle); + this.pnlShiftMain.Controls.Add(this.bnShiftUp); + this.pnlShiftMain.Controls.Add(this.btnShiftLeftStick); + this.pnlShiftMain.Controls.Add(this.bnShiftDown); + this.pnlShiftMain.Controls.Add(this.bnShiftL2); + this.pnlShiftMain.Controls.Add(this.bnShiftRight); + this.pnlShiftMain.Controls.Add(this.bnShiftR2); + this.pnlShiftMain.Controls.Add(this.bnShiftLeft); + this.pnlShiftMain.Controls.Add(this.bnShiftL1); + this.pnlShiftMain.Controls.Add(this.bnShiftOptions); + this.pnlShiftMain.Controls.Add(this.bnShiftPS); + this.pnlShiftMain.Controls.Add(this.bnShiftShare); + resources.ApplyResources(this.pnlShiftMain, "pnlShiftMain"); + this.pnlShiftMain.Name = "pnlShiftMain"; + // + // bnShiftShare + // + this.bnShiftShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftShare, "bnShiftShare"); + this.bnShiftShare.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftShare.FlatAppearance.BorderSize = 0; + this.bnShiftShare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftShare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftShare.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftShare.Name = "bnShiftShare"; + this.bnShiftShare.UseVisualStyleBackColor = false; + this.bnShiftShare.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftPS + // + this.bnShiftPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftPS, "bnShiftPS"); + this.bnShiftPS.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftPS.FlatAppearance.BorderSize = 0; + this.bnShiftPS.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftPS.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftPS.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftPS.Name = "bnShiftPS"; + this.bnShiftPS.UseVisualStyleBackColor = false; + this.bnShiftPS.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftOptions + // + this.bnShiftOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftOptions, "bnShiftOptions"); + this.bnShiftOptions.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftOptions.FlatAppearance.BorderSize = 0; + this.bnShiftOptions.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftOptions.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftOptions.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftOptions.Name = "bnShiftOptions"; + this.bnShiftOptions.UseVisualStyleBackColor = false; + this.bnShiftOptions.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftL1 + // + this.bnShiftL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL1, "bnShiftL1"); + this.bnShiftL1.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftL1.FlatAppearance.BorderSize = 0; + this.bnShiftL1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL1.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftL1.Name = "bnShiftL1"; + this.bnShiftL1.UseVisualStyleBackColor = false; + this.bnShiftL1.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftLeft + // + this.bnShiftLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftLeft, "bnShiftLeft"); + this.bnShiftLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftLeft.FlatAppearance.BorderSize = 0; + this.bnShiftLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftLeft.Name = "bnShiftLeft"; + this.bnShiftLeft.UseVisualStyleBackColor = false; + this.bnShiftLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftR2 + // + this.bnShiftR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR2, "bnShiftR2"); + this.bnShiftR2.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftR2.FlatAppearance.BorderSize = 0; + this.bnShiftR2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR2.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftR2.Name = "bnShiftR2"; + this.bnShiftR2.UseVisualStyleBackColor = false; + this.bnShiftR2.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftRight + // + this.bnShiftRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftRight, "bnShiftRight"); + this.bnShiftRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftRight.FlatAppearance.BorderSize = 0; + this.bnShiftRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftRight.Name = "bnShiftRight"; + this.bnShiftRight.UseVisualStyleBackColor = false; + this.bnShiftRight.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftL2 + // + this.bnShiftL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftL2, "bnShiftL2"); + this.bnShiftL2.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftL2.FlatAppearance.BorderSize = 0; + this.bnShiftL2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftL2.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftL2.Name = "bnShiftL2"; + this.bnShiftL2.UseVisualStyleBackColor = false; + this.bnShiftL2.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftDown + // + this.bnShiftDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftDown, "bnShiftDown"); + this.bnShiftDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftDown.FlatAppearance.BorderSize = 0; + this.bnShiftDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftDown.Name = "bnShiftDown"; + this.bnShiftDown.UseVisualStyleBackColor = false; + this.bnShiftDown.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnShiftLeftStick + // + this.btnShiftLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLeftStick, "btnShiftLeftStick"); + this.btnShiftLeftStick.Cursor = System.Windows.Forms.Cursors.Default; + this.btnShiftLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnShiftLeftStick.FlatAppearance.BorderSize = 0; + this.btnShiftLeftStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnShiftLeftStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnShiftLeftStick.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnShiftLeftStick.Name = "btnShiftLeftStick"; + this.btnShiftLeftStick.UseVisualStyleBackColor = false; + // + // bnShiftUp + // + this.bnShiftUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftUp, "bnShiftUp"); + this.bnShiftUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.bnShiftUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftUp.FlatAppearance.BorderSize = 0; + this.bnShiftUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftUp.Name = "bnShiftUp"; + this.bnShiftUp.UseVisualStyleBackColor = false; + this.bnShiftUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftTriangle + // + this.bnShiftTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTriangle, "bnShiftTriangle"); + this.bnShiftTriangle.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftTriangle.FlatAppearance.BorderSize = 0; + this.bnShiftTriangle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTriangle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTriangle.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftTriangle.Name = "bnShiftTriangle"; + this.bnShiftTriangle.UseVisualStyleBackColor = false; + this.bnShiftTriangle.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnShiftLightbar + // + this.btnShiftLightbar.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftLightbar, "btnShiftLightbar"); + this.btnShiftLightbar.Cursor = System.Windows.Forms.Cursors.Default; + this.btnShiftLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnShiftLightbar.FlatAppearance.BorderSize = 0; + this.btnShiftLightbar.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnShiftLightbar.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnShiftLightbar.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnShiftLightbar.Name = "btnShiftLightbar"; + this.btnShiftLightbar.UseVisualStyleBackColor = false; + this.btnShiftLightbar.Click += new System.EventHandler(this.btnLightbar_Click); + // + // bnShiftSquare + // + this.bnShiftSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftSquare, "bnShiftSquare"); + this.bnShiftSquare.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftSquare.FlatAppearance.BorderSize = 0; + this.bnShiftSquare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftSquare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftSquare.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftSquare.Name = "bnShiftSquare"; + this.bnShiftSquare.UseVisualStyleBackColor = false; + this.bnShiftSquare.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnShiftRightStick + // + this.btnShiftRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnShiftRightStick, "btnShiftRightStick"); + this.btnShiftRightStick.Cursor = System.Windows.Forms.Cursors.Default; + this.btnShiftRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnShiftRightStick.FlatAppearance.BorderSize = 0; + this.btnShiftRightStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnShiftRightStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnShiftRightStick.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnShiftRightStick.Name = "btnShiftRightStick"; + this.btnShiftRightStick.UseVisualStyleBackColor = false; + // + // bnShiftCircle + // + this.bnShiftCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCircle, "bnShiftCircle"); + this.bnShiftCircle.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftCircle.FlatAppearance.BorderSize = 0; + this.bnShiftCircle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftCircle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftCircle.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftCircle.Name = "bnShiftCircle"; + this.bnShiftCircle.UseVisualStyleBackColor = false; + this.bnShiftCircle.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftCross + // + this.bnShiftCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftCross, "bnShiftCross"); + this.bnShiftCross.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftCross.FlatAppearance.BorderSize = 0; + this.bnShiftCross.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftCross.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftCross.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftCross.Name = "bnShiftCross"; + this.bnShiftCross.UseVisualStyleBackColor = false; + this.bnShiftCross.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftR1 + // + this.bnShiftR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftR1, "bnShiftR1"); + this.bnShiftR1.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftR1.FlatAppearance.BorderSize = 0; + this.bnShiftR1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftR1.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftR1.Name = "bnShiftR1"; + this.bnShiftR1.UseVisualStyleBackColor = false; + this.bnShiftR1.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftTouchMulti + // + this.bnShiftTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchMulti, "bnShiftTouchMulti"); + this.bnShiftTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftTouchMulti.FlatAppearance.BorderSize = 0; + this.bnShiftTouchMulti.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchMulti.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchMulti.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftTouchMulti.Name = "bnShiftTouchMulti"; + this.bnShiftTouchMulti.UseVisualStyleBackColor = false; + this.bnShiftTouchMulti.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftTouchRight + // + this.bnShiftTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchRight, "bnShiftTouchRight"); + this.bnShiftTouchRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftTouchRight.FlatAppearance.BorderSize = 0; + this.bnShiftTouchRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftTouchRight.Name = "bnShiftTouchRight"; + this.bnShiftTouchRight.UseVisualStyleBackColor = false; + this.bnShiftTouchRight.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftTouchLeft + // + this.bnShiftTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchLeft, "bnShiftTouchLeft"); + this.bnShiftTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftTouchLeft.FlatAppearance.BorderSize = 0; + this.bnShiftTouchLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftTouchLeft.Name = "bnShiftTouchLeft"; + this.bnShiftTouchLeft.UseVisualStyleBackColor = false; + this.bnShiftTouchLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftTouchUpper + // + this.bnShiftTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShiftTouchUpper, "bnShiftTouchUpper"); + this.bnShiftTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShiftTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShiftTouchUpper.FlatAppearance.BorderSize = 0; + this.bnShiftTouchUpper.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchUpper.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShiftTouchUpper.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShiftTouchUpper.Name = "bnShiftTouchUpper"; + this.bnShiftTouchUpper.UseVisualStyleBackColor = false; + this.bnShiftTouchUpper.Click += new System.EventHandler(this.Show_ControlsBn); + // + // pBShiftController + // + resources.ApplyResources(this.pBShiftController, "pBShiftController"); + this.pBShiftController.Image = global::ScpServer.Properties.Resources.DS4_Controller; + this.pBShiftController.Name = "pBShiftController"; + this.pBShiftController.TabStop = false; + // + // lbtoUse + // + resources.ApplyResources(this.lbtoUse, "lbtoUse"); + this.lbtoUse.Name = "lbtoUse"; + // + // lbHold + // + resources.ApplyResources(this.lbHold, "lbHold"); + this.lbHold.Name = "lbHold"; // // lBShiftControls // @@ -1951,694 +1928,717 @@ this.lBShiftControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); this.lBShiftControls.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.List_MouseDoubleClick); // - // lbHold - // - resources.ApplyResources(this.lbHold, "lbHold"); - this.lbHold.Name = "lbHold"; - // - // lbtoUse - // - resources.ApplyResources(this.lbtoUse, "lbtoUse"); - this.lbtoUse.Name = "lbtoUse"; - // - // ShiftMainPanel - // - this.ShiftMainPanel.Controls.Add(this.spBController); - this.ShiftMainPanel.Controls.Add(this.sbnTouchUpper); - this.ShiftMainPanel.Controls.Add(this.sbnTouchLeft); - this.ShiftMainPanel.Controls.Add(this.sbnTouchRight); - this.ShiftMainPanel.Controls.Add(this.sbnTouchMulti); - this.ShiftMainPanel.Controls.Add(this.sbnR1); - this.ShiftMainPanel.Controls.Add(this.sbnCross); - this.ShiftMainPanel.Controls.Add(this.sbnCircle); - this.ShiftMainPanel.Controls.Add(this.sbtnRightStick); - this.ShiftMainPanel.Controls.Add(this.sbnSquare); - this.ShiftMainPanel.Controls.Add(this.sbtnLightbar); - this.ShiftMainPanel.Controls.Add(this.sbnTriangle); - this.ShiftMainPanel.Controls.Add(this.sbnUp); - this.ShiftMainPanel.Controls.Add(this.sbtnLeftStick); - this.ShiftMainPanel.Controls.Add(this.sbnDown); - this.ShiftMainPanel.Controls.Add(this.sbnL2); - this.ShiftMainPanel.Controls.Add(this.sbnRight); - this.ShiftMainPanel.Controls.Add(this.sbnR2); - this.ShiftMainPanel.Controls.Add(this.sbnLeft); - this.ShiftMainPanel.Controls.Add(this.sbnL1); - this.ShiftMainPanel.Controls.Add(this.sbnOptions); - this.ShiftMainPanel.Controls.Add(this.sbnPS); - this.ShiftMainPanel.Controls.Add(this.sbnShare); - resources.ApplyResources(this.ShiftMainPanel, "ShiftMainPanel"); - this.ShiftMainPanel.Name = "ShiftMainPanel"; - // - // spBController - // - resources.ApplyResources(this.spBController, "spBController"); - this.spBController.Image = global::ScpServer.Properties.Resources.DS4_Controller; - this.spBController.Name = "spBController"; - this.spBController.TabStop = false; - // - // sbnTouchUpper - // - this.sbnTouchUpper.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnTouchUpper, "sbnTouchUpper"); - this.sbnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnTouchUpper.FlatAppearance.BorderSize = 0; - this.sbnTouchUpper.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchUpper.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchUpper.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnTouchUpper.Name = "sbnTouchUpper"; - this.sbnTouchUpper.UseVisualStyleBackColor = false; - this.sbnTouchUpper.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnTouchLeft - // - this.sbnTouchLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnTouchLeft, "sbnTouchLeft"); - this.sbnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnTouchLeft.FlatAppearance.BorderSize = 0; - this.sbnTouchLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnTouchLeft.Name = "sbnTouchLeft"; - this.sbnTouchLeft.UseVisualStyleBackColor = false; - this.sbnTouchLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnTouchRight - // - this.sbnTouchRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnTouchRight, "sbnTouchRight"); - this.sbnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnTouchRight.FlatAppearance.BorderSize = 0; - this.sbnTouchRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnTouchRight.Name = "sbnTouchRight"; - this.sbnTouchRight.UseVisualStyleBackColor = false; - this.sbnTouchRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnTouchMulti - // - this.sbnTouchMulti.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnTouchMulti, "sbnTouchMulti"); - this.sbnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnTouchMulti.FlatAppearance.BorderSize = 0; - this.sbnTouchMulti.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchMulti.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnTouchMulti.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnTouchMulti.Name = "sbnTouchMulti"; - this.sbnTouchMulti.UseVisualStyleBackColor = false; - this.sbnTouchMulti.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnR1 - // - this.sbnR1.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnR1, "sbnR1"); - this.sbnR1.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnR1.FlatAppearance.BorderSize = 0; - this.sbnR1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnR1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnR1.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnR1.Name = "sbnR1"; - this.sbnR1.UseVisualStyleBackColor = false; - this.sbnR1.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnCross - // - this.sbnCross.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnCross, "sbnCross"); - this.sbnCross.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnCross.FlatAppearance.BorderSize = 0; - this.sbnCross.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnCross.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnCross.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnCross.Name = "sbnCross"; - this.sbnCross.UseVisualStyleBackColor = false; - this.sbnCross.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnCircle - // - this.sbnCircle.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnCircle, "sbnCircle"); - this.sbnCircle.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnCircle.FlatAppearance.BorderSize = 0; - this.sbnCircle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnCircle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnCircle.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnCircle.Name = "sbnCircle"; - this.sbnCircle.UseVisualStyleBackColor = false; - this.sbnCircle.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbtnRightStick - // - this.sbtnRightStick.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbtnRightStick, "sbtnRightStick"); - this.sbtnRightStick.Cursor = System.Windows.Forms.Cursors.Default; - this.sbtnRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbtnRightStick.FlatAppearance.BorderSize = 0; - this.sbtnRightStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbtnRightStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbtnRightStick.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbtnRightStick.Name = "sbtnRightStick"; - this.sbtnRightStick.UseVisualStyleBackColor = false; - // - // sbnSquare - // - this.sbnSquare.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnSquare, "sbnSquare"); - this.sbnSquare.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnSquare.FlatAppearance.BorderSize = 0; - this.sbnSquare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnSquare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnSquare.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnSquare.Name = "sbnSquare"; - this.sbnSquare.UseVisualStyleBackColor = false; - this.sbnSquare.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbtnLightbar - // - this.sbtnLightbar.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbtnLightbar, "sbtnLightbar"); - this.sbtnLightbar.Cursor = System.Windows.Forms.Cursors.Default; - this.sbtnLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbtnLightbar.FlatAppearance.BorderSize = 0; - this.sbtnLightbar.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbtnLightbar.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbtnLightbar.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbtnLightbar.Name = "sbtnLightbar"; - this.sbtnLightbar.UseVisualStyleBackColor = false; - this.sbtnLightbar.Click += new System.EventHandler(this.btnLightbar_Click); - // - // sbnTriangle - // - this.sbnTriangle.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnTriangle, "sbnTriangle"); - this.sbnTriangle.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnTriangle.FlatAppearance.BorderSize = 0; - this.sbnTriangle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnTriangle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnTriangle.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnTriangle.Name = "sbnTriangle"; - this.sbnTriangle.UseVisualStyleBackColor = false; - this.sbnTriangle.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnUp - // - this.sbnUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnUp, "sbnUp"); - this.sbnUp.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.sbnUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnUp.FlatAppearance.BorderSize = 0; - this.sbnUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnUp.Name = "sbnUp"; - this.sbnUp.UseVisualStyleBackColor = false; - this.sbnUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbtnLeftStick - // - this.sbtnLeftStick.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbtnLeftStick, "sbtnLeftStick"); - this.sbtnLeftStick.Cursor = System.Windows.Forms.Cursors.Default; - this.sbtnLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbtnLeftStick.FlatAppearance.BorderSize = 0; - this.sbtnLeftStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbtnLeftStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbtnLeftStick.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbtnLeftStick.Name = "sbtnLeftStick"; - this.sbtnLeftStick.UseVisualStyleBackColor = false; - // - // sbnDown - // - this.sbnDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnDown, "sbnDown"); - this.sbnDown.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnDown.FlatAppearance.BorderSize = 0; - this.sbnDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnDown.Name = "sbnDown"; - this.sbnDown.UseVisualStyleBackColor = false; - this.sbnDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnL2 - // - this.sbnL2.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnL2, "sbnL2"); - this.sbnL2.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnL2.FlatAppearance.BorderSize = 0; - this.sbnL2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnL2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnL2.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnL2.Name = "sbnL2"; - this.sbnL2.UseVisualStyleBackColor = false; - this.sbnL2.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnRight - // - this.sbnRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnRight, "sbnRight"); - this.sbnRight.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnRight.FlatAppearance.BorderSize = 0; - this.sbnRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnRight.Name = "sbnRight"; - this.sbnRight.UseVisualStyleBackColor = false; - this.sbnRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnR2 - // - this.sbnR2.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnR2, "sbnR2"); - this.sbnR2.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnR2.FlatAppearance.BorderSize = 0; - this.sbnR2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnR2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnR2.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnR2.Name = "sbnR2"; - this.sbnR2.UseVisualStyleBackColor = false; - this.sbnR2.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnLeft - // - this.sbnLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnLeft, "sbnLeft"); - this.sbnLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnLeft.FlatAppearance.BorderSize = 0; - this.sbnLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnLeft.Name = "sbnLeft"; - this.sbnLeft.UseVisualStyleBackColor = false; - this.sbnLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnL1 - // - this.sbnL1.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnL1, "sbnL1"); - this.sbnL1.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnL1.FlatAppearance.BorderSize = 0; - this.sbnL1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnL1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnL1.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnL1.Name = "sbnL1"; - this.sbnL1.UseVisualStyleBackColor = false; - this.sbnL1.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnOptions - // - this.sbnOptions.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnOptions, "sbnOptions"); - this.sbnOptions.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnOptions.FlatAppearance.BorderSize = 0; - this.sbnOptions.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnOptions.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnOptions.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnOptions.Name = "sbnOptions"; - this.sbnOptions.UseVisualStyleBackColor = false; - this.sbnOptions.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnPS - // - this.sbnPS.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnPS, "sbnPS"); - this.sbnPS.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnPS.FlatAppearance.BorderSize = 0; - this.sbnPS.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnPS.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnPS.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnPS.Name = "sbnPS"; - this.sbnPS.UseVisualStyleBackColor = false; - this.sbnPS.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnShare - // - this.sbnShare.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnShare, "sbnShare"); - this.sbnShare.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnShare.FlatAppearance.BorderSize = 0; - this.sbnShare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnShare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnShare.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnShare.Name = "sbnShare"; - this.sbnShare.UseVisualStyleBackColor = false; - this.sbnShare.Click += new System.EventHandler(this.Show_ControlsBn); - // - // ShiftSticksPanel - // - this.ShiftSticksPanel.Controls.Add(this.sbtnFullView); - this.ShiftSticksPanel.Controls.Add(this.spBSticks); - this.ShiftSticksPanel.Controls.Add(this.sbnL3); - this.ShiftSticksPanel.Controls.Add(this.sbnRSDown); - this.ShiftSticksPanel.Controls.Add(this.sbnLSUp); - this.ShiftSticksPanel.Controls.Add(this.sbnRSUp); - this.ShiftSticksPanel.Controls.Add(this.sbnLSLeft); - this.ShiftSticksPanel.Controls.Add(this.sbnRSRight); - this.ShiftSticksPanel.Controls.Add(this.sbnLSRight); - this.ShiftSticksPanel.Controls.Add(this.sbnRSLeft); - this.ShiftSticksPanel.Controls.Add(this.sbnLSDown); - this.ShiftSticksPanel.Controls.Add(this.sbnR3); - resources.ApplyResources(this.ShiftSticksPanel, "ShiftSticksPanel"); - this.ShiftSticksPanel.Name = "ShiftSticksPanel"; - // - // sbtnFullView - // - resources.ApplyResources(this.sbtnFullView, "sbtnFullView"); - this.sbtnFullView.Name = "sbtnFullView"; - this.sbtnFullView.UseVisualStyleBackColor = true; - this.sbtnFullView.Click += new System.EventHandler(this.sbtnFullView_Click); - // - // spBSticks - // - resources.ApplyResources(this.spBSticks, "spBSticks"); - this.spBSticks.Image = global::ScpServer.Properties.Resources.sticks; - this.spBSticks.Name = "spBSticks"; - this.spBSticks.TabStop = false; - // - // sbnL3 - // - this.sbnL3.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnL3, "sbnL3"); - this.sbnL3.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnL3.FlatAppearance.BorderSize = 0; - this.sbnL3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnL3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnL3.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnL3.Name = "sbnL3"; - this.sbnL3.UseVisualStyleBackColor = false; - this.sbnL3.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnRSDown - // - this.sbnRSDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnRSDown, "sbnRSDown"); - this.sbnRSDown.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnRSDown.FlatAppearance.BorderSize = 0; - this.sbnRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnRSDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnRSDown.Name = "sbnRSDown"; - this.sbnRSDown.UseVisualStyleBackColor = false; - this.sbnRSDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnLSUp - // - this.sbnLSUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnLSUp, "sbnLSUp"); - this.sbnLSUp.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnLSUp.FlatAppearance.BorderSize = 0; - this.sbnLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnLSUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnLSUp.Name = "sbnLSUp"; - this.sbnLSUp.UseVisualStyleBackColor = false; - this.sbnLSUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnRSUp - // - this.sbnRSUp.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnRSUp, "sbnRSUp"); - this.sbnRSUp.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnRSUp.FlatAppearance.BorderSize = 0; - this.sbnRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnRSUp.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnRSUp.Name = "sbnRSUp"; - this.sbnRSUp.UseVisualStyleBackColor = false; - this.sbnRSUp.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnLSLeft - // - this.sbnLSLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnLSLeft, "sbnLSLeft"); - this.sbnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnLSLeft.FlatAppearance.BorderSize = 0; - this.sbnLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnLSLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnLSLeft.Name = "sbnLSLeft"; - this.sbnLSLeft.UseVisualStyleBackColor = false; - this.sbnLSLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnRSRight - // - this.sbnRSRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnRSRight, "sbnRSRight"); - this.sbnRSRight.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnRSRight.FlatAppearance.BorderSize = 0; - this.sbnRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnRSRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnRSRight.Name = "sbnRSRight"; - this.sbnRSRight.UseVisualStyleBackColor = false; - this.sbnRSRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnLSRight - // - this.sbnLSRight.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnLSRight, "sbnLSRight"); - this.sbnLSRight.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnLSRight.FlatAppearance.BorderSize = 0; - this.sbnLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnLSRight.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnLSRight.Name = "sbnLSRight"; - this.sbnLSRight.UseVisualStyleBackColor = false; - this.sbnLSRight.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnRSLeft - // - this.sbnRSLeft.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnRSLeft, "sbnRSLeft"); - this.sbnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnRSLeft.FlatAppearance.BorderSize = 0; - this.sbnRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnRSLeft.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnRSLeft.Name = "sbnRSLeft"; - this.sbnRSLeft.UseVisualStyleBackColor = false; - this.sbnRSLeft.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnLSDown - // - this.sbnLSDown.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnLSDown, "sbnLSDown"); - this.sbnLSDown.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnLSDown.FlatAppearance.BorderSize = 0; - this.sbnLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnLSDown.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnLSDown.Name = "sbnLSDown"; - this.sbnLSDown.UseVisualStyleBackColor = false; - this.sbnLSDown.Click += new System.EventHandler(this.Show_ControlsBn); - // - // sbnR3 - // - this.sbnR3.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.sbnR3, "sbnR3"); - this.sbnR3.Cursor = System.Windows.Forms.Cursors.Default; - this.sbnR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; - this.sbnR3.FlatAppearance.BorderSize = 0; - this.sbnR3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; - this.sbnR3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; - this.sbnR3.ForeColor = System.Drawing.SystemColors.WindowText; - this.sbnR3.Name = "sbnR3"; - this.sbnR3.UseVisualStyleBackColor = false; - this.sbnR3.Click += new System.EventHandler(this.Show_ControlsBn); - // - // tPController - // - this.tPController.Controls.Add(this.SixaxisPanel); - this.tPController.Controls.Add(this.lbL2Track); - this.tPController.Controls.Add(this.pBDelayTracker); - this.tPController.Controls.Add(this.btnSATrack); - this.tPController.Controls.Add(this.btnRSTrack); - this.tPController.Controls.Add(this.lbRSTip); - this.tPController.Controls.Add(this.lbInputDelay); - this.tPController.Controls.Add(this.lbR2Track); - this.tPController.Controls.Add(this.lbLSTip); - this.tPController.Controls.Add(this.lbSATip); - this.tPController.Controls.Add(this.btnLSTrack); - this.tPController.Controls.Add(this.pBSADeadzone); - this.tPController.Controls.Add(this.pBRSDeadzone); - this.tPController.Controls.Add(this.lbRSTrack); - this.tPController.Controls.Add(this.pBLSDeadzone); - this.tPController.Controls.Add(this.lbLSTrack); - this.tPController.Controls.Add(this.tBR2); - this.tPController.Controls.Add(this.tBL2); - this.tPController.Controls.Add(this.lbSATrack); - resources.ApplyResources(this.tPController, "tPController"); - this.tPController.Name = "tPController"; - this.tPController.UseVisualStyleBackColor = true; - // - // SixaxisPanel - // - this.SixaxisPanel.Controls.Add(this.tBsixaxisAccelX); - this.SixaxisPanel.Controls.Add(this.lb6Accel); - this.SixaxisPanel.Controls.Add(this.tBsixaxisGyroX); - this.SixaxisPanel.Controls.Add(this.lb6Gryo); - this.SixaxisPanel.Controls.Add(this.tBsixaxisGyroY); - this.SixaxisPanel.Controls.Add(this.tBsixaxisGyroZ); - this.SixaxisPanel.Controls.Add(this.tBsixaxisAccelY); - this.SixaxisPanel.Controls.Add(this.tBsixaxisAccelZ); - resources.ApplyResources(this.SixaxisPanel, "SixaxisPanel"); - this.SixaxisPanel.Name = "SixaxisPanel"; - this.SixaxisPanel.Click += new System.EventHandler(this.SixaxisPanel_Click); - // - // lbL2Track - // - resources.ApplyResources(this.lbL2Track, "lbL2Track"); - this.lbL2Track.Name = "lbL2Track"; - // - // pBDelayTracker - // - resources.ApplyResources(this.pBDelayTracker, "pBDelayTracker"); - this.pBDelayTracker.Name = "pBDelayTracker"; - this.pBDelayTracker.TabStop = false; - // - // btnSATrack - // - this.btnSATrack.BackColor = System.Drawing.Color.Black; - resources.ApplyResources(this.btnSATrack, "btnSATrack"); - this.btnSATrack.Name = "btnSATrack"; - this.btnSATrack.UseVisualStyleBackColor = false; - // - // btnRSTrack - // - this.btnRSTrack.BackColor = System.Drawing.Color.Black; - resources.ApplyResources(this.btnRSTrack, "btnRSTrack"); - this.btnRSTrack.Name = "btnRSTrack"; - this.btnRSTrack.UseVisualStyleBackColor = false; - // - // lbRSTip - // - resources.ApplyResources(this.lbRSTip, "lbRSTip"); - this.lbRSTip.Name = "lbRSTip"; - // - // lbInputDelay - // - resources.ApplyResources(this.lbInputDelay, "lbInputDelay"); - this.lbInputDelay.Name = "lbInputDelay"; - // - // lbR2Track - // - resources.ApplyResources(this.lbR2Track, "lbR2Track"); - this.lbR2Track.Name = "lbR2Track"; - // - // lbLSTip - // - resources.ApplyResources(this.lbLSTip, "lbLSTip"); - this.lbLSTip.Name = "lbLSTip"; - // - // lbSATip - // - resources.ApplyResources(this.lbSATip, "lbSATip"); - this.lbSATip.Name = "lbSATip"; - this.lbSATip.Click += new System.EventHandler(this.lbSATip_Click); - // - // btnLSTrack - // - this.btnLSTrack.BackColor = System.Drawing.Color.Black; - resources.ApplyResources(this.btnLSTrack, "btnLSTrack"); - this.btnLSTrack.Name = "btnLSTrack"; - this.btnLSTrack.UseVisualStyleBackColor = false; - // - // pBSADeadzone - // - this.pBSADeadzone.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.pBSADeadzone, "pBSADeadzone"); - this.pBSADeadzone.Name = "pBSADeadzone"; - this.pBSADeadzone.TabStop = false; - this.pBSADeadzone.Paint += new System.Windows.Forms.PaintEventHandler(this.DrawCircle); - // - // pBRSDeadzone - // - this.pBRSDeadzone.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.pBRSDeadzone, "pBRSDeadzone"); - this.pBRSDeadzone.Name = "pBRSDeadzone"; - this.pBRSDeadzone.TabStop = false; - // - // lbRSTrack - // - this.lbRSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.lbRSTrack, "lbRSTrack"); - this.lbRSTrack.Name = "lbRSTrack"; - // - // pBLSDeadzone - // - this.pBLSDeadzone.BackColor = System.Drawing.Color.Transparent; - resources.ApplyResources(this.pBLSDeadzone, "pBLSDeadzone"); - this.pBLSDeadzone.Name = "pBLSDeadzone"; - this.pBLSDeadzone.TabStop = false; - // - // lbLSTrack - // - this.lbLSTrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.lbLSTrack, "lbLSTrack"); - this.lbLSTrack.Name = "lbLSTrack"; - // - // tBR2 - // - resources.ApplyResources(this.tBR2, "tBR2"); - this.tBR2.BackColor = System.Drawing.SystemColors.ControlLightLight; - this.tBR2.Maximum = 255; - this.tBR2.Name = "tBR2"; - this.tBR2.TickFrequency = 0; - this.tBR2.TickStyle = System.Windows.Forms.TickStyle.None; - // - // tBL2 - // - resources.ApplyResources(this.tBL2, "tBL2"); - this.tBL2.BackColor = System.Drawing.SystemColors.ControlLightLight; - this.tBL2.Maximum = 255; - this.tBL2.Name = "tBL2"; - this.tBL2.TickFrequency = 127; - this.tBL2.TickStyle = System.Windows.Forms.TickStyle.None; - // - // lbSATrack - // - this.lbSATrack.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.lbSATrack, "lbSATrack"); - this.lbSATrack.Name = "lbSATrack"; - this.lbSATrack.Click += new System.EventHandler(this.lbSATrack_Click); - // - // openFileDialog1 - // - this.openFileDialog1.FileName = "openFileDialog1"; - // - // advColorDialog - // - this.advColorDialog.AnyColor = true; - this.advColorDialog.Color = System.Drawing.Color.Blue; - this.advColorDialog.FullOpen = true; + // cBShiftControl + // + this.cBShiftControl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cBShiftControl.FormattingEnabled = true; + this.cBShiftControl.Items.AddRange(new object[] { + resources.GetString("cBShiftControl.Items"), + resources.GetString("cBShiftControl.Items1"), + resources.GetString("cBShiftControl.Items2"), + resources.GetString("cBShiftControl.Items3"), + resources.GetString("cBShiftControl.Items4"), + resources.GetString("cBShiftControl.Items5"), + resources.GetString("cBShiftControl.Items6"), + resources.GetString("cBShiftControl.Items7"), + resources.GetString("cBShiftControl.Items8"), + resources.GetString("cBShiftControl.Items9"), + resources.GetString("cBShiftControl.Items10"), + resources.GetString("cBShiftControl.Items11"), + resources.GetString("cBShiftControl.Items12"), + resources.GetString("cBShiftControl.Items13"), + resources.GetString("cBShiftControl.Items14"), + resources.GetString("cBShiftControl.Items15"), + resources.GetString("cBShiftControl.Items16"), + resources.GetString("cBShiftControl.Items17"), + resources.GetString("cBShiftControl.Items18"), + resources.GetString("cBShiftControl.Items19"), + resources.GetString("cBShiftControl.Items20"), + resources.GetString("cBShiftControl.Items21"), + resources.GetString("cBShiftControl.Items22"), + resources.GetString("cBShiftControl.Items23"), + resources.GetString("cBShiftControl.Items24"), + resources.GetString("cBShiftControl.Items25"), + resources.GetString("cBShiftControl.Items26")}); + resources.ApplyResources(this.cBShiftControl, "cBShiftControl"); + this.cBShiftControl.Name = "cBShiftControl"; + this.cBShiftControl.SelectedIndexChanged += new System.EventHandler(this.cBShiftControl_SelectedIndexChanged); + // + // fLPShiftTiltControls + // + this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZN); + this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroZP); + this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXP); + this.fLPShiftTiltControls.Controls.Add(this.bnShiftGyroXN); + resources.ApplyResources(this.fLPShiftTiltControls, "fLPShiftTiltControls"); + this.fLPShiftTiltControls.Name = "fLPShiftTiltControls"; + // + // bnShiftGyroXN + // + resources.ApplyResources(this.bnShiftGyroXN, "bnShiftGyroXN"); + this.bnShiftGyroXN.Name = "bnShiftGyroXN"; + this.bnShiftGyroXN.UseVisualStyleBackColor = true; + this.bnShiftGyroXN.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftGyroXP + // + resources.ApplyResources(this.bnShiftGyroXP, "bnShiftGyroXP"); + this.bnShiftGyroXP.Name = "bnShiftGyroXP"; + this.bnShiftGyroXP.UseVisualStyleBackColor = true; + this.bnShiftGyroXP.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftGyroZP + // + resources.ApplyResources(this.bnShiftGyroZP, "bnShiftGyroZP"); + this.bnShiftGyroZP.Name = "bnShiftGyroZP"; + this.bnShiftGyroZP.UseVisualStyleBackColor = true; + this.bnShiftGyroZP.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShiftGyroZN + // + resources.ApplyResources(this.bnShiftGyroZN, "bnShiftGyroZN"); + this.bnShiftGyroZN.Name = "bnShiftGyroZN"; + this.bnShiftGyroZN.UseVisualStyleBackColor = true; + this.bnShiftGyroZN.Click += new System.EventHandler(this.Show_ControlsBn); + // + // lbShiftGryo + // + resources.ApplyResources(this.lbShiftGryo, "lbShiftGryo"); + this.lbShiftGryo.Name = "lbShiftGryo"; + // + // tPControls + // + this.tPControls.Controls.Add(this.lbGryo); + this.tPControls.Controls.Add(this.fLPTiltControls); + this.tPControls.Controls.Add(this.pnlMain); + this.tPControls.Controls.Add(this.lBControls); + this.tPControls.Controls.Add(this.lbControlTip); + this.tPControls.Controls.Add(this.pnlSticks); + resources.ApplyResources(this.tPControls, "tPControls"); + this.tPControls.Name = "tPControls"; + this.tPControls.UseVisualStyleBackColor = true; + // + // pnlSticks + // + this.pnlSticks.Controls.Add(this.btnFullView); + this.pnlSticks.Controls.Add(this.pBSticks); + this.pnlSticks.Controls.Add(this.bnL3); + this.pnlSticks.Controls.Add(this.bnRSDown); + this.pnlSticks.Controls.Add(this.bnLSUp); + this.pnlSticks.Controls.Add(this.bnRSUp); + this.pnlSticks.Controls.Add(this.bnLSLeft); + this.pnlSticks.Controls.Add(this.bnRSRight); + this.pnlSticks.Controls.Add(this.bnLSRight); + this.pnlSticks.Controls.Add(this.bnRSLeft); + this.pnlSticks.Controls.Add(this.bnLSDown); + this.pnlSticks.Controls.Add(this.bnR3); + resources.ApplyResources(this.pnlSticks, "pnlSticks"); + this.pnlSticks.Name = "pnlSticks"; + // + // bnR3 + // + this.bnR3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR3, "bnR3"); + this.bnR3.Cursor = System.Windows.Forms.Cursors.Default; + this.bnR3.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnR3.FlatAppearance.BorderSize = 0; + this.bnR3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnR3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnR3.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnR3.Name = "bnR3"; + this.bnR3.UseVisualStyleBackColor = false; + this.bnR3.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnLSDown + // + this.bnLSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSDown, "bnLSDown"); + this.bnLSDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnLSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnLSDown.FlatAppearance.BorderSize = 0; + this.bnLSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnLSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnLSDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnLSDown.Name = "bnLSDown"; + this.bnLSDown.UseVisualStyleBackColor = false; + this.bnLSDown.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnRSLeft + // + this.bnRSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSLeft, "bnRSLeft"); + this.bnRSLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnRSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnRSLeft.FlatAppearance.BorderSize = 0; + this.bnRSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnRSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnRSLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnRSLeft.Name = "bnRSLeft"; + this.bnRSLeft.UseVisualStyleBackColor = false; + this.bnRSLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnLSRight + // + this.bnLSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSRight, "bnLSRight"); + this.bnLSRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnLSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnLSRight.FlatAppearance.BorderSize = 0; + this.bnLSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnLSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnLSRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnLSRight.Name = "bnLSRight"; + this.bnLSRight.UseVisualStyleBackColor = false; + this.bnLSRight.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnRSRight + // + this.bnRSRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSRight, "bnRSRight"); + this.bnRSRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnRSRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnRSRight.FlatAppearance.BorderSize = 0; + this.bnRSRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnRSRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnRSRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnRSRight.Name = "bnRSRight"; + this.bnRSRight.UseVisualStyleBackColor = false; + this.bnRSRight.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnLSLeft + // + this.bnLSLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSLeft, "bnLSLeft"); + this.bnLSLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnLSLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnLSLeft.FlatAppearance.BorderSize = 0; + this.bnLSLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnLSLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnLSLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnLSLeft.Name = "bnLSLeft"; + this.bnLSLeft.UseVisualStyleBackColor = false; + this.bnLSLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnRSUp + // + this.bnRSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSUp, "bnRSUp"); + this.bnRSUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnRSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnRSUp.FlatAppearance.BorderSize = 0; + this.bnRSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnRSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnRSUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnRSUp.Name = "bnRSUp"; + this.bnRSUp.UseVisualStyleBackColor = false; + this.bnRSUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnLSUp + // + this.bnLSUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLSUp, "bnLSUp"); + this.bnLSUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnLSUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnLSUp.FlatAppearance.BorderSize = 0; + this.bnLSUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnLSUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnLSUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnLSUp.Name = "bnLSUp"; + this.bnLSUp.UseVisualStyleBackColor = false; + this.bnLSUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnRSDown + // + this.bnRSDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRSDown, "bnRSDown"); + this.bnRSDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnRSDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnRSDown.FlatAppearance.BorderSize = 0; + this.bnRSDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnRSDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnRSDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnRSDown.Name = "bnRSDown"; + this.bnRSDown.UseVisualStyleBackColor = false; + this.bnRSDown.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnL3 + // + this.bnL3.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL3, "bnL3"); + this.bnL3.Cursor = System.Windows.Forms.Cursors.Default; + this.bnL3.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnL3.FlatAppearance.BorderSize = 0; + this.bnL3.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnL3.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnL3.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnL3.Name = "bnL3"; + this.bnL3.UseVisualStyleBackColor = false; + this.bnL3.Click += new System.EventHandler(this.Show_ControlsBn); + // + // pBSticks + // + resources.ApplyResources(this.pBSticks, "pBSticks"); + this.pBSticks.Image = global::ScpServer.Properties.Resources.sticks; + this.pBSticks.Name = "pBSticks"; + this.pBSticks.TabStop = false; + // + // btnFullView + // + resources.ApplyResources(this.btnFullView, "btnFullView"); + this.btnFullView.Name = "btnFullView"; + this.btnFullView.UseVisualStyleBackColor = true; + this.btnFullView.Click += new System.EventHandler(this.btnFullView_Click); + // + // lbControlTip + // + resources.ApplyResources(this.lbControlTip, "lbControlTip"); + this.lbControlTip.Name = "lbControlTip"; + // + // lBControls + // + this.lBControls.FormattingEnabled = true; + this.lBControls.Items.AddRange(new object[] { + resources.GetString("lBControls.Items"), + resources.GetString("lBControls.Items1"), + resources.GetString("lBControls.Items2"), + resources.GetString("lBControls.Items3"), + resources.GetString("lBControls.Items4"), + resources.GetString("lBControls.Items5"), + resources.GetString("lBControls.Items6"), + resources.GetString("lBControls.Items7"), + resources.GetString("lBControls.Items8"), + resources.GetString("lBControls.Items9"), + resources.GetString("lBControls.Items10"), + resources.GetString("lBControls.Items11"), + resources.GetString("lBControls.Items12"), + resources.GetString("lBControls.Items13"), + resources.GetString("lBControls.Items14"), + resources.GetString("lBControls.Items15"), + resources.GetString("lBControls.Items16"), + resources.GetString("lBControls.Items17"), + resources.GetString("lBControls.Items18"), + resources.GetString("lBControls.Items19"), + resources.GetString("lBControls.Items20"), + resources.GetString("lBControls.Items21"), + resources.GetString("lBControls.Items22"), + resources.GetString("lBControls.Items23"), + resources.GetString("lBControls.Items24"), + resources.GetString("lBControls.Items25"), + resources.GetString("lBControls.Items26"), + resources.GetString("lBControls.Items27"), + resources.GetString("lBControls.Items28"), + resources.GetString("lBControls.Items29"), + resources.GetString("lBControls.Items30"), + resources.GetString("lBControls.Items31"), + resources.GetString("lBControls.Items32")}); + resources.ApplyResources(this.lBControls, "lBControls"); + this.lBControls.Name = "lBControls"; + this.lBControls.DoubleClick += new System.EventHandler(this.Show_ControlsList); + this.lBControls.KeyDown += new System.Windows.Forms.KeyEventHandler(this.List_KeyDown); + // + // pnlMain + // + this.pnlMain.Controls.Add(this.pBController); + this.pnlMain.Controls.Add(this.bnTouchUpper); + this.pnlMain.Controls.Add(this.bnTouchLeft); + this.pnlMain.Controls.Add(this.bnTouchRight); + this.pnlMain.Controls.Add(this.bnTouchMulti); + this.pnlMain.Controls.Add(this.bnR1); + this.pnlMain.Controls.Add(this.bnCross); + this.pnlMain.Controls.Add(this.bnCircle); + this.pnlMain.Controls.Add(this.btnRightStick); + this.pnlMain.Controls.Add(this.bnSquare); + this.pnlMain.Controls.Add(this.btnLightbar); + this.pnlMain.Controls.Add(this.bnTriangle); + this.pnlMain.Controls.Add(this.bnUp); + this.pnlMain.Controls.Add(this.btnLeftStick); + this.pnlMain.Controls.Add(this.bnDown); + this.pnlMain.Controls.Add(this.bnRight); + this.pnlMain.Controls.Add(this.bnLeft); + this.pnlMain.Controls.Add(this.bnL1); + this.pnlMain.Controls.Add(this.bnOptions); + this.pnlMain.Controls.Add(this.bnPS); + this.pnlMain.Controls.Add(this.bnShare); + this.pnlMain.Controls.Add(this.bnL2); + this.pnlMain.Controls.Add(this.bnR2); + resources.ApplyResources(this.pnlMain, "pnlMain"); + this.pnlMain.Name = "pnlMain"; + // + // bnR2 + // + this.bnR2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR2, "bnR2"); + this.bnR2.Cursor = System.Windows.Forms.Cursors.Default; + this.bnR2.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnR2.FlatAppearance.BorderSize = 0; + this.bnR2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnR2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnR2.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnR2.Name = "bnR2"; + this.bnR2.UseVisualStyleBackColor = false; + this.bnR2.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnL2 + // + this.bnL2.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL2, "bnL2"); + this.bnL2.Cursor = System.Windows.Forms.Cursors.Default; + this.bnL2.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnL2.FlatAppearance.BorderSize = 0; + this.bnL2.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnL2.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnL2.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnL2.Name = "bnL2"; + this.bnL2.UseVisualStyleBackColor = false; + this.bnL2.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnShare + // + this.bnShare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnShare, "bnShare"); + this.bnShare.Cursor = System.Windows.Forms.Cursors.Default; + this.bnShare.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnShare.FlatAppearance.BorderSize = 0; + this.bnShare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnShare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnShare.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnShare.Name = "bnShare"; + this.bnShare.UseVisualStyleBackColor = false; + this.bnShare.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnPS + // + this.bnPS.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnPS, "bnPS"); + this.bnPS.Cursor = System.Windows.Forms.Cursors.Default; + this.bnPS.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnPS.FlatAppearance.BorderSize = 0; + this.bnPS.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnPS.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnPS.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnPS.Name = "bnPS"; + this.bnPS.UseVisualStyleBackColor = false; + this.bnPS.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnOptions + // + this.bnOptions.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnOptions, "bnOptions"); + this.bnOptions.Cursor = System.Windows.Forms.Cursors.Default; + this.bnOptions.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnOptions.FlatAppearance.BorderSize = 0; + this.bnOptions.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnOptions.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnOptions.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnOptions.Name = "bnOptions"; + this.bnOptions.UseVisualStyleBackColor = false; + this.bnOptions.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnL1 + // + this.bnL1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnL1, "bnL1"); + this.bnL1.Cursor = System.Windows.Forms.Cursors.Default; + this.bnL1.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnL1.FlatAppearance.BorderSize = 0; + this.bnL1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnL1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnL1.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnL1.Name = "bnL1"; + this.bnL1.UseVisualStyleBackColor = false; + this.bnL1.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnLeft + // + this.bnLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnLeft, "bnLeft"); + this.bnLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnLeft.FlatAppearance.BorderSize = 0; + this.bnLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnLeft.Name = "bnLeft"; + this.bnLeft.UseVisualStyleBackColor = false; + this.bnLeft.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnRight + // + this.bnRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnRight, "bnRight"); + this.bnRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnRight.FlatAppearance.BorderSize = 0; + this.bnRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnRight.Name = "bnRight"; + this.bnRight.UseVisualStyleBackColor = false; + this.bnRight.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnDown + // + this.bnDown.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnDown, "bnDown"); + this.bnDown.Cursor = System.Windows.Forms.Cursors.Default; + this.bnDown.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnDown.FlatAppearance.BorderSize = 0; + this.bnDown.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnDown.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnDown.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnDown.Name = "bnDown"; + this.bnDown.UseVisualStyleBackColor = false; + this.bnDown.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnLeftStick + // + this.btnLeftStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnLeftStick, "btnLeftStick"); + this.btnLeftStick.Cursor = System.Windows.Forms.Cursors.Default; + this.btnLeftStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnLeftStick.FlatAppearance.BorderSize = 0; + this.btnLeftStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnLeftStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnLeftStick.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnLeftStick.Name = "btnLeftStick"; + this.btnLeftStick.UseVisualStyleBackColor = false; + this.btnLeftStick.Click += new System.EventHandler(this.btnSticks_Enter); + // + // bnUp + // + this.bnUp.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnUp, "bnUp"); + this.bnUp.Cursor = System.Windows.Forms.Cursors.Default; + this.bnUp.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.bnUp.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnUp.FlatAppearance.BorderSize = 0; + this.bnUp.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnUp.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnUp.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnUp.Name = "bnUp"; + this.bnUp.UseVisualStyleBackColor = false; + this.bnUp.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnTriangle + // + this.bnTriangle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTriangle, "bnTriangle"); + this.bnTriangle.Cursor = System.Windows.Forms.Cursors.Default; + this.bnTriangle.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnTriangle.FlatAppearance.BorderSize = 0; + this.bnTriangle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnTriangle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnTriangle.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnTriangle.Name = "bnTriangle"; + this.bnTriangle.UseVisualStyleBackColor = false; + this.bnTriangle.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnLightbar + // + this.btnLightbar.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnLightbar, "btnLightbar"); + this.btnLightbar.Cursor = System.Windows.Forms.Cursors.Default; + this.btnLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnLightbar.FlatAppearance.BorderSize = 0; + this.btnLightbar.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnLightbar.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnLightbar.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnLightbar.Name = "btnLightbar"; + this.btnLightbar.UseVisualStyleBackColor = false; + this.btnLightbar.Click += new System.EventHandler(this.btnLightbar_Click); + // + // bnSquare + // + this.bnSquare.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnSquare, "bnSquare"); + this.bnSquare.Cursor = System.Windows.Forms.Cursors.Default; + this.bnSquare.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnSquare.FlatAppearance.BorderSize = 0; + this.bnSquare.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnSquare.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnSquare.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnSquare.Name = "bnSquare"; + this.bnSquare.UseVisualStyleBackColor = false; + this.bnSquare.Click += new System.EventHandler(this.Show_ControlsBn); + // + // btnRightStick + // + this.btnRightStick.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.btnRightStick, "btnRightStick"); + this.btnRightStick.Cursor = System.Windows.Forms.Cursors.Default; + this.btnRightStick.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.btnRightStick.FlatAppearance.BorderSize = 0; + this.btnRightStick.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.btnRightStick.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.btnRightStick.ForeColor = System.Drawing.SystemColors.WindowText; + this.btnRightStick.Name = "btnRightStick"; + this.btnRightStick.UseVisualStyleBackColor = false; + this.btnRightStick.Click += new System.EventHandler(this.btnSticks_Enter); + // + // bnCircle + // + this.bnCircle.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCircle, "bnCircle"); + this.bnCircle.Cursor = System.Windows.Forms.Cursors.Default; + this.bnCircle.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnCircle.FlatAppearance.BorderSize = 0; + this.bnCircle.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnCircle.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnCircle.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnCircle.Name = "bnCircle"; + this.bnCircle.UseVisualStyleBackColor = false; + this.bnCircle.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnCross + // + this.bnCross.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnCross, "bnCross"); + this.bnCross.Cursor = System.Windows.Forms.Cursors.Default; + this.bnCross.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnCross.FlatAppearance.BorderSize = 0; + this.bnCross.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnCross.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnCross.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnCross.Name = "bnCross"; + this.bnCross.UseVisualStyleBackColor = false; + this.bnCross.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnR1 + // + this.bnR1.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnR1, "bnR1"); + this.bnR1.Cursor = System.Windows.Forms.Cursors.Default; + this.bnR1.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnR1.FlatAppearance.BorderSize = 0; + this.bnR1.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnR1.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnR1.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnR1.Name = "bnR1"; + this.bnR1.UseVisualStyleBackColor = false; + this.bnR1.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnTouchMulti + // + this.bnTouchMulti.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchMulti, "bnTouchMulti"); + this.bnTouchMulti.Cursor = System.Windows.Forms.Cursors.Default; + this.bnTouchMulti.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnTouchMulti.FlatAppearance.BorderSize = 0; + this.bnTouchMulti.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnTouchMulti.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnTouchMulti.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnTouchMulti.Name = "bnTouchMulti"; + this.bnTouchMulti.UseVisualStyleBackColor = false; + this.bnTouchMulti.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnTouchMulti.MouseLeave += new System.EventHandler(this.Toucpad_Leave); + this.bnTouchMulti.MouseHover += new System.EventHandler(this.bnTouchMulti_MouseHover); + // + // bnTouchRight + // + this.bnTouchRight.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchRight, "bnTouchRight"); + this.bnTouchRight.Cursor = System.Windows.Forms.Cursors.Default; + this.bnTouchRight.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnTouchRight.FlatAppearance.BorderSize = 0; + this.bnTouchRight.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnTouchRight.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnTouchRight.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnTouchRight.Name = "bnTouchRight"; + this.bnTouchRight.UseVisualStyleBackColor = false; + this.bnTouchRight.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnTouchRight.MouseLeave += new System.EventHandler(this.Toucpad_Leave); + this.bnTouchRight.MouseHover += new System.EventHandler(this.bnTouchRight_MouseHover); + // + // bnTouchLeft + // + this.bnTouchLeft.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchLeft, "bnTouchLeft"); + this.bnTouchLeft.Cursor = System.Windows.Forms.Cursors.Default; + this.bnTouchLeft.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnTouchLeft.FlatAppearance.BorderSize = 0; + this.bnTouchLeft.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnTouchLeft.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnTouchLeft.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnTouchLeft.Name = "bnTouchLeft"; + this.bnTouchLeft.UseVisualStyleBackColor = false; + this.bnTouchLeft.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnTouchLeft.MouseLeave += new System.EventHandler(this.Toucpad_Leave); + this.bnTouchLeft.MouseHover += new System.EventHandler(this.bnTouchLeft_MouseHover); + // + // bnTouchUpper + // + this.bnTouchUpper.BackColor = System.Drawing.Color.Transparent; + resources.ApplyResources(this.bnTouchUpper, "bnTouchUpper"); + this.bnTouchUpper.Cursor = System.Windows.Forms.Cursors.Default; + this.bnTouchUpper.FlatAppearance.BorderColor = System.Drawing.Color.Red; + this.bnTouchUpper.FlatAppearance.BorderSize = 0; + this.bnTouchUpper.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control; + this.bnTouchUpper.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.bnTouchUpper.ForeColor = System.Drawing.SystemColors.WindowText; + this.bnTouchUpper.Name = "bnTouchUpper"; + this.bnTouchUpper.UseVisualStyleBackColor = false; + this.bnTouchUpper.Click += new System.EventHandler(this.Show_ControlsBn); + this.bnTouchUpper.MouseLeave += new System.EventHandler(this.Toucpad_Leave); + this.bnTouchUpper.MouseHover += new System.EventHandler(this.bnTouchUpper_MouseHover); + // + // pBController + // + resources.ApplyResources(this.pBController, "pBController"); + this.pBController.Image = global::ScpServer.Properties.Resources.DS4_Controller; + this.pBController.Name = "pBController"; + this.pBController.TabStop = false; + // + // fLPTiltControls + // + this.fLPTiltControls.Controls.Add(this.bnGyroZN); + this.fLPTiltControls.Controls.Add(this.bnGyroZP); + this.fLPTiltControls.Controls.Add(this.bnGyroXP); + this.fLPTiltControls.Controls.Add(this.bnGyroXN); + resources.ApplyResources(this.fLPTiltControls, "fLPTiltControls"); + this.fLPTiltControls.Name = "fLPTiltControls"; + // + // bnGyroXN + // + resources.ApplyResources(this.bnGyroXN, "bnGyroXN"); + this.bnGyroXN.Name = "bnGyroXN"; + this.bnGyroXN.UseVisualStyleBackColor = true; + this.bnGyroXN.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnGyroXP + // + resources.ApplyResources(this.bnGyroXP, "bnGyroXP"); + this.bnGyroXP.Name = "bnGyroXP"; + this.bnGyroXP.UseVisualStyleBackColor = true; + this.bnGyroXP.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnGyroZP + // + resources.ApplyResources(this.bnGyroZP, "bnGyroZP"); + this.bnGyroZP.Name = "bnGyroZP"; + this.bnGyroZP.UseVisualStyleBackColor = true; + this.bnGyroZP.Click += new System.EventHandler(this.Show_ControlsBn); + // + // bnGyroZN + // + resources.ApplyResources(this.bnGyroZN, "bnGyroZN"); + this.bnGyroZN.Name = "bnGyroZN"; + this.bnGyroZN.UseVisualStyleBackColor = true; + this.bnGyroZN.Click += new System.EventHandler(this.Show_ControlsBn); + // + // lbGryo + // + resources.ApplyResources(this.lbGryo, "lbGryo"); + this.lbGryo.Name = "lbGryo"; + // + // tabControls + // + this.tabControls.Controls.Add(this.tPControls); + this.tabControls.Controls.Add(this.tPShiftMod); + this.tabControls.Controls.Add(this.tPController); + resources.ApplyResources(this.tabControls, "tabControls"); + this.tabControls.Name = "tabControls"; + this.tabControls.SelectedIndex = 0; + this.tabControls.SelectedIndexChanged += new System.EventHandler(this.tabControls_SelectedIndexChanged); // // Options // @@ -2655,10 +2655,6 @@ this.MinimizeBox = false; this.Name = "Options"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Options_Closed); - this.MainPanel.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pBController)).EndInit(); - this.SticksPanel.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pBSticks)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pBRainbow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).EndInit(); @@ -2669,20 +2665,14 @@ ((System.ComponentModel.ISupportInitialize)(this.nUDTouch)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDIdleDisconnect)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDR2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelZ)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelY)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelX)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroZ)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroY)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDRumbleBoost)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowRedBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBLowBlueBar)).EndInit(); - this.FullPanel.ResumeLayout(false); - this.FullPanel.PerformLayout(); - this.lowBatteryPanel.ResumeLayout(false); - this.lowBatteryPanel.PerformLayout(); + this.pnlFull.ResumeLayout(false); + this.pnlFull.PerformLayout(); + this.pnlLowBattery.ResumeLayout(false); + this.pnlLowBattery.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDRS)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numUDMouseSens)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDLS)).EndInit(); @@ -2695,39 +2685,49 @@ ((System.ComponentModel.ISupportInitialize)(this.nUDSixaxis)).EndInit(); this.gBLightbar.ResumeLayout(false); this.gBLightbar.PerformLayout(); - this.ShiftPanel.ResumeLayout(false); - this.ShiftPanel.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); + this.pnlShift.ResumeLayout(false); + this.pnlShift.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftRedBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftGreenBar)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBShiftBlueBar)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.nUDflashLED)).EndInit(); this.gBRumble.ResumeLayout(false); this.gBRumble.PerformLayout(); this.gBDeadzone.ResumeLayout(false); this.gBDeadzone.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nUDSZ)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nUDSX)).EndInit(); - this.tabControls.ResumeLayout(false); - this.tPControls.ResumeLayout(false); - this.tPControls.PerformLayout(); - this.fLPTiltControls.ResumeLayout(false); - this.tPShiftMod.ResumeLayout(false); - this.tPShiftMod.PerformLayout(); - this.sfLPTiltControls.ResumeLayout(false); - this.ShiftMainPanel.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.spBController)).EndInit(); - this.ShiftSticksPanel.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.spBSticks)).EndInit(); this.tPController.ResumeLayout(false); this.tPController.PerformLayout(); - this.SixaxisPanel.ResumeLayout(false); - this.SixaxisPanel.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pBDelayTracker)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBSADeadzone)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBRSDeadzone)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pBLSDeadzone)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.tBR2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tBL2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBR2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBLSDeadzone)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBRSDeadzone)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBSADeadzone)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pBDelayTracker)).EndInit(); + this.pnlSixaxis.ResumeLayout(false); + this.pnlSixaxis.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelZ)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelY)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroZ)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroY)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisGyroX)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tBsixaxisAccelX)).EndInit(); + this.tPShiftMod.ResumeLayout(false); + this.tPShiftMod.PerformLayout(); + this.pnlShiftSticks.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pBShiftSticks)).EndInit(); + this.pnlShiftMain.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pBShiftController)).EndInit(); + this.fLPShiftTiltControls.ResumeLayout(false); + this.tPControls.ResumeLayout(false); + this.tPControls.PerformLayout(); + this.pnlSticks.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pBSticks)).EndInit(); + this.pnlMain.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pBController)).EndInit(); + this.fLPTiltControls.ResumeLayout(false); + this.tabControls.ResumeLayout(false); this.ResumeLayout(false); } @@ -2737,44 +2737,6 @@ private AdvancedColorDialog advColorDialog; //private System.Windows.Forms.TrackBar tBsixaxisGyroX; //private System.Windows.Forms.TrackBar tBsixaxisGyroY; - private System.Windows.Forms.Button bnTouchUpper; - private System.Windows.Forms.Button bnTouchMulti; - private System.Windows.Forms.Button bnTouchRight; - private System.Windows.Forms.Button bnTouchLeft; - private System.Windows.Forms.Panel MainPanel; - private System.Windows.Forms.PictureBox pBController; - private System.Windows.Forms.Button bnR1; - private System.Windows.Forms.Button bnCross; - private System.Windows.Forms.Button bnCircle; - private System.Windows.Forms.Button btnRightStick; - private System.Windows.Forms.Button bnSquare; - private System.Windows.Forms.Button btnLightbar; - private System.Windows.Forms.Button bnTriangle; - private System.Windows.Forms.Button bnUp; - private System.Windows.Forms.Button btnLeftStick; - private System.Windows.Forms.Button bnDown; - private System.Windows.Forms.Button bnL2; - private System.Windows.Forms.Button bnRight; - private System.Windows.Forms.Button bnR2; - private System.Windows.Forms.Button bnLeft; - private System.Windows.Forms.Button bnL1; - private System.Windows.Forms.Button bnOptions; - private System.Windows.Forms.Button bnPS; - private System.Windows.Forms.Button bnShare; - private System.Windows.Forms.Panel SticksPanel; - private System.Windows.Forms.PictureBox pBSticks; - private System.Windows.Forms.Button bnL3; - private System.Windows.Forms.Button bnRSDown; - private System.Windows.Forms.Button bnLSUp; - private System.Windows.Forms.Button bnRSUp; - private System.Windows.Forms.Button bnLSLeft; - private System.Windows.Forms.Button bnRSRight; - private System.Windows.Forms.Button bnLSRight; - private System.Windows.Forms.Button bnRSLeft; - private System.Windows.Forms.Button bnLSDown; - private System.Windows.Forms.Button bnR3; - private System.Windows.Forms.Button btnFullView; - public System.Windows.Forms.ListBox lBControls; private System.Windows.Forms.NumericUpDown nUDRainbow; private System.Windows.Forms.PictureBox pBRainbow; private System.Windows.Forms.Button lowColorChooserButton; @@ -2801,15 +2763,8 @@ private System.Windows.Forms.Label lbIdleMinutes; private System.Windows.Forms.NumericUpDown nUDIdleDisconnect; private System.Windows.Forms.NumericUpDown nUDR2; - private System.Windows.Forms.TrackBar tBsixaxisAccelZ; private System.Windows.Forms.CheckBox cBFlushHIDQueue; - private System.Windows.Forms.TrackBar tBsixaxisAccelY; - private System.Windows.Forms.TrackBar tBsixaxisAccelX; - private System.Windows.Forms.TrackBar tBsixaxisGyroZ; - private System.Windows.Forms.TrackBar tBsixaxisGyroY; - private System.Windows.Forms.TrackBar tBsixaxisGyroX; private System.Windows.Forms.NumericUpDown nUDRumbleBoost; - private System.Windows.Forms.Label lb6Accel; private System.Windows.Forms.Button btnRumbleTest; private System.Windows.Forms.Label lbFull; private System.Windows.Forms.Label lbLowRed; @@ -2819,9 +2774,8 @@ private System.Windows.Forms.TrackBar tBLowGreenBar; private System.Windows.Forms.TrackBar tBLowBlueBar; private System.Windows.Forms.Label lbEmpty; - private System.Windows.Forms.Panel lowBatteryPanel; - private System.Windows.Forms.Panel FullPanel; - private System.Windows.Forms.Label lbControlTip; + private System.Windows.Forms.Panel pnlLowBattery; + private System.Windows.Forms.Panel pnlFull; private System.Windows.Forms.Label lbRS; private System.Windows.Forms.Label lbLS; private System.Windows.Forms.NumericUpDown nUDRS; @@ -2851,85 +2805,8 @@ private System.Windows.Forms.NumericUpDown nUDSX; private System.Windows.Forms.Label lbPercentRumble; private System.Windows.Forms.CheckBox cBMouseAccel; - private System.Windows.Forms.TabControl tabControls; - private System.Windows.Forms.TabPage tPShiftMod; - private System.Windows.Forms.ComboBox cBShiftControl; - private System.Windows.Forms.Panel ShiftMainPanel; - private System.Windows.Forms.PictureBox spBController; - private System.Windows.Forms.Button sbnTouchUpper; - private System.Windows.Forms.Button sbnTouchLeft; - private System.Windows.Forms.Button sbnTouchRight; - private System.Windows.Forms.Button sbnTouchMulti; - private System.Windows.Forms.Button sbnR1; - private System.Windows.Forms.Button sbnCross; - private System.Windows.Forms.Button sbnCircle; - private System.Windows.Forms.Button sbtnRightStick; - private System.Windows.Forms.Button sbnSquare; - private System.Windows.Forms.Button sbtnLightbar; - private System.Windows.Forms.Button sbnTriangle; - private System.Windows.Forms.Button sbnUp; - private System.Windows.Forms.Button sbtnLeftStick; - private System.Windows.Forms.Button sbnDown; - private System.Windows.Forms.Button sbnL2; - private System.Windows.Forms.Button sbnRight; - private System.Windows.Forms.Button sbnR2; - private System.Windows.Forms.Button sbnLeft; - private System.Windows.Forms.Button sbnL1; - private System.Windows.Forms.Button sbnOptions; - private System.Windows.Forms.Button sbnPS; - private System.Windows.Forms.Button sbnShare; - private System.Windows.Forms.Panel ShiftSticksPanel; - private System.Windows.Forms.Button sbtnFullView; - private System.Windows.Forms.PictureBox spBSticks; - private System.Windows.Forms.Button sbnL3; - private System.Windows.Forms.Button sbnRSDown; - private System.Windows.Forms.Button sbnLSUp; - private System.Windows.Forms.Button sbnRSUp; - private System.Windows.Forms.Button sbnLSLeft; - private System.Windows.Forms.Button sbnRSRight; - private System.Windows.Forms.Button sbnLSRight; - private System.Windows.Forms.Button sbnRSLeft; - private System.Windows.Forms.Button sbnLSDown; - private System.Windows.Forms.Button sbnR3; - public System.Windows.Forms.ListBox lBShiftControls; - private System.Windows.Forms.Label lbtoUse; - private System.Windows.Forms.TabPage tPControls; - private System.Windows.Forms.Label lb6Gryo; - private System.Windows.Forms.Label lbGryo; - private System.Windows.Forms.FlowLayoutPanel fLPTiltControls; - private System.Windows.Forms.Button bnGyroZN; - private System.Windows.Forms.Button bnGyroZP; - private System.Windows.Forms.Button bnGyroXP; - private System.Windows.Forms.Button bnGyroXN; - private System.Windows.Forms.Label slbGryo; - private System.Windows.Forms.FlowLayoutPanel sfLPTiltControls; - private System.Windows.Forms.Button sbnGyroZN; - private System.Windows.Forms.Button sbnGyroZP; - private System.Windows.Forms.Button sbnGyroXP; - private System.Windows.Forms.Button sbnGyroXN; - private System.Windows.Forms.Label lbHold; - private System.Windows.Forms.TabPage tPController; - private System.Windows.Forms.Button btnLSTrack; - private System.Windows.Forms.Button btnSATrack; - private System.Windows.Forms.Button btnRSTrack; - private System.Windows.Forms.Label lbSATrack; - private System.Windows.Forms.Label lbRSTrack; - private System.Windows.Forms.Label lbLSTrack; - private System.Windows.Forms.Label lbSATip; - private System.Windows.Forms.PictureBox pBLSDeadzone; - private System.Windows.Forms.PictureBox pBSADeadzone; - private System.Windows.Forms.PictureBox pBRSDeadzone; private System.Windows.Forms.Label lbUseController; - private System.Windows.Forms.Label lbRSTip; - private System.Windows.Forms.Label lbLSTip; - private System.Windows.Forms.PictureBox pBDelayTracker; - private System.Windows.Forms.Label lbInputDelay; - private System.Windows.Forms.TrackBar tBL2; - private System.Windows.Forms.TrackBar tBR2; - private System.Windows.Forms.Label lbR2Track; - private System.Windows.Forms.Label lbL2Track; - private System.Windows.Forms.Panel SixaxisPanel; - private System.Windows.Forms.Panel ShiftPanel; + private System.Windows.Forms.Panel pnlShift; private System.Windows.Forms.Label lbShift; private System.Windows.Forms.Label lbShiftRed; private System.Windows.Forms.Label lbShiftGreen; @@ -2944,6 +2821,128 @@ private System.Windows.Forms.PictureBox pBProgram; private System.Windows.Forms.CheckBox cBDinput; private System.Windows.Forms.CheckBox cbStartTouchpadOff; + private System.Windows.Forms.TabPage tPController; + private System.Windows.Forms.Panel pnlSixaxis; + private System.Windows.Forms.TrackBar tBsixaxisAccelX; + private System.Windows.Forms.Label lb6Accel; + private System.Windows.Forms.TrackBar tBsixaxisGyroX; + private System.Windows.Forms.Label lb6Gryo; + private System.Windows.Forms.TrackBar tBsixaxisGyroY; + private System.Windows.Forms.TrackBar tBsixaxisGyroZ; + private System.Windows.Forms.TrackBar tBsixaxisAccelY; + private System.Windows.Forms.TrackBar tBsixaxisAccelZ; + private System.Windows.Forms.Label lbL2Track; + private System.Windows.Forms.PictureBox pBDelayTracker; + private System.Windows.Forms.Button btnSATrack; + private System.Windows.Forms.Button btnRSTrack; + private System.Windows.Forms.Label lbRSTip; + private System.Windows.Forms.Label lbInputDelay; + private System.Windows.Forms.Label lbR2Track; + private System.Windows.Forms.Label lbLSTip; + private System.Windows.Forms.Label lbSATip; + private System.Windows.Forms.Button btnLSTrack; + private System.Windows.Forms.PictureBox pBSADeadzone; + private System.Windows.Forms.PictureBox pBRSDeadzone; + private System.Windows.Forms.Label lbRSTrack; + private System.Windows.Forms.PictureBox pBLSDeadzone; + private System.Windows.Forms.Label lbLSTrack; + private System.Windows.Forms.TrackBar tBR2; + private System.Windows.Forms.TrackBar tBL2; + private System.Windows.Forms.Label lbSATrack; + private System.Windows.Forms.TabPage tPShiftMod; + private System.Windows.Forms.Label lbShiftGryo; + private System.Windows.Forms.FlowLayoutPanel fLPShiftTiltControls; + private System.Windows.Forms.Button bnShiftGyroZN; + private System.Windows.Forms.Button bnShiftGyroZP; + private System.Windows.Forms.Button bnShiftGyroXP; + private System.Windows.Forms.Button bnShiftGyroXN; + private System.Windows.Forms.ComboBox cBShiftControl; + public System.Windows.Forms.ListBox lBShiftControls; + private System.Windows.Forms.Label lbHold; + private System.Windows.Forms.Label lbtoUse; + private System.Windows.Forms.Panel pnlShiftMain; + private System.Windows.Forms.PictureBox pBShiftController; + private System.Windows.Forms.Button bnShiftTouchUpper; + private System.Windows.Forms.Button bnShiftTouchLeft; + private System.Windows.Forms.Button bnShiftTouchRight; + private System.Windows.Forms.Button bnShiftTouchMulti; + private System.Windows.Forms.Button bnShiftR1; + private System.Windows.Forms.Button bnShiftCross; + private System.Windows.Forms.Button bnShiftCircle; + private System.Windows.Forms.Button btnShiftRightStick; + private System.Windows.Forms.Button bnShiftSquare; + private System.Windows.Forms.Button btnShiftLightbar; + private System.Windows.Forms.Button bnShiftTriangle; + private System.Windows.Forms.Button bnShiftUp; + private System.Windows.Forms.Button btnShiftLeftStick; + private System.Windows.Forms.Button bnShiftDown; + private System.Windows.Forms.Button bnShiftL2; + private System.Windows.Forms.Button bnShiftRight; + private System.Windows.Forms.Button bnShiftR2; + private System.Windows.Forms.Button bnShiftLeft; + private System.Windows.Forms.Button bnShiftL1; + private System.Windows.Forms.Button bnShiftOptions; + private System.Windows.Forms.Button bnShiftPS; + private System.Windows.Forms.Button bnShiftShare; + private System.Windows.Forms.Panel pnlShiftSticks; + private System.Windows.Forms.Button btnShiftFullView; + private System.Windows.Forms.PictureBox pBShiftSticks; + private System.Windows.Forms.Button bnShiftL3; + private System.Windows.Forms.Button bnShiftRSDown; + private System.Windows.Forms.Button bnShiftLSUp; + private System.Windows.Forms.Button bnShiftRSUp; + private System.Windows.Forms.Button bnShiftLSLeft; + private System.Windows.Forms.Button bnShiftRSRight; + private System.Windows.Forms.Button bnShiftLSRight; + private System.Windows.Forms.Button bnShiftRSLeft; + private System.Windows.Forms.Button bnShiftLSDown; + private System.Windows.Forms.Button bnShiftR3; + private System.Windows.Forms.TabPage tPControls; + private System.Windows.Forms.Label lbGryo; + private System.Windows.Forms.FlowLayoutPanel fLPTiltControls; + private System.Windows.Forms.Button bnGyroZN; + private System.Windows.Forms.Button bnGyroZP; + private System.Windows.Forms.Button bnGyroXP; + private System.Windows.Forms.Button bnGyroXN; + private System.Windows.Forms.Panel pnlMain; + private System.Windows.Forms.PictureBox pBController; + private System.Windows.Forms.Button bnTouchUpper; + private System.Windows.Forms.Button bnTouchLeft; + private System.Windows.Forms.Button bnTouchRight; + private System.Windows.Forms.Button bnTouchMulti; + private System.Windows.Forms.Button bnR1; + private System.Windows.Forms.Button bnCross; + private System.Windows.Forms.Button bnCircle; + private System.Windows.Forms.Button btnRightStick; + private System.Windows.Forms.Button bnSquare; + private System.Windows.Forms.Button btnLightbar; + private System.Windows.Forms.Button bnTriangle; + private System.Windows.Forms.Button bnUp; + private System.Windows.Forms.Button btnLeftStick; + private System.Windows.Forms.Button bnDown; + private System.Windows.Forms.Button bnRight; + private System.Windows.Forms.Button bnLeft; + private System.Windows.Forms.Button bnL1; + private System.Windows.Forms.Button bnOptions; + private System.Windows.Forms.Button bnPS; + private System.Windows.Forms.Button bnShare; + private System.Windows.Forms.Button bnL2; + private System.Windows.Forms.Button bnR2; + public System.Windows.Forms.ListBox lBControls; + private System.Windows.Forms.Label lbControlTip; + private System.Windows.Forms.Panel pnlSticks; + private System.Windows.Forms.Button btnFullView; + private System.Windows.Forms.PictureBox pBSticks; + private System.Windows.Forms.Button bnL3; + private System.Windows.Forms.Button bnRSDown; + private System.Windows.Forms.Button bnLSUp; + private System.Windows.Forms.Button bnRSUp; + private System.Windows.Forms.Button bnLSLeft; + private System.Windows.Forms.Button bnRSRight; + private System.Windows.Forms.Button bnLSRight; + private System.Windows.Forms.Button bnRSLeft; + private System.Windows.Forms.Button bnLSDown; + private System.Windows.Forms.Button bnR3; + private System.Windows.Forms.TabControl tabControls; } -} - \ No newline at end of file +} \ No newline at end of file diff --git a/DS4Tool/Options.cs b/DS4Tool/Options.cs index 4a6ab26..66709c9 100644 --- a/DS4Tool/Options.cs +++ b/DS4Tool/Options.cs @@ -34,29 +34,23 @@ namespace ScpServer root = rt; g = CreateGraphics(); greyscale = GreyscaleImage((Bitmap)pBRainbow.Image); - foreach (System.Windows.Forms.Control control in SticksPanel.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("btn")) + foreach (System.Windows.Forms.Control control in pnlMain.Controls) + if (control is Button && !((Button)control).Name.Contains("btn")) buttons.Add((Button)control); - foreach (System.Windows.Forms.Control control in MainPanel.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("btn")) + foreach (System.Windows.Forms.Control control in pnlSticks.Controls) + if (control is Button && !((Button)control).Name.Contains("btn")) buttons.Add((Button)control); foreach (System.Windows.Forms.Control control in fLPTiltControls.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("btn")) + if (control is Button && !((Button)control).Name.Contains("btn")) buttons.Add((Button)control); - foreach (System.Windows.Forms.Control control in ShiftMainPanel.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("sbtn")) + foreach (System.Windows.Forms.Control control in pnlShiftMain.Controls) + if (control is Button && !((Button)control).Name.Contains("btnShift")) subbuttons.Add((Button)control); - foreach (System.Windows.Forms.Control control in ShiftSticksPanel.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("sbtn")) + foreach (System.Windows.Forms.Control control in pnlShiftSticks.Controls) + if (control is Button && !((Button)control).Name.Contains("btnShift")) subbuttons.Add((Button)control); - foreach (System.Windows.Forms.Control control in sfLPTiltControls.Controls) - if (control is Button) - if (!((Button)control).Name.Contains("sbtn")) + foreach (System.Windows.Forms.Control control in fLPShiftTiltControls.Controls) + if (control is Button && !((Button)control).Name.Contains("btnShift")) subbuttons.Add((Button)control); string butts = ""; foreach (Button b in buttons) @@ -92,9 +86,9 @@ namespace ScpServer cBLightbyBattery.Checked = Global.getLedAsBatteryIndicator(device); nUDflashLED.Value = Global.getFlashAt(device); - lowBatteryPanel.Visible = cBLightbyBattery.Checked; + pnlLowBattery.Visible = cBLightbyBattery.Checked; lbFull.Text = (cBLightbyBattery.Checked ? "Full:" : "Color:"); - FullPanel.Location = (cBLightbyBattery.Checked ? new Point(FullPanel.Location.X, 42) : new Point(FullPanel.Location.X, 48)); + pnlFull.Location = (cBLightbyBattery.Checked ? new Point(pnlFull.Location.X, 42) : new Point(pnlFull.Location.X, 48)); DS4Color lowColor = Global.loadLowColor(device); tBLowRedBar.Value = lowColor.red; @@ -197,8 +191,8 @@ namespace ScpServer advColorDialog.OnUpdateColor += advColorDialog_OnUpdateColor; btnLeftStick.Enter += btnSticks_Enter; btnRightStick.Enter += btnSticks_Enter; - sbtnLeftStick.Enter += sbtnSticks_Enter; - sbtnRightStick.Enter += sbtnSticks_Enter; + btnShiftLeftStick.Enter += btnShiftSticks_Enter; + btnShiftRightStick.Enter += btnShiftSticks_Enter; UpdateLists(); inputtimer.Start(); inputtimer.Tick += InputDS4; @@ -343,39 +337,39 @@ namespace ScpServer case ("bnGyroXP"): lBControls.SelectedIndex = 31; break; case ("bnGyroXN"): lBControls.SelectedIndex = 32; break; - case ("sbnCross"): lBShiftControls.SelectedIndex = 0; break; - case ("sbnCircle"): lBShiftControls.SelectedIndex = 1; break; - case ("sbnSquare"): lBShiftControls.SelectedIndex = 2; break; - case ("sbnTriangle"): lBShiftControls.SelectedIndex = 3; break; - case ("sbnOptions"): lBShiftControls.SelectedIndex = 4; break; - case ("sbnShare"): lBShiftControls.SelectedIndex = 5; break; - case ("sbnUp"): lBShiftControls.SelectedIndex = 6; break; - case ("sbnDown"): lBShiftControls.SelectedIndex = 7; break; - case ("sbnLeft"): lBShiftControls.SelectedIndex = 8; break; - case ("sbnRight"): lBShiftControls.SelectedIndex = 9; break; - case ("sbnPS"): lBShiftControls.SelectedIndex = 10; break; - case ("sbnL1"): lBShiftControls.SelectedIndex = 11; break; - case ("sbnR1"): lBShiftControls.SelectedIndex = 12; break; - case ("sbnL2"): lBShiftControls.SelectedIndex = 13; break; - case ("sbnR2"): lBShiftControls.SelectedIndex = 14; break; - case ("sbnL3"): lBShiftControls.SelectedIndex = 15; break; - case ("sbnR3"): lBShiftControls.SelectedIndex = 16; break; - case ("sbnTouchLeft"): lBShiftControls.SelectedIndex = 17; break; - case ("sbnTouchRight"): lBShiftControls.SelectedIndex = 18; break; - case ("sbnTouchMulti"): lBShiftControls.SelectedIndex = 19; break; - case ("sbnTouchUpper"): lBShiftControls.SelectedIndex = 20; break; - case ("sbnLSUp"): lBShiftControls.SelectedIndex = 21; break; - case ("sbnLSDown"): lBShiftControls.SelectedIndex = 22; break; - case ("sbnLSLeft"): lBShiftControls.SelectedIndex = 23; break; - case ("sbnLSRight"): lBShiftControls.SelectedIndex = 24; break; - case ("sbnRSUp"): lBShiftControls.SelectedIndex = 25; break; - case ("sbnRSDown"): lBShiftControls.SelectedIndex = 26; break; - case ("sbnRSLeft"): lBShiftControls.SelectedIndex = 27; break; - case ("sbnRSRight"): lBShiftControls.SelectedIndex = 28; break; - case ("sbnGyroZN"): lBShiftControls.SelectedIndex = 29; break; - case ("sbnGyroZP"): lBShiftControls.SelectedIndex = 30; break; - case ("sbnGyroXP"): lBShiftControls.SelectedIndex = 31; break; - case ("sbnGyroXN"): lBShiftControls.SelectedIndex = 32; break; + case ("bnShiftCross"): lBShiftControls.SelectedIndex = 0; break; + case ("bnShiftCircle"): lBShiftControls.SelectedIndex = 1; break; + case ("bnShiftSquare"): lBShiftControls.SelectedIndex = 2; break; + case ("bnShiftTriangle"): lBShiftControls.SelectedIndex = 3; break; + case ("bnShiftOptions"): lBShiftControls.SelectedIndex = 4; break; + case ("bnShiftShare"): lBShiftControls.SelectedIndex = 5; break; + case ("bnShiftUp"): lBShiftControls.SelectedIndex = 6; break; + case ("bnShiftDown"): lBShiftControls.SelectedIndex = 7; break; + case ("bnShiftLeft"): lBShiftControls.SelectedIndex = 8; break; + case ("bnShiftRight"): lBShiftControls.SelectedIndex = 9; break; + case ("bnShiftPS"): lBShiftControls.SelectedIndex = 10; break; + case ("bnShiftL1"): lBShiftControls.SelectedIndex = 11; break; + case ("bnShiftR1"): lBShiftControls.SelectedIndex = 12; break; + case ("bnShiftL2"): lBShiftControls.SelectedIndex = 13; break; + case ("bnShiftR2"): lBShiftControls.SelectedIndex = 14; break; + case ("bnShiftL3"): lBShiftControls.SelectedIndex = 15; break; + case ("bnShiftR3"): lBShiftControls.SelectedIndex = 16; break; + case ("bnShiftTouchLeft"): lBShiftControls.SelectedIndex = 17; break; + case ("bnShiftTouchRight"): lBShiftControls.SelectedIndex = 18; break; + case ("bnShiftTouchMulti"): lBShiftControls.SelectedIndex = 19; break; + case ("bnShiftTouchUpper"): lBShiftControls.SelectedIndex = 20; break; + case ("bnShiftLSUp"): lBShiftControls.SelectedIndex = 21; break; + case ("bnShiftLSDown"): lBShiftControls.SelectedIndex = 22; break; + case ("bnShiftLSLeft"): lBShiftControls.SelectedIndex = 23; break; + case ("bnShiftLSRight"): lBShiftControls.SelectedIndex = 24; break; + case ("bnShiftRSUp"): lBShiftControls.SelectedIndex = 25; break; + case ("bnShiftRSDown"): lBShiftControls.SelectedIndex = 26; break; + case ("bnShiftRSLeft"): lBShiftControls.SelectedIndex = 27; break; + case ("bnShiftRSRight"): lBShiftControls.SelectedIndex = 28; break; + case ("bnShiftGyroZN"): lBShiftControls.SelectedIndex = 29; break; + case ("bnShiftGyroZP"): lBShiftControls.SelectedIndex = 30; break; + case ("bnShiftGyroXP"): lBShiftControls.SelectedIndex = 31; break; + case ("bnShiftGyroXN"): lBShiftControls.SelectedIndex = 32; break; #endregion } } @@ -391,9 +385,9 @@ namespace ScpServer public void Set() { - lowBatteryPanel.Visible = cBLightbyBattery.Checked; + pnlLowBattery.Visible = cBLightbyBattery.Checked; lbFull.Text = (cBLightbyBattery.Checked ? Properties.Resources.Full + ":": Properties.Resources.Color + ":"); - FullPanel.Location = (cBLightbyBattery.Checked ? new Point(FullPanel.Location.X, 42) : new Point(FullPanel.Location.X, 48)); + pnlFull.Location = (cBLightbyBattery.Checked ? new Point(pnlFull.Location.X, 42) : new Point(pnlFull.Location.X, 48)); Global.saveColor(device, (byte)tBRedBar.Value, (byte)tBGreenBar.Value, (byte)tBBlueBar.Value); Global.saveLowColor(device, (byte)tBLowRedBar.Value, (byte)tBLowGreenBar.Value, (byte)tBLowBlueBar.Value); Global.saveShiftColor(device, (byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value); @@ -466,26 +460,26 @@ namespace ScpServer } private void btnSticks_Enter(object sender, EventArgs e) { - SticksPanel.Visible = true; - MainPanel.Visible = false; + pnlSticks.Visible = true; + pnlMain.Visible = false; } private void btnFullView_Click(object sender, EventArgs e) { - SticksPanel.Visible = false; - MainPanel.Visible = true; + pnlSticks.Visible = false; + pnlMain.Visible = true; } - private void sbtnSticks_Enter(object sender, EventArgs e) + private void btnShiftSticks_Enter(object sender, EventArgs e) { - ShiftSticksPanel.Visible = true; - ShiftMainPanel.Visible = false; + pnlShiftSticks.Visible = true; + pnlShiftMain.Visible = false; } - private void sbtnFullView_Click(object sender, EventArgs e) + private void btnShiftFullView_Click(object sender, EventArgs e) { - ShiftSticksPanel.Visible = false; - ShiftMainPanel.Visible = true; + pnlShiftSticks.Visible = false; + pnlShiftMain.Visible = true; } private void btnLightbar_Click(object sender, EventArgs e) { @@ -669,7 +663,7 @@ namespace ScpServer alphacolor = Math.Max(tBShiftRedBar.Value, Math.Max(tBShiftGreenBar.Value, tBShiftBlueBar.Value)); reg = Color.FromArgb(tBShiftRedBar.Value, tBShiftGreenBar.Value, tBShiftBlueBar.Value); full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg); - spBController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); + pBShiftController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); Global.saveShiftColor(device, (byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value); if (g.DpiX == 120) tp.Show(((TrackBar)sender).Value.ToString(), ((TrackBar)sender), 125, 0, 2000); @@ -686,7 +680,7 @@ namespace ScpServer alphacolor = Math.Max(tBShiftRedBar.Value, Math.Max(tBShiftGreenBar.Value, tBShiftBlueBar.Value)); reg = Color.FromArgb(tBShiftRedBar.Value, tBShiftGreenBar.Value, tBShiftBlueBar.Value); full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg); - spBController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); + pBShiftController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); Global.saveShiftColor(device, (byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value); if (g.DpiX == 120) tp.Show(((TrackBar)sender).Value.ToString(), ((TrackBar)sender), 125, 0, 2000); @@ -703,7 +697,7 @@ namespace ScpServer alphacolor = Math.Max(tBShiftRedBar.Value, Math.Max(tBShiftGreenBar.Value, tBShiftBlueBar.Value)); reg = Color.FromArgb(tBShiftRedBar.Value, tBShiftGreenBar.Value, tBShiftBlueBar.Value); full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg); - spBController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); + pBShiftController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); Global.saveShiftColor(device, (byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value); if (g.DpiX == 120) tp.Show(((TrackBar)sender).Value.ToString(), ((TrackBar)sender), 125, 0, 2000); @@ -766,8 +760,8 @@ namespace ScpServer private void ledAsBatteryIndicator_CheckedChanged(object sender, EventArgs e) { Global.setLedAsBatteryIndicator(device, cBLightbyBattery.Checked); - lowBatteryPanel.Visible = cBLightbyBattery.Checked; - FullPanel.Location = (cBLightbyBattery.Checked ? new Point(FullPanel.Location.X, 42) : new Point(FullPanel.Location.X, 48)); + pnlLowBattery.Visible = cBLightbyBattery.Checked; + pnlFull.Location = (cBLightbyBattery.Checked ? new Point(pnlFull.Location.X, 42) : new Point(pnlFull.Location.X, 48)); lbFull.Text = (cBLightbyBattery.Checked ? Properties.Resources.Full + ":" : Properties.Resources.Color + ":"); } @@ -893,43 +887,43 @@ namespace ScpServer foreach (Button b in subbuttons) if (b.Tag == null) b.Text = "Fall Back to " + buttons[subbuttons.IndexOf(b)].Text; - lBShiftControls.Items[0] = "Cross : " + sbnCross.Text; - lBShiftControls.Items[1] = "Circle : " + sbnCircle.Text; - lBShiftControls.Items[2] = "Square : " + sbnSquare.Text; - lBShiftControls.Items[3] = "Triangle : " + sbnTriangle.Text; - lBShiftControls.Items[4] = "Options : " + sbnOptions.Text; - lBShiftControls.Items[5] = "Share : " + sbnShare.Text; - lBShiftControls.Items[6] = "Up : " + sbnUp.Text; - lBShiftControls.Items[7] = "Down : " + sbnDown.Text; - lBShiftControls.Items[8] = "Left : " + sbnLeft.Text; - lBShiftControls.Items[9] = "Right : " + sbnRight.Text; - lBShiftControls.Items[10] = "PS : " + sbnPS.Text; - lBShiftControls.Items[11] = "L1 : " + sbnL1.Text; - lBShiftControls.Items[12] = "R1 : " + sbnR1.Text; - lBShiftControls.Items[13] = "L2 : " + sbnL2.Text; - lBShiftControls.Items[14] = "R2 : " + sbnR2.Text; - lBShiftControls.Items[15] = "L3 : " + sbnL3.Text; - lBShiftControls.Items[16] = "R3 : " + sbnR3.Text; - lBShiftControls.Items[17] = "Left Touch : " + sbnTouchLeft.Text; - lBShiftControls.Items[18] = "Right Touch : " + sbnTouchRight.Text; - lBShiftControls.Items[19] = "Multitouch : " + sbnTouchMulti.Text; - lBShiftControls.Items[20] = "Upper Touch : " + sbnTouchUpper.Text; - lBShiftControls.Items[21] = "LS Up : " + sbnLSUp.Text; - lBShiftControls.Items[22] = "LS Down : " + sbnLSDown.Text; - lBShiftControls.Items[23] = "LS Left : " + sbnLSLeft.Text; - lBShiftControls.Items[24] = "LS Right : " + sbnLSRight.Text; - lBShiftControls.Items[25] = "RS Up : " + sbnRSUp.Text; - lBShiftControls.Items[26] = "RS Down : " + sbnRSDown.Text; - lBShiftControls.Items[27] = "RS Left : " + sbnRSLeft.Text; - lBShiftControls.Items[28] = "RS Right : " + sbnRSRight.Text; - lBShiftControls.Items[29] = Properties.Resources.TiltUp + " : " + UpdateGyroList(sbnGyroZN); - lBShiftControls.Items[30] = Properties.Resources.TiltDown + " : " + UpdateGyroList(sbnGyroZP); - lBShiftControls.Items[31] = Properties.Resources.TiltLeft + " : " + UpdateGyroList(sbnGyroXP); - lBShiftControls.Items[32] = Properties.Resources.TiltRight + " : " + UpdateGyroList(sbnGyroXN); - sbnGyroZN.Text = Properties.Resources.TiltUp; - sbnGyroZP.Text = Properties.Resources.TiltDown; - sbnGyroXP.Text = Properties.Resources.TiltLeft; - sbnGyroXN.Text = Properties.Resources.TiltRight; + lBShiftControls.Items[0] = "Cross : " + bnShiftCross.Text; + lBShiftControls.Items[1] = "Circle : " + bnShiftCircle.Text; + lBShiftControls.Items[2] = "Square : " + bnShiftSquare.Text; + lBShiftControls.Items[3] = "Triangle : " + bnShiftTriangle.Text; + lBShiftControls.Items[4] = "Options : " + bnShiftOptions.Text; + lBShiftControls.Items[5] = "Share : " + bnShiftShare.Text; + lBShiftControls.Items[6] = "Up : " + bnShiftUp.Text; + lBShiftControls.Items[7] = "Down : " + bnShiftDown.Text; + lBShiftControls.Items[8] = "Left : " + bnShiftLeft.Text; + lBShiftControls.Items[9] = "Right : " + bnShiftRight.Text; + lBShiftControls.Items[10] = "PS : " + bnShiftPS.Text; + lBShiftControls.Items[11] = "L1 : " + bnShiftL1.Text; + lBShiftControls.Items[12] = "R1 : " + bnShiftR1.Text; + lBShiftControls.Items[13] = "L2 : " + bnShiftL2.Text; + lBShiftControls.Items[14] = "R2 : " + bnShiftR2.Text; + lBShiftControls.Items[15] = "L3 : " + bnShiftL3.Text; + lBShiftControls.Items[16] = "R3 : " + bnShiftR3.Text; + lBShiftControls.Items[17] = "Left Touch : " + bnShiftTouchLeft.Text; + lBShiftControls.Items[18] = "Right Touch : " + bnShiftTouchRight.Text; + lBShiftControls.Items[19] = "Multitouch : " + bnShiftTouchMulti.Text; + lBShiftControls.Items[20] = "Upper Touch : " + bnShiftTouchUpper.Text; + lBShiftControls.Items[21] = "LS Up : " + bnShiftLSUp.Text; + lBShiftControls.Items[22] = "LS Down : " + bnShiftLSDown.Text; + lBShiftControls.Items[23] = "LS Left : " + bnShiftLSLeft.Text; + lBShiftControls.Items[24] = "LS Right : " + bnShiftLSRight.Text; + lBShiftControls.Items[25] = "RS Up : " + bnShiftRSUp.Text; + lBShiftControls.Items[26] = "RS Down : " + bnShiftRSDown.Text; + lBShiftControls.Items[27] = "RS Left : " + bnShiftRSLeft.Text; + lBShiftControls.Items[28] = "RS Right : " + bnShiftRSRight.Text; + lBShiftControls.Items[29] = Properties.Resources.TiltUp + " : " + UpdateGyroList(bnShiftGyroZN); + lBShiftControls.Items[30] = Properties.Resources.TiltDown + " : " + UpdateGyroList(bnShiftGyroZP); + lBShiftControls.Items[31] = Properties.Resources.TiltLeft + " : " + UpdateGyroList(bnShiftGyroXP); + lBShiftControls.Items[32] = Properties.Resources.TiltRight + " : " + UpdateGyroList(bnShiftGyroXN); + bnShiftGyroZN.Text = Properties.Resources.TiltUp; + bnShiftGyroZP.Text = Properties.Resources.TiltDown; + bnShiftGyroXP.Text = Properties.Resources.TiltLeft; + bnShiftGyroXN.Text = Properties.Resources.TiltRight; } private string UpdateGyroList(Button button) @@ -991,42 +985,42 @@ namespace ScpServer private void Show_ShiftControlsList(object sender, EventArgs e) { - if (lBShiftControls.SelectedIndex == 0) Show_ControlsBn(sbnCross, e); - if (lBShiftControls.SelectedIndex == 1) Show_ControlsBn(sbnCircle, e); - if (lBShiftControls.SelectedIndex == 2) Show_ControlsBn(sbnSquare, e); - if (lBShiftControls.SelectedIndex == 3) Show_ControlsBn(sbnTriangle, e); - if (lBShiftControls.SelectedIndex == 4) Show_ControlsBn(sbnOptions, e); - if (lBShiftControls.SelectedIndex == 5) Show_ControlsBn(sbnShare, e); - if (lBShiftControls.SelectedIndex == 6) Show_ControlsBn(sbnUp, e); - if (lBShiftControls.SelectedIndex == 7) Show_ControlsBn(sbnDown, e); - if (lBShiftControls.SelectedIndex == 8) Show_ControlsBn(sbnLeft, e); - if (lBShiftControls.SelectedIndex == 9) Show_ControlsBn(sbnRight, e); - if (lBShiftControls.SelectedIndex == 10) Show_ControlsBn(sbnPS, e); - if (lBShiftControls.SelectedIndex == 11) Show_ControlsBn(sbnL1, e); - if (lBShiftControls.SelectedIndex == 12) Show_ControlsBn(sbnR1, e); - if (lBShiftControls.SelectedIndex == 13) Show_ControlsBn(sbnL2, e); - if (lBShiftControls.SelectedIndex == 14) Show_ControlsBn(sbnR2, e); - if (lBShiftControls.SelectedIndex == 15) Show_ControlsBn(sbnL3, e); - if (lBShiftControls.SelectedIndex == 16) Show_ControlsBn(sbnR3, e); + if (lBShiftControls.SelectedIndex == 0) Show_ControlsBn(bnShiftCross, e); + if (lBShiftControls.SelectedIndex == 1) Show_ControlsBn(bnShiftCircle, e); + if (lBShiftControls.SelectedIndex == 2) Show_ControlsBn(bnShiftSquare, e); + if (lBShiftControls.SelectedIndex == 3) Show_ControlsBn(bnShiftTriangle, e); + if (lBShiftControls.SelectedIndex == 4) Show_ControlsBn(bnShiftOptions, e); + if (lBShiftControls.SelectedIndex == 5) Show_ControlsBn(bnShiftShare, e); + if (lBShiftControls.SelectedIndex == 6) Show_ControlsBn(bnShiftUp, e); + if (lBShiftControls.SelectedIndex == 7) Show_ControlsBn(bnShiftDown, e); + if (lBShiftControls.SelectedIndex == 8) Show_ControlsBn(bnShiftLeft, e); + if (lBShiftControls.SelectedIndex == 9) Show_ControlsBn(bnShiftRight, e); + if (lBShiftControls.SelectedIndex == 10) Show_ControlsBn(bnShiftPS, e); + if (lBShiftControls.SelectedIndex == 11) Show_ControlsBn(bnShiftL1, e); + if (lBShiftControls.SelectedIndex == 12) Show_ControlsBn(bnShiftR1, e); + if (lBShiftControls.SelectedIndex == 13) Show_ControlsBn(bnShiftL2, e); + if (lBShiftControls.SelectedIndex == 14) Show_ControlsBn(bnShiftR2, e); + if (lBShiftControls.SelectedIndex == 15) Show_ControlsBn(bnShiftL3, e); + if (lBShiftControls.SelectedIndex == 16) Show_ControlsBn(bnShiftR3, e); - if (lBShiftControls.SelectedIndex == 17) Show_ControlsBn(sbnTouchLeft, e); - if (lBShiftControls.SelectedIndex == 18) Show_ControlsBn(sbnTouchRight, e); - if (lBShiftControls.SelectedIndex == 19) Show_ControlsBn(sbnTouchMulti, e); - if (lBShiftControls.SelectedIndex == 20) Show_ControlsBn(sbnTouchUpper, e); + if (lBShiftControls.SelectedIndex == 17) Show_ControlsBn(bnShiftTouchLeft, e); + if (lBShiftControls.SelectedIndex == 18) Show_ControlsBn(bnShiftTouchRight, e); + if (lBShiftControls.SelectedIndex == 19) Show_ControlsBn(bnShiftTouchMulti, e); + if (lBShiftControls.SelectedIndex == 20) Show_ControlsBn(bnShiftTouchUpper, e); - if (lBShiftControls.SelectedIndex == 21) Show_ControlsBn(sbnLSUp, e); - if (lBShiftControls.SelectedIndex == 22) Show_ControlsBn(sbnLSDown, e); - if (lBShiftControls.SelectedIndex == 23) Show_ControlsBn(sbnLSLeft, e); - if (lBShiftControls.SelectedIndex == 24) Show_ControlsBn(sbnLSRight, e); - if (lBShiftControls.SelectedIndex == 25) Show_ControlsBn(sbnRSUp, e); - if (lBShiftControls.SelectedIndex == 26) Show_ControlsBn(sbnRSDown, e); - if (lBShiftControls.SelectedIndex == 27) Show_ControlsBn(sbnRSLeft, e); - if (lBShiftControls.SelectedIndex == 28) Show_ControlsBn(sbnRSRight, e); + if (lBShiftControls.SelectedIndex == 21) Show_ControlsBn(bnShiftLSUp, e); + if (lBShiftControls.SelectedIndex == 22) Show_ControlsBn(bnShiftLSDown, e); + if (lBShiftControls.SelectedIndex == 23) Show_ControlsBn(bnShiftLSLeft, e); + if (lBShiftControls.SelectedIndex == 24) Show_ControlsBn(bnShiftLSRight, e); + if (lBShiftControls.SelectedIndex == 25) Show_ControlsBn(bnShiftRSUp, e); + if (lBShiftControls.SelectedIndex == 26) Show_ControlsBn(bnShiftRSDown, e); + if (lBShiftControls.SelectedIndex == 27) Show_ControlsBn(bnShiftRSLeft, e); + if (lBShiftControls.SelectedIndex == 28) Show_ControlsBn(bnShiftRSRight, e); - if (lBShiftControls.SelectedIndex == 29) Show_ControlsBn(sbnGyroZN, e); - if (lBShiftControls.SelectedIndex == 30) Show_ControlsBn(sbnGyroZP, e); - if (lBShiftControls.SelectedIndex == 31) Show_ControlsBn(sbnGyroXP, e); - if (lBShiftControls.SelectedIndex == 32) Show_ControlsBn(sbnGyroXN, e); + if (lBShiftControls.SelectedIndex == 29) Show_ControlsBn(bnShiftGyroZN, e); + if (lBShiftControls.SelectedIndex == 30) Show_ControlsBn(bnShiftGyroZP, e); + if (lBShiftControls.SelectedIndex == 31) Show_ControlsBn(bnShiftGyroXP, e); + if (lBShiftControls.SelectedIndex == 32) Show_ControlsBn(bnShiftGyroXN, e); } private void List_MouseDoubleClick(object sender, MouseEventArgs e) @@ -1084,14 +1078,14 @@ namespace ScpServer } else { - lowBatteryPanel.Enabled = cBLightbyBattery.Checked; + pnlLowBattery.Enabled = cBLightbyBattery.Checked; //pBRainbow.Location = new Point(216, pBRainbow.Location.Y); pBController.BackgroundImage = null; cBLightbyBattery.Text = Properties.Resources.ColorByBattery.Replace("*nl*", "\n"); } lbspc.Enabled = on; - lowBatteryPanel.Enabled = !on; - FullPanel.Enabled = !on; + pnlLowBattery.Enabled = !on; + pnlFull.Enabled = !on; } private Bitmap GreyscaleImage(Bitmap image) @@ -1276,9 +1270,9 @@ namespace ScpServer else sixaxisTimer.Stop(); if (tabControls.SelectedIndex == 1) - ShiftPanel.Visible = true; + pnlShift.Visible = true; else - ShiftPanel.Visible = false; + pnlShift.Visible = false; } private void DrawCircle(object sender, PaintEventArgs e) @@ -1309,7 +1303,7 @@ namespace ScpServer private void lbSATip_Click(object sender, EventArgs e) { - SixaxisPanel.Visible = !SixaxisPanel.Visible; + pnlSixaxis.Visible = !pnlSixaxis.Visible; pBSADeadzone.Visible = !pBSADeadzone.Visible; btnSATrack.Visible = !btnSATrack.Visible; } @@ -1330,15 +1324,15 @@ namespace ScpServer cBShiftLight.Checked = false; if (!cBShiftLight.Checked) { - spBController.BackColor = pBController.BackColor; - spBController.BackgroundImage = pBController.BackgroundImage; + pBShiftController.BackColor = pBController.BackColor; + pBShiftController.BackgroundImage = pBController.BackgroundImage; } else { alphacolor = Math.Max(tBShiftRedBar.Value, Math.Max(tBShiftGreenBar.Value, tBShiftBlueBar.Value)); reg = Color.FromArgb(tBShiftRedBar.Value, tBShiftGreenBar.Value, tBShiftBlueBar.Value); full = HuetoRGB(reg.GetHue(), reg.GetBrightness(), reg); - spBController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); + pBShiftController.BackColor = Color.FromArgb((alphacolor > 205 ? 255 : (alphacolor + 50)), full); } Global.setShiftColorOn(device, cBShiftLight.Checked); lbShift.Enabled = cBShiftLight.Checked; diff --git a/DS4Tool/Options.resx b/DS4Tool/Options.resx index a7daaa7..ea8391b 100644 --- a/DS4Tool/Options.resx +++ b/DS4Tool/Options.resx @@ -118,1365 +118,20 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - None - - - Flat - - - NoControl - - - - 31, 0 - - - 43, 12 - - - - 90 - - - Left Trigger - - - bnL2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 21 - - - None - - - Flat - - - NoControl - - - 174, 0 - - - 40, 13 - - - 89 - - - Right Trigger - - - bnR2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 22 - - - None - - - Flat - - - NoControl - - - 84, 25 - - - 78, 16 - - - 193 - - - Middle Mouse Button - - - bnTouchUpper - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 1 - - - None - - - Flat - - - NoControl - - - 109, 40 - - - 30, 34 - - - 192 - - - Right Mouse Button - - - bnTouchMulti - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 4 - - - None - - - Flat - - - NoControl - - - 139, 40 - - - 23, 34 - - - 190 - - - Left Mouse Button - - - bnTouchRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 3 - - - None - - - Flat - - - NoControl - - - 84, 40 - - - 25, 35 - - - 191 - - - Left Mouse Button - - - bnTouchLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 2 - - - Stretch - - - False - - - NoControl - - - 0, 0 - - - 245, 132 - - - StretchImage - - - 1 - - - pBController - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 0 - - - None - - - Flat - - - NoControl - - - 175, 13 - - - 43, 15 - - - 87 - - - Right Bumper - - - bnR1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 5 - - - None - - - Flat - - - NoControl - - - 187, 76 - - - 19, 17 - - - 74 - - - A Button - - - bnCross - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 6 - - - None - - - Flat - - - NoControl - - - 208, 60 - - - 16, 17 - - - 71 - - - B Button - - - bnCircle - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 7 - - - None - - - Flat - - - NoControl - - - 150, 90 - - - 28, 28 - - - 91 - - - RS - - - btnRightStick - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 8 - - - None - - - Flat - - - NoControl - - - 173, 61 - - - 15, 14 - - - 72 - - - X Button - - - bnSquare - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 9 - - - None - - - Flat - - - NoControl - - - 84, 6 - - - 78, 19 - - - 91 - - - Lightbar - - - btnLightbar - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 10 - - - None - - - Flat - - - NoControl - - - 188, 45 - - - 20, 16 - - - 73 - - - Y Button - - - bnTriangle - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 11 - - - None - - - Flat - - - NoControl - - - 44, 48 - - - 11, 15 - - - 80 - - - Up Button - - - bnUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 12 - - - None - - - Flat - - - NoControl - - - 70, 90 - - - 28, 28 - - - 91 - - - LS - - - btnLeftStick - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 13 - - - None - - - Flat - - - NoControl - - - 44, 73 - - - 12, 12 - - - 81 - - - Down Button - - - bnDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 14 - - - None - - - Flat - - - NoControl - - - 55, 61 - - - 14, 14 - - - 82 - - - Right Button - - - bnRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 15 - - - None - - - Flat - - - NoControl - - - 31, 61 - - - 14, 12 - - - 83 - - - Left Button - - - bnLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 16 - - - None - - - Flat - - - NoControl - - - 31, 13 - - - 43, 15 - - - 88 - - - Left Bumper - - - bnL1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 17 - - - None - - - Flat - - - NoControl - - - 167, 33 - - - 11, 21 - - - 84 - - - Start - - - bnOptions - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 18 - - - None - - - Flat - - - NoControl - - - 115, 87 - - - 18, 18 - - - 86 - - - Guide - - - bnPS - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 19 - - - None - - - Flat - - - NoControl - - - 71, 33 - - - 11, 18 - - - 85 - - - Back - - - bnShare - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainPanel - - - 20 - - - 6, 42 - - - 249, 137 - - - 185 - - - MainPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPControls - - - 2 - - - NoControl - - - 71, 9 - - - 106, 23 - - - 184 - - - <- Back to full view - - - btnFullView - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 0 - - - False - - - NoControl - - - 0, 1 - - - 245, 132 - - - StretchImage - - - 161 - - - pBSticks - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 1 - - - None - - - Flat - - - NoControl - - - 36, 92 - - - 23, 23 - - - 163 - - - Left Stick - - - bnL3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 2 - - - None - - - Flat - - - NoControl - - - 182, 116 - - - 23, 11 - - - 172 - - - Right Y-Axis+ - - - bnRSDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 3 - - - None - - - Flat - - - NoControl - - - 36, 77 - - - 23, 11 - - - 167 - - - Left Y-Axis- - - - bnLSUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 4 - - - None - - - Flat - - - NoControl - - - 182, 78 - - - 23, 11 - - - 171 - - - Right Y-Axis- - - - bnRSUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 5 - - - None - - - Flat - - - NoControl - - - 21, 92 - - - 11, 23 - - - 164 - - - Left X-Axis- - - - bnLSLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 6 - - - None - - - Flat - - - NoControl - - - 210, 92 - - - 13, 23 - - - 170 - - - Right X-Axis+ - - - bnRSRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 7 - - - None - - - Flat - - - NoControl - - - 65, 92 - - - 11, 23 - - - 165 - - - Left X-Axis+ - - - bnLSRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 8 - - - None - - - Flat - - - NoControl - - - 165, 92 - - - 11, 23 - - - 169 - - - Right X-Axis- - - - bnRSLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 9 - - - None - - - Flat - - - NoControl - - - 36, 120 - - - 23, 11 - - - 166 - - - Left Y-Axis+ - - - bnLSDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 10 - - - None - - - Flat - - - NoControl - - - 182, 92 - - - 23, 23 - - - 168 - - - Right Stick - - - bnR3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SticksPanel - - - 11 - - - 6, 42 - - - 249, 142 - - - 187 - - - False - - - SticksPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPControls - - - 5 - - - True - - - NoControl - - - 24, 5 - - - 219, 26 - - - 181 - - - Click a part of the controller to change action -Click the lightbar for color picker - - - MiddleCenter - - - lbControlTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPControls - - - 4 - - - Cross : - - - Circle : - - - Square : - - - Triangle : - - - Options : - - - Share : - - - Up : - - - Down : - - - Left : - - - Right : - - - PS : - - - L1 : - - - R1 : - - - L2 : - - - R2 : - - - L3 : - - - R3 : - - - Left Touch : - - - Upper Touch : - - - Multitouch : - - - Right Touch : - - - Left Stick Up : - - - Left Stick Down : - - - Left Stick Left : - - - Left Stick Right : - - - Right Stick Up : - - - Right Stick Down : - - - Right Stick Left : - - - Right Stick Right : - - - Sixaxis Up : - - - Sixaxis Down : - - - Sixaxis Left : - - - Sixaxis Right : - - - 257, 7 - - - 169, 173 - - - 180 - - - lBControls - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPControls - - - 3 - Flat NoControl + 44, 9 13, 13 + 49 @@ -1487,7 +142,7 @@ Click the lightbar for color picker System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 0 @@ -1562,7 +217,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 6 @@ -1589,7 +244,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 5 @@ -1616,7 +271,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 4 @@ -1676,7 +331,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 3 @@ -1706,7 +361,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 2 @@ -1766,7 +421,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 1 @@ -2197,33 +852,6 @@ Click the lightbar for color picker 10 - - False - - - NoControl - - - 71, 79 - - - 50, 19 - - - 217 - - - tBsixaxisAccelZ - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 7 - flushHIDQueue @@ -2261,141 +889,6 @@ Click the lightbar for color picker 12 - - False - - - NoControl - - - 72, 49 - - - 50, 19 - - - 218 - - - tBsixaxisAccelY - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 6 - - - False - - - NoControl - - - 71, 25 - - - 50, 19 - - - 219 - - - tBsixaxisAccelX - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 0 - - - False - - - NoControl - - - 3, 79 - - - 50, 19 - - - 220 - - - tBsixaxisGyroZ - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 5 - - - False - - - NoControl - - - 3, 49 - - - 50, 19 - - - 221 - - - tBsixaxisGyroY - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 4 - - - False - - - NoControl - - - 3, 24 - - - 50, 19 - - - 222 - - - tBsixaxisGyroX - - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 2 - 14, 15 @@ -2417,36 +910,6 @@ Click the lightbar for color picker 2 - - True - - - NoControl - - - 81, 4 - - - 34, 13 - - - 215 - - - Accel - - - lb6Accel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 1 - NoControl @@ -2499,7 +962,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - FullPanel + pnlFull 0 @@ -2529,7 +992,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 1 @@ -2559,7 +1022,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 2 @@ -2589,7 +1052,7 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 3 @@ -2616,7 +1079,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 4 @@ -2643,7 +1106,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 5 @@ -2670,7 +1133,7 @@ Click the lightbar for color picker System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 6 @@ -2700,83 +1163,53 @@ Click the lightbar for color picker System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - lowBatteryPanel + pnlLowBattery 7 - + 2, 42 - + 435, 29 - + 235 - - FullPanel + + pnlFull - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + gBLightbar - + 14 - + 2, 72 - + 435, 29 - + 234 - - lowBatteryPanel + + pnlLowBattery - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + gBLightbar - + 13 - - True - - - NoControl - - - 13, 5 - - - 29, 13 - - - 216 - - - Gyro - - - lb6Gryo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SixaxisPanel - - - 3 - True @@ -3568,7 +2001,7 @@ with profile System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 0 @@ -3598,7 +2031,7 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 1 @@ -3628,7 +2061,7 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 2 @@ -3658,7 +2091,7 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 3 @@ -3688,7 +2121,7 @@ with profile System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 4 @@ -3715,7 +2148,7 @@ with profile System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 5 @@ -3742,7 +2175,7 @@ with profile System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 6 @@ -3769,33 +2202,33 @@ with profile System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ShiftPanel + pnlShift 7 - + 2, 42 - + 435, 60 - + 235 - + False - - ShiftPanel + + pnlShift - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + gBLightbar - + 15 @@ -4005,1879 +2438,256 @@ with profile 1 - - True + + 153, 17 + + + 17, 17 + + + False - + NoControl - - 5, 192 + + 71, 25 - - 67, 13 + + 50, 19 - - 253 + + 219 - - Sixaxis Gyro: + + tBsixaxisAccelX - - lbGryo + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + pnlSixaxis + + + 0 + + + True + + + NoControl + + + 81, 4 + + + 34, 13 + + + 215 + + + Accel + + + lb6Accel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPControls + + pnlSixaxis - - 0 - - - NoControl - - - 3, 3 - - - 80, 23 - - - 250 - - - Tilt Up - - - bnGyroZN - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTiltControls - - - 0 - - - NoControl - - - 89, 3 - - - 80, 23 - - - 250 - - - Tilt Down - - - bnGyroZP - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTiltControls - - + 1 - + + False + + NoControl - - 175, 3 + + 3, 24 - - 80, 23 + + 50, 19 - - 250 + + 222 - - Tilt Left + + tBsixaxisGyroX - - bnGyroXP + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSixaxis - - fLPTiltControls - - + 2 - - NoControl - - - 261, 3 - - - 80, 23 - - - 250 - - - Tilt Right - - - bnGyroXN - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - fLPTiltControls - - - 3 - - - 72, 185 - - - 350, 31 - - - 254 - - - fLPTiltControls - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPControls - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 428, 216 - - - 0 - - - Controls - - - tPControls - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControls - - - 0 - - + True - + NoControl - - 5, 192 + + 13, 5 - - 67, 13 - - - 255 - - - Sixaxis Gyro: - - - slbGryo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 0 - - - NoControl - - - 3, 3 - - - 80, 23 - - - 250 - - - Tilt Up - - - sbnGyroZN - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - sfLPTiltControls - - - 0 - - - NoControl - - - 89, 3 - - - 80, 23 - - - 250 - - - Tilt Down - - - sbnGyroZP - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - sfLPTiltControls - - - 1 - - - NoControl - - - 175, 3 - - - 80, 23 - - - 250 - - - Tilt Left - - - sbnGyroXP - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - sfLPTiltControls - - - 2 - - - NoControl - - - 261, 3 - - - 80, 23 - - - 250 - - - Tilt Right - - - sbnGyroXN - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - sfLPTiltControls - - - 3 - - - 72, 185 - - - 350, 31 - - - 256 - - - sfLPTiltControls - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 1 - - - (nothing)/shift off - - - Cross - - - Circle - - - Square - - - Triangle - - - Options - - - Share - - - Up - - - Down - - - Left - - - Right - - - PS - - - L1 - - - R1 - - - L2 - - - R2 - - - L3 - - - R3 - - - Left Touch - - - Upper Touch - - - Multitouch - - - Right Touch - - - Sixaxis Up - - - Sixaxis Down - - - Sixaxis Left - - - Sixaxis Right - - - Touchpad (not clicked in) - - - 79, 3 - - - 145, 21 - - - 192 - - - cBShiftControl - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 2 - - - Cross : - - - Circle : - - - Sqaure : - - - Triangle : - - - Options : - - - Share : - - - Up : - - - Down : - - - Left : - - - Right : - - - PS : - - - L1 : - - - R1 : - - - L2 : - - - R2 : - - - L3 : - - - R3 : - - - Left Touch : - - - Upper Touch : - - - Multitouch : - - - Right Touch : - - - Left Stick Up : - - - Left Stick Down : - - - Left Stick Left : - - - Left Stick Right : - - - Right Stick Up : - - - Right Stick Down : - - - Right Stick Left : - - - Right Stick Right : - - - Sixaxis Up : - - - Sixaxis Down : - - - Sixaxis Left : - - - Sixaxis Right : - - - 257, 7 - - - 169, 173 - - - 188 - - - lBShiftControls - - - System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 3 - - - True - - - NoControl - - - 44, 6 - - + 29, 13 - - 189 + + 216 - - Hold + + Gyro - - MiddleCenter + + lb6Gryo - - lbHold - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tPShiftMod + + pnlSixaxis - - 4 - - - True - - - NoControl - - - 84, 24 - - - 105, 13 - - - 189 - - - to use these controls - - - MiddleCenter - - - lbtoUse - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 5 - - - Stretch - - - False - - - NoControl - - - 0, 0 - - - 245, 132 - - - StretchImage - - - 1 - - - spBController - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 0 - - - None - - - Flat - - - NoControl - - - 84, 25 - - - 78, 16 - - - 193 - - - Fall Back - - - sbnTouchUpper - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 1 - - - None - - - Flat - - - NoControl - - - 84, 40 - - - 25, 35 - - - 191 - - - Fall Back - - - sbnTouchLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 2 - - - None - - - Flat - - - NoControl - - - 139, 40 - - - 23, 34 - - - 190 - - - Fall Back - - - sbnTouchRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - + 3 - - None - - - Flat - - - NoControl - - - 109, 40 - - - 30, 34 - - - 192 - - - Fall Back - - - sbnTouchMulti - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 4 - - - None - - - Flat - - - NoControl - - - 175, 13 - - - 43, 15 - - - 87 - - - Fall Back - - - sbnR1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 5 - - - None - - - Flat - - - NoControl - - - 187, 76 - - - 19, 17 - - - 74 - - - Fall Back - - - sbnCross - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 6 - - - None - - - Flat - - - NoControl - - - 208, 60 - - - 16, 17 - - - 71 - - - Fall Back - - - sbnCircle - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 7 - - - None - - - Flat - - - NoControl - - - 150, 90 - - - 28, 28 - - - 91 - - - RS - - - sbtnRightStick - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 8 - - - None - - - Flat - - - NoControl - - - 173, 61 - - - 15, 14 - - - 72 - - - Fall Back - - - sbnSquare - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 9 - - - None - - - Flat - - - NoControl - - - 84, 6 - - - 78, 19 - - - 91 - - - Lightbar - - - sbtnLightbar - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 10 - - - None - - - Flat - - - NoControl - - - 188, 45 - - - 20, 16 - - - 73 - - - Fall Back - - - sbnTriangle - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 11 - - - None - - - Flat - - - NoControl - - - 44, 48 - - - 11, 15 - - - 80 - - - Fall Back - - - sbnUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 12 - - - None - - - Flat - - - NoControl - - - 70, 90 - - - 28, 28 - - - 91 - - - LS - - - sbtnLeftStick - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 13 - - - None - - - Flat - - - NoControl - - - 44, 73 - - - 12, 12 - - - 81 - - - Fall Back - - - sbnDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 14 - - - None - - - Flat - - - NoControl - - - 31, 0 - - - 43, 12 - - - 90 - - - Fall Back - - - sbnL2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 15 - - - None - - - Flat - - - NoControl - - - 55, 61 - - - 14, 14 - - - 82 - - - Fall Back - - - sbnRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 16 - - - None - - - Flat - - - NoControl - - - 174, 0 - - - 40, 13 - - - 89 - - - Fall Back - - - sbnR2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 17 - - - None - - - Flat - - - NoControl - - - 31, 61 - - - 14, 12 - - - 83 - - - Fall Back - - - sbnLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 18 - - - None - - - Flat - - - NoControl - - - 31, 13 - - - 43, 15 - - - 88 - - - Fall Back - - - sbnL1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 19 - - - None - - - Flat - - - NoControl - - - 167, 33 - - - 11, 21 - - - 84 - - - Fall Back - - - sbnOptions - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 20 - - - None - - - Flat - - - NoControl - - - 115, 87 - - - 18, 18 - - - 86 - - - Fall Back - - - sbnPS - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 21 - - - None - - - Flat - - - NoControl - - - 71, 33 - - - 11, 18 - - - 85 - - - Fall Back - - - sbnShare - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftMainPanel - - - 22 - - - 6, 42 - - - 249, 137 - - - 190 - - - ShiftMainPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tPShiftMod - - - 6 - - - NoControl - - - 71, 9 - - - 106, 23 - - - 184 - - - <- Back to full view - - - sbtnFullView - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 0 - - + False - + NoControl - - 0, 1 + + 3, 49 - - 245, 132 + + 50, 19 - - StretchImage + + 221 - - 161 + + tBsixaxisGyroY - - spBSticks + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + pnlSixaxis - - ShiftSticksPanel - - - 1 - - - None - - - Flat - - - NoControl - - - 36, 92 - - - 23, 23 - - - 163 - - - Fall Back - - - sbnL3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 2 - - - None - - - Flat - - - NoControl - - - 182, 116 - - - 23, 11 - - - 172 - - - Fall Back - - - sbnRSDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 3 - - - None - - - Flat - - - NoControl - - - 36, 77 - - - 23, 11 - - - 167 - - - Fall Back - - - sbnLSUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - + 4 - - None - - - Flat - - - NoControl - - - 182, 78 - - - 23, 11 - - - 171 - - - Fall Back - - - sbnRSUp - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 5 - - - None - - - Flat - - - NoControl - - - 21, 92 - - - 11, 23 - - - 164 - - - Fall Back - - - sbnLSLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 6 - - - None - - - Flat - - - NoControl - - - 210, 92 - - - 13, 23 - - - 170 - - - Fall Back - - - sbnRSRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 7 - - - None - - - Flat - - - NoControl - - - 65, 92 - - - 11, 23 - - - 165 - - - Fall Back - - - sbnLSRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 8 - - - None - - - Flat - - - NoControl - - - 165, 92 - - - 11, 23 - - - 169 - - - Fall Back - - - sbnRSLeft - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 9 - - - None - - - Flat - - - NoControl - - - 36, 120 - - - 23, 11 - - - 166 - - - Fall Back - - - sbnLSDown - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 10 - - - None - - - Flat - - - NoControl - - - 182, 92 - - - 23, 23 - - - 168 - - - Fall Back - - - sbnR3 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShiftSticksPanel - - - 11 - - - 6, 42 - - - 249, 142 - - - 191 - - + False - - ShiftSticksPanel + + NoControl - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 79 - - tPShiftMod + + 50, 19 - + + 220 + + + tBsixaxisGyroZ + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 5 + + + False + + + NoControl + + + 72, 49 + + + 50, 19 + + + 218 + + + tBsixaxisAccelY + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + + 6 + + + False + + + NoControl + + + 71, 79 + + + 50, 19 + + + 217 + + + tBsixaxisAccelZ + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSixaxis + + 7 - - 4, 22 - - - 3, 3, 3, 3 - - - 428, 216 - - - 1 - - - Shift Modifier - - - tPShiftMod - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControls - - - 1 - - + 300, 88 - + 125, 125 - + 236 - + False - - SixaxisPanel + + pnlSixaxis - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tPController - + 0 @@ -6726,6 +3536,3199 @@ with profile 2 + + True + + + NoControl + + + 5, 192 + + + 67, 13 + + + 255 + + + Sixaxis Gyro: + + + lbShiftGryo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 0 + + + NoControl + + + 3, 3 + + + 80, 23 + + + 250 + + + Tilt Up + + + bnShiftGyroZN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTiltControls + + + 0 + + + NoControl + + + 89, 3 + + + 80, 23 + + + 250 + + + Tilt Down + + + bnShiftGyroZP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTiltControls + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Tilt Left + + + bnShiftGyroXP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTiltControls + + + 2 + + + NoControl + + + 261, 3 + + + 80, 23 + + + 250 + + + Tilt Right + + + bnShiftGyroXN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPShiftTiltControls + + + 3 + + + 72, 185 + + + 350, 31 + + + 256 + + + fLPShiftTiltControls + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 1 + + + (nothing)/shift off + + + Cross + + + Circle + + + Square + + + Triangle + + + Options + + + Share + + + Up + + + Down + + + Left + + + Right + + + PS + + + L1 + + + R1 + + + L2 + + + R2 + + + L3 + + + R3 + + + Left Touch + + + Upper Touch + + + Multitouch + + + Right Touch + + + Sixaxis Up + + + Sixaxis Down + + + Sixaxis Left + + + Sixaxis Right + + + Touchpad (not clicked in) + + + 79, 3 + + + 145, 21 + + + 192 + + + cBShiftControl + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 2 + + + Cross : + + + Circle : + + + Sqaure : + + + Triangle : + + + Options : + + + Share : + + + Up : + + + Down : + + + Left : + + + Right : + + + PS : + + + L1 : + + + R1 : + + + L2 : + + + R2 : + + + L3 : + + + R3 : + + + Left Touch : + + + Upper Touch : + + + Multitouch : + + + Right Touch : + + + Left Stick Up : + + + Left Stick Down : + + + Left Stick Left : + + + Left Stick Right : + + + Right Stick Up : + + + Right Stick Down : + + + Right Stick Left : + + + Right Stick Right : + + + Sixaxis Up : + + + Sixaxis Down : + + + Sixaxis Left : + + + Sixaxis Right : + + + 257, 7 + + + 169, 173 + + + 188 + + + lBShiftControls + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 3 + + + True + + + NoControl + + + 44, 6 + + + 29, 13 + + + 189 + + + Hold + + + MiddleCenter + + + lbHold + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 4 + + + True + + + NoControl + + + 84, 24 + + + 105, 13 + + + 189 + + + to use these controls + + + MiddleCenter + + + lbtoUse + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 5 + + + Stretch + + + False + + + NoControl + + + 0, 0 + + + 245, 132 + + + StretchImage + + + 1 + + + pBShiftController + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 0 + + + None + + + Flat + + + NoControl + + + 84, 25 + + + 78, 16 + + + 193 + + + Fall Back + + + bnShiftTouchUpper + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 1 + + + None + + + Flat + + + NoControl + + + 84, 40 + + + 25, 35 + + + 191 + + + Fall Back + + + bnShiftTouchLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 2 + + + None + + + Flat + + + NoControl + + + 139, 40 + + + 23, 34 + + + 190 + + + Fall Back + + + bnShiftTouchRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 3 + + + None + + + Flat + + + NoControl + + + 109, 40 + + + 30, 34 + + + 192 + + + Fall Back + + + bnShiftTouchMulti + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 4 + + + None + + + Flat + + + NoControl + + + 175, 13 + + + 43, 15 + + + 87 + + + Fall Back + + + bnShiftR1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 5 + + + None + + + Flat + + + NoControl + + + 187, 76 + + + 19, 17 + + + 74 + + + Fall Back + + + bnShiftCross + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 6 + + + None + + + Flat + + + NoControl + + + 208, 60 + + + 16, 17 + + + 71 + + + Fall Back + + + bnShiftCircle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 7 + + + None + + + Flat + + + NoControl + + + 150, 90 + + + 28, 28 + + + 91 + + + RS + + + btnShiftRightStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 8 + + + None + + + Flat + + + NoControl + + + 173, 61 + + + 15, 14 + + + 72 + + + Fall Back + + + bnShiftSquare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 9 + + + None + + + Flat + + + NoControl + + + 84, 6 + + + 78, 19 + + + 91 + + + Lightbar + + + btnShiftLightbar + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 10 + + + None + + + Flat + + + NoControl + + + 188, 45 + + + 20, 16 + + + 73 + + + Fall Back + + + bnShiftTriangle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 11 + + + None + + + Flat + + + NoControl + + + 44, 48 + + + 11, 15 + + + 80 + + + Fall Back + + + bnShiftUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 12 + + + None + + + Flat + + + NoControl + + + 70, 90 + + + 28, 28 + + + 91 + + + LS + + + btnShiftLeftStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 13 + + + None + + + Flat + + + NoControl + + + 44, 73 + + + 12, 12 + + + 81 + + + Fall Back + + + bnShiftDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 14 + + + None + + + Flat + + + NoControl + + + 31, 0 + + + 43, 12 + + + 90 + + + Fall Back + + + bnShiftL2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 15 + + + None + + + Flat + + + NoControl + + + 55, 61 + + + 14, 14 + + + 82 + + + Fall Back + + + bnShiftRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 16 + + + None + + + Flat + + + NoControl + + + 174, 0 + + + 40, 13 + + + 89 + + + Fall Back + + + bnShiftR2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 17 + + + None + + + Flat + + + NoControl + + + 31, 61 + + + 14, 12 + + + 83 + + + Fall Back + + + bnShiftLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 18 + + + None + + + Flat + + + NoControl + + + 31, 13 + + + 43, 15 + + + 88 + + + Fall Back + + + bnShiftL1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 19 + + + None + + + Flat + + + NoControl + + + 167, 33 + + + 11, 21 + + + 84 + + + Fall Back + + + bnShiftOptions + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 20 + + + None + + + Flat + + + NoControl + + + 115, 87 + + + 18, 18 + + + 86 + + + Fall Back + + + bnShiftPS + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 21 + + + None + + + Flat + + + NoControl + + + 71, 33 + + + 11, 18 + + + 85 + + + Fall Back + + + bnShiftShare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftMain + + + 22 + + + 6, 42 + + + 249, 137 + + + 190 + + + pnlShiftMain + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 6 + + + NoControl + + + 71, 9 + + + 106, 23 + + + 184 + + + <- Back to full view + + + btnShiftFullView + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 0 + + + False + + + NoControl + + + 0, 1 + + + 245, 132 + + + StretchImage + + + 161 + + + pBShiftSticks + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 1 + + + None + + + Flat + + + NoControl + + + 36, 92 + + + 23, 23 + + + 163 + + + Fall Back + + + bnShiftL3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 2 + + + None + + + Flat + + + NoControl + + + 182, 116 + + + 23, 11 + + + 172 + + + Fall Back + + + bnShiftRSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 3 + + + None + + + Flat + + + NoControl + + + 36, 77 + + + 23, 11 + + + 167 + + + Fall Back + + + bnShiftLSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 4 + + + None + + + Flat + + + NoControl + + + 182, 78 + + + 23, 11 + + + 171 + + + Fall Back + + + bnShiftRSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 5 + + + None + + + Flat + + + NoControl + + + 21, 92 + + + 11, 23 + + + 164 + + + Fall Back + + + bnShiftLSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 6 + + + None + + + Flat + + + NoControl + + + 210, 92 + + + 13, 23 + + + 170 + + + Fall Back + + + bnShiftRSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 7 + + + None + + + Flat + + + NoControl + + + 65, 92 + + + 11, 23 + + + 165 + + + Fall Back + + + bnShiftLSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 8 + + + None + + + Flat + + + NoControl + + + 165, 92 + + + 11, 23 + + + 169 + + + Fall Back + + + bnShiftRSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 9 + + + None + + + Flat + + + NoControl + + + 36, 120 + + + 23, 11 + + + 166 + + + Fall Back + + + bnShiftLSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 10 + + + None + + + Flat + + + NoControl + + + 182, 92 + + + 23, 23 + + + 168 + + + Fall Back + + + bnShiftR3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlShiftSticks + + + 11 + + + 6, 42 + + + 249, 142 + + + 191 + + + False + + + pnlShiftSticks + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPShiftMod + + + 7 + + + 4, 22 + + + 3, 3, 3, 3 + + + 428, 216 + + + 1 + + + Shift Modifier + + + tPShiftMod + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControls + + + 1 + + + True + + + NoControl + + + 5, 192 + + + 67, 13 + + + 253 + + + Sixaxis Gyro: + + + lbGryo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 0 + + + NoControl + + + 3, 3 + + + 80, 23 + + + 250 + + + Tilt Up + + + bnGyroZN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 0 + + + NoControl + + + 89, 3 + + + 80, 23 + + + 250 + + + Tilt Down + + + bnGyroZP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 1 + + + NoControl + + + 175, 3 + + + 80, 23 + + + 250 + + + Tilt Left + + + bnGyroXP + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 2 + + + NoControl + + + 261, 3 + + + 80, 23 + + + 250 + + + Tilt Right + + + bnGyroXN + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + fLPTiltControls + + + 3 + + + 72, 185 + + + 350, 31 + + + 254 + + + fLPTiltControls + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 1 + + + Stretch + + + False + + + NoControl + + + 0, 0 + + + 245, 132 + + + StretchImage + + + 1 + + + pBController + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 0 + + + None + + + Flat + + + NoControl + + + 84, 25 + + + 78, 16 + + + 193 + + + Middle Mouse Button + + + bnTouchUpper + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 1 + + + None + + + Flat + + + NoControl + + + 84, 40 + + + 25, 35 + + + 191 + + + Left Mouse Button + + + bnTouchLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 2 + + + None + + + Flat + + + NoControl + + + 139, 40 + + + 23, 34 + + + 190 + + + Left Mouse Button + + + bnTouchRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 3 + + + None + + + Flat + + + NoControl + + + 109, 40 + + + 30, 34 + + + 192 + + + Right Mouse Button + + + bnTouchMulti + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 4 + + + None + + + Flat + + + NoControl + + + 175, 13 + + + 43, 15 + + + 87 + + + Right Bumper + + + bnR1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 5 + + + None + + + Flat + + + NoControl + + + 187, 76 + + + 19, 17 + + + 74 + + + A Button + + + bnCross + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 6 + + + None + + + Flat + + + NoControl + + + 208, 60 + + + 16, 17 + + + 71 + + + B Button + + + bnCircle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 7 + + + None + + + Flat + + + NoControl + + + 150, 90 + + + 28, 28 + + + 91 + + + RS + + + btnRightStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 8 + + + None + + + Flat + + + NoControl + + + 173, 61 + + + 15, 14 + + + 72 + + + X Button + + + bnSquare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 9 + + + None + + + Flat + + + NoControl + + + 84, 6 + + + 78, 19 + + + 91 + + + Lightbar + + + btnLightbar + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 10 + + + None + + + Flat + + + NoControl + + + 188, 45 + + + 20, 16 + + + 73 + + + Y Button + + + bnTriangle + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 11 + + + None + + + Flat + + + NoControl + + + 44, 48 + + + 11, 15 + + + 80 + + + Up Button + + + bnUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 12 + + + None + + + Flat + + + NoControl + + + 70, 90 + + + 28, 28 + + + 91 + + + LS + + + btnLeftStick + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 13 + + + None + + + Flat + + + NoControl + + + 44, 73 + + + 12, 12 + + + 81 + + + Down Button + + + bnDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 14 + + + None + + + Flat + + + NoControl + + + 55, 61 + + + 14, 14 + + + 82 + + + Right Button + + + bnRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 15 + + + None + + + Flat + + + NoControl + + + 31, 61 + + + 14, 12 + + + 83 + + + Left Button + + + bnLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 16 + + + None + + + Flat + + + NoControl + + + 31, 13 + + + 43, 15 + + + 88 + + + Left Bumper + + + bnL1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 17 + + + None + + + Flat + + + NoControl + + + 167, 33 + + + 11, 21 + + + 84 + + + Start + + + bnOptions + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 18 + + + None + + + Flat + + + NoControl + + + 115, 87 + + + 18, 18 + + + 86 + + + Guide + + + bnPS + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 19 + + + None + + + Flat + + + NoControl + + + 71, 33 + + + 11, 18 + + + 85 + + + Back + + + bnShare + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 20 + + + None + + + Flat + + + NoControl + + + 31, 0 + + + 43, 12 + + + 90 + + + Left Trigger + + + bnL2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 21 + + + None + + + Flat + + + NoControl + + + 174, 0 + + + 40, 13 + + + 89 + + + Right Trigger + + + bnR2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlMain + + + 22 + + + 6, 42 + + + 249, 137 + + + 185 + + + pnlMain + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 2 + + + Cross : + + + Circle : + + + Square : + + + Triangle : + + + Options : + + + Share : + + + Up : + + + Down : + + + Left : + + + Right : + + + PS : + + + L1 : + + + R1 : + + + L2 : + + + R2 : + + + L3 : + + + R3 : + + + Left Touch : + + + Upper Touch : + + + Multitouch : + + + Right Touch : + + + Left Stick Up : + + + Left Stick Down : + + + Left Stick Left : + + + Left Stick Right : + + + Right Stick Up : + + + Right Stick Down : + + + Right Stick Left : + + + Right Stick Right : + + + Sixaxis Up : + + + Sixaxis Down : + + + Sixaxis Left : + + + Sixaxis Right : + + + 257, 7 + + + 169, 173 + + + 180 + + + lBControls + + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 3 + + + NoControl + + + 24, 5 + + + 219, 26 + + + 181 + + + Click a part of the controller to change action +Click the lightbar for color picker + + + MiddleCenter + + + lbControlTip + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 4 + + + NoControl + + + 71, 9 + + + 106, 23 + + + 184 + + + <- Back to full view + + + btnFullView + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 0 + + + False + + + NoControl + + + 0, 1 + + + 245, 132 + + + StretchImage + + + 161 + + + pBSticks + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 1 + + + None + + + Flat + + + NoControl + + + 36, 92 + + + 23, 23 + + + 163 + + + Left Stick + + + bnL3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 2 + + + None + + + Flat + + + NoControl + + + 182, 116 + + + 23, 11 + + + 172 + + + Right Y-Axis+ + + + bnRSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 3 + + + None + + + Flat + + + NoControl + + + 36, 77 + + + 23, 11 + + + 167 + + + Left Y-Axis- + + + bnLSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 4 + + + None + + + Flat + + + NoControl + + + 182, 78 + + + 23, 11 + + + 171 + + + Right Y-Axis- + + + bnRSUp + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 5 + + + None + + + Flat + + + NoControl + + + 21, 92 + + + 11, 23 + + + 164 + + + Left X-Axis- + + + bnLSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 6 + + + None + + + Flat + + + NoControl + + + 210, 92 + + + 13, 23 + + + 170 + + + Right X-Axis+ + + + bnRSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 7 + + + None + + + Flat + + + NoControl + + + 65, 92 + + + 11, 23 + + + 165 + + + Left X-Axis+ + + + bnLSRight + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 8 + + + None + + + Flat + + + NoControl + + + 165, 92 + + + 11, 23 + + + 169 + + + Right X-Axis- + + + bnRSLeft + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 9 + + + None + + + Flat + + + NoControl + + + 36, 120 + + + 23, 11 + + + 166 + + + Left Y-Axis+ + + + bnLSDown + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 10 + + + None + + + Flat + + + NoControl + + + 182, 92 + + + 23, 23 + + + 168 + + + Right Stick + + + bnR3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pnlSticks + + + 11 + + + 6, 42 + + + 249, 142 + + + 187 + + + False + + + pnlSticks + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tPControls + + + 5 + + + 4, 22 + + + 3, 3, 3, 3 + + + 428, 216 + + + 0 + + + Controls + + + tPControls + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControls + + + 0 + 3, 3 @@ -6747,12 +6750,6 @@ with profile 0 - - 153, 17 - - - 17, 17 - True @@ -6765,6 +6762,9 @@ with profile 885, 325 + + NoControl + 901, 364 @@ -6784,7 +6784,7 @@ with profile advColorDialog - ScpServer.AdvancedColorDialog, DS4Windows, Version=1.4.0.75, Culture=neutral, PublicKeyToken=null + ScpServer.AdvancedColorDialog, DS4Windows, Version=1.4.0.9, Culture=neutral, PublicKeyToken=null Options diff --git a/DS4Tool/Properties/AssemblyInfo.cs b/DS4Tool/Properties/AssemblyInfo.cs index 4e8b431..f344ff4 100644 --- a/DS4Tool/Properties/AssemblyInfo.cs +++ b/DS4Tool/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.0.81")] -[assembly: AssemblyFileVersion("1.4.0.81")] +[assembly: AssemblyVersion("1.4.0.85")] +[assembly: AssemblyFileVersion("1.4.0.85")]