From 8d0114a22a71e0c8d9298350e06733f13b34fcd0 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Tue, 2 Apr 2024 09:48:46 -0600 Subject: [PATCH 01/19] Fix pivot, boundary keys --- SourceCode/GPS/Classes/CABCurve.cs | 6 ++- SourceCode/GPS/Forms/Controls.Designer.cs | 14 +----- .../Field/FormBoundaryPlayer.Designer.cs | 48 +++++++++++++++++++ .../GPS/Forms/Field/FormBoundaryPlayer.cs | 42 ++++++++++++++++ 4 files changed, 95 insertions(+), 15 deletions(-) diff --git a/SourceCode/GPS/Classes/CABCurve.cs b/SourceCode/GPS/Classes/CABCurve.cs index caf5cae89..969cced7a 100644 --- a/SourceCode/GPS/Classes/CABCurve.cs +++ b/SourceCode/GPS/Classes/CABCurve.cs @@ -378,11 +378,13 @@ public void BuildCurveCurrentList(vec3 pivot) - (mf.pivotAxlePos.northing - refPoint1.northing) * (mf.steerAxlePos.easting - refPoint1.easting)) < 0; //how far are we away from the reference line at 90 degrees - 2D cross product and distance - distanceFromRefLine = glm.Distance(mf.guidanceLookPos, refPoint1); + distanceFromRefLine = glm.Distance(mf.pivotAxlePos, refPoint1); distanceFromRefLine -= (0.5 * widthMinusOverlap); - double RefDist = (distanceFromRefLine + (isHeadingSameWay ? mf.tool.offset : -mf.tool.offset)) / widthMinusOverlap; + double RefDist = (distanceFromRefLine + + (isHeadingSameWay ? mf.tool.offset : -mf.tool.offset) + + mf.trk.gArr[idx].nudgeDistance) / widthMinusOverlap; if (RefDist < 0) howManyPathsAway = (int)(RefDist - 0.5); else howManyPathsAway = (int)(RefDist + 0.5); diff --git a/SourceCode/GPS/Forms/Controls.Designer.cs b/SourceCode/GPS/Forms/Controls.Designer.cs index 6d0e9f430..394232af9 100644 --- a/SourceCode/GPS/Forms/Controls.Designer.cs +++ b/SourceCode/GPS/Forms/Controls.Designer.cs @@ -519,20 +519,7 @@ private void btnJobMenu_Click(object sender, EventArgs e) trk.idx = -1; - //if (isJobStarted && trk.gArr.Count > 0) - //{ - // for (int i = 0; i < trk.gArr.Count; i++) - // { - // if (trk.gArr[i].isVisible) - // { - // trk.idx = i; - // break; - // } - // } - //} - PanelUpdateRightAndBottom(); - } public void FileSaveEverythingBeforeClosingField() { @@ -562,6 +549,7 @@ public void FileSaveEverythingBeforeClosingField() FileSaveBoundary(); FileSaveSections(); FileSaveContour(); + FileSaveTracks(); ExportFieldAs_KML(); ExportFieldAs_ISOXMLv3(); diff --git a/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.Designer.cs b/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.Designer.cs index 3c4c9b5b2..297887a0d 100644 --- a/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.Designer.cs +++ b/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.Designer.cs @@ -42,6 +42,9 @@ private void InitializeComponent() this.nudOffset = new AgOpenGPS.NudlessNumericUpDown(); this.btnLeftRight = new System.Windows.Forms.Button(); this.lblMetersInches = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.nudOffset)).BeginInit(); this.SuspendLayout(); // @@ -227,6 +230,45 @@ private void InitializeComponent() this.lblMetersInches.Text = "meters"; this.lblMetersInches.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // + // label3 + // + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label3.Location = new System.Drawing.Point(5, 207); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(23, 23); + this.label3.TabIndex = 152; + this.label3.Text = "B"; + this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.BackColor = System.Drawing.Color.Transparent; + this.label4.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label4.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label4.Location = new System.Drawing.Point(164, 207); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(24, 23); + this.label4.TabIndex = 153; + this.label4.Text = "D"; + this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.BackColor = System.Drawing.Color.Transparent; + this.label5.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label5.Location = new System.Drawing.Point(5, 319); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(24, 23); + this.label5.TabIndex = 154; + this.label5.Text = "R"; + this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // // FormBoundaryPlayer // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F); @@ -234,6 +276,9 @@ private void InitializeComponent() this.BackColor = System.Drawing.Color.WhiteSmoke; this.ClientSize = new System.Drawing.Size(261, 399); this.ControlBox = false; + this.Controls.Add(this.label5); + this.Controls.Add(this.label4); + this.Controls.Add(this.label3); this.Controls.Add(this.btnAddPoint); this.Controls.Add(this.lblPoints); this.Controls.Add(this.btnLeftRight); @@ -280,5 +325,8 @@ private void InitializeComponent() private NudlessNumericUpDown nudOffset; private System.Windows.Forms.Button btnLeftRight; private System.Windows.Forms.Label lblMetersInches; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; } } \ No newline at end of file diff --git a/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.cs b/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.cs index edefa8f98..229153976 100644 --- a/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.cs +++ b/SourceCode/GPS/Forms/Field/FormBoundaryPlayer.cs @@ -198,6 +198,48 @@ private void btnLeftRight_Click(object sender, EventArgs e) mf.bnd.isDrawRightSide = !mf.bnd.isDrawRightSide; btnLeftRight.Image = mf.bnd.isDrawRightSide ? Properties.Resources.BoundaryRight : Properties.Resources.BoundaryLeft; } + + protected override bool ProcessCmdKey(ref Message msg, Keys keyData) + { + if (keyData == Keys.B) //autosteer button on off + { + mf.bnd.isOkToAddPoints = true; + mf.AddBoundaryPoint(); + mf.bnd.isOkToAddPoints = false; + lblPoints.Text = mf.bnd.bndBeingMadePts.Count.ToString(); + } + + if (keyData == Keys.D) //autosteer button on off + { + int ptCount = mf.bnd.bndBeingMadePts.Count; + if (ptCount > 0) + mf.bnd.bndBeingMadePts.RemoveAt(ptCount - 1); + lblPoints.Text = mf.bnd.bndBeingMadePts.Count.ToString(); + } + + if (keyData == Keys.R) //autosteer button on off + { + if (mf.bnd.isOkToAddPoints) + { + mf.bnd.isOkToAddPoints = false; + btnPausePlay.Image = Properties.Resources.BoundaryRecord; + //btnPausePlay.Text = gStr.gsRecord; + btnAddPoint.Enabled = true; + btnDeleteLast.Enabled = true; + } + else + { + mf.bnd.isOkToAddPoints = true; + btnPausePlay.Image = Properties.Resources.boundaryPause; + //btnPausePlay.Text = gStr.gsPause; + btnAddPoint.Enabled = false; + btnDeleteLast.Enabled = false; + } + } + // Call the base class + return base.ProcessCmdKey(ref msg, keyData); + } + } } From 3895b27028c752823e2d1122679acf5dd559b8e8 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Tue, 2 Apr 2024 10:19:00 -0600 Subject: [PATCH 02/19] Elevation log image --- SourceCode/GPS/AgOpenGPS.csproj | 1 + .../GPS/Forms/Settings/FormConfig.Designer.cs | 7345 ++++++++--------- SourceCode/GPS/Forms/Settings/FormConfig.cs | 1 - .../GPS/Properties/Resources.Designer.cs | 10 + SourceCode/GPS/Properties/Resources.resx | 297 +- .../btnImages/Config/ConD_LogElevation.png | Bin 0 -> 3036 bytes 6 files changed, 3831 insertions(+), 3823 deletions(-) create mode 100644 SourceCode/GPS/btnImages/Config/ConD_LogElevation.png diff --git a/SourceCode/GPS/AgOpenGPS.csproj b/SourceCode/GPS/AgOpenGPS.csproj index 33a699ad8..553309c46 100644 --- a/SourceCode/GPS/AgOpenGPS.csproj +++ b/SourceCode/GPS/AgOpenGPS.csproj @@ -940,6 +940,7 @@ + diff --git a/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs b/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs index 7d93a0b8e..09b804e02 100644 --- a/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs +++ b/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs @@ -30,34 +30,11 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.panelLeftSideMenu = new System.Windows.Forms.Panel(); - this.btnFeatureHides = new System.Windows.Forms.Button(); - this.btnDisplay = new System.Windows.Forms.Button(); - this.btnTram = new System.Windows.Forms.Button(); this.panelArduinoSubMenu = new System.Windows.Forms.Panel(); - this.btnMachineRelay = new System.Windows.Forms.Button(); - this.btnMachineModule = new System.Windows.Forms.Button(); - this.btnArduino = new System.Windows.Forms.Button(); - this.btnUTurn = new System.Windows.Forms.Button(); this.panelDataSourcesSubMenu = new System.Windows.Forms.Panel(); - this.btnSubRoll = new System.Windows.Forms.Button(); - this.btnSubHeading = new System.Windows.Forms.Button(); - this.btnDataSources = new System.Windows.Forms.Button(); this.panelToolSubMenu = new System.Windows.Forms.Panel(); - this.btnSubSwitches = new System.Windows.Forms.Button(); - this.btnSubToolSettings = new System.Windows.Forms.Button(); - this.btnSubSections = new System.Windows.Forms.Button(); - this.btnSubToolOffset = new System.Windows.Forms.Button(); - this.btnSubPivot = new System.Windows.Forms.Button(); - this.btnSubHitch = new System.Windows.Forms.Button(); - this.btnSubToolType = new System.Windows.Forms.Button(); - this.btnTool = new System.Windows.Forms.Button(); this.panelVehicleSubMenu = new System.Windows.Forms.Panel(); this.button1 = new System.Windows.Forms.Button(); - this.btnSubGuidance = new System.Windows.Forms.Button(); - this.btnSubAntenna = new System.Windows.Forms.Button(); - this.btnSubDimensions = new System.Windows.Forms.Button(); - this.btnSubVehicleType = new System.Windows.Forms.Button(); - this.btnVehicle = new System.Windows.Forms.Button(); this.tab1 = new System.Windows.Forms.TabControl(); this.tabSummary = new System.Windows.Forms.TabPage(); this.label173 = new System.Windows.Forms.Label(); @@ -79,55 +56,20 @@ private void InitializeComponent() this.lblSummaryVehicleName = new System.Windows.Forms.Label(); this.label57 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); - this.btnVehicleLoad = new System.Windows.Forms.Button(); - this.btnVehicleDelete = new System.Windows.Forms.Button(); this.lvVehicles = new System.Windows.Forms.ListView(); this.chVehicle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tboxVehicleNameSave = new System.Windows.Forms.TextBox(); - this.btnVehicleSave = new System.Windows.Forms.Button(); this.label29 = new System.Windows.Forms.Label(); this.lblSummaryWidth = new System.Windows.Forms.Label(); this.lblSumWheelbase = new System.Windows.Forms.Label(); this.tabVConfig = new System.Windows.Forms.TabPage(); this.lblOpacityPercent = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); - this.rbtnHarvester = new System.Windows.Forms.RadioButton(); - this.rbtn4WD = new System.Windows.Forms.RadioButton(); - this.rbtnTractor = new System.Windows.Forms.RadioButton(); this.panel4WdBrands = new System.Windows.Forms.Panel(); - this.rbtnBrand4WDHolder = new System.Windows.Forms.RadioButton(); - this.rbtnBrand4WDAgOpenGPS = new System.Windows.Forms.RadioButton(); - this.rbtnBrand4WDChallenger = new System.Windows.Forms.RadioButton(); - this.rbtnBrand4WDCase = new System.Windows.Forms.RadioButton(); - this.rbtnBrand4WDNH = new System.Windows.Forms.RadioButton(); - this.rbtnBrand4WDJDeere = new System.Windows.Forms.RadioButton(); this.label70 = new System.Windows.Forms.Label(); this.panelHarvesterBrands = new System.Windows.Forms.Panel(); - this.rbtnBrandHAgOpenGPS = new System.Windows.Forms.RadioButton(); - this.rbtnBrandHCase = new System.Windows.Forms.RadioButton(); - this.rbtnBrandHClaas = new System.Windows.Forms.RadioButton(); - this.rbtnBrandHJDeere = new System.Windows.Forms.RadioButton(); - this.rbtnBrandHNH = new System.Windows.Forms.RadioButton(); this.panelTractorBrands = new System.Windows.Forms.Panel(); - this.rbtnBrandTAgOpenGPS = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTCase = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTClaas = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTDeutz = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTFendt = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTJDeere = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTKubota = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTMassey = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTNH = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTSame = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTSteyr = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTValtra = new System.Windows.Forms.RadioButton(); - this.rbtnBrandTUrsus = new System.Windows.Forms.RadioButton(); this.label105 = new System.Windows.Forms.Label(); - this.btnOpacityDn = new System.Windows.Forms.Button(); - this.panelOpacity = new System.Windows.Forms.Panel(); - this.pboxAlpha = new System.Windows.Forms.PictureBox(); - this.btnOpacityUp = new System.Windows.Forms.Button(); - this.cboxIsImage = new System.Windows.Forms.CheckBox(); this.tabVAntenna = new System.Windows.Forms.TabPage(); this.label100 = new System.Windows.Forms.Label(); this.label99 = new System.Windows.Forms.Label(); @@ -135,7 +77,6 @@ private void InitializeComponent() this.nudAntennaHeight = new AgOpenGPS.NudlessNumericUpDown(); this.nudAntennaPivot = new AgOpenGPS.NudlessNumericUpDown(); this.nudAntennaOffset = new AgOpenGPS.NudlessNumericUpDown(); - this.pboxAntenna = new System.Windows.Forms.PictureBox(); this.tabVDimensions = new System.Windows.Forms.TabPage(); this.label97 = new System.Windows.Forms.Label(); this.label96 = new System.Windows.Forms.Label(); @@ -149,7 +90,6 @@ private void InitializeComponent() this.nudVehicleTrack = new AgOpenGPS.NudlessNumericUpDown(); this.nudWheelbase = new AgOpenGPS.NudlessNumericUpDown(); this.nudMinTurnRadius = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.tabVGuidance = new System.Windows.Forms.TabPage(); this.nudMinSteerSpeed = new AgOpenGPS.NudlessNumericUpDown(); this.label165 = new System.Windows.Forms.Label(); @@ -174,52 +114,28 @@ private void InitializeComponent() this.nudGuidanceLookAhead = new AgOpenGPS.NudlessNumericUpDown(); this.nudSnapDistance = new AgOpenGPS.NudlessNumericUpDown(); this.nudLineWidth = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox17 = new System.Windows.Forms.PictureBox(); - this.pictureBox16 = new System.Windows.Forms.PictureBox(); - this.cboxSteerInReverse = new System.Windows.Forms.CheckBox(); - this.pictureBox15 = new System.Windows.Forms.PictureBox(); - this.pictureBox10 = new System.Windows.Forms.PictureBox(); - this.pictureBox12 = new System.Windows.Forms.PictureBox(); - this.cboxAutoSteerAuto = new System.Windows.Forms.CheckBox(); - this.pictureBox5 = new System.Windows.Forms.PictureBox(); - this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.tabTConfig = new System.Windows.Forms.TabPage(); this.gboxAttachment = new System.Windows.Forms.GroupBox(); - this.pboxConfigHarvester = new System.Windows.Forms.PictureBox(); - this.rbtnTBT = new System.Windows.Forms.RadioButton(); - this.rbtnFixedRear = new System.Windows.Forms.RadioButton(); - this.rbtnFront = new System.Windows.Forms.RadioButton(); - this.rbtnTrailing = new System.Windows.Forms.RadioButton(); this.tabTHitch = new System.Windows.Forms.TabPage(); this.label112 = new System.Windows.Forms.Label(); this.nudTrailingHitchLength = new AgOpenGPS.NudlessNumericUpDown(); this.nudDrawbarLength = new AgOpenGPS.NudlessNumericUpDown(); this.nudTankHitch = new AgOpenGPS.NudlessNumericUpDown(); this.label164 = new System.Windows.Forms.Label(); - this.picboxToolHitch = new System.Windows.Forms.PictureBox(); this.tabToolOffset = new System.Windows.Forms.TabPage(); - this.btnZeroOverlap = new System.Windows.Forms.Button(); - this.btnZeroToolOffset = new System.Windows.Forms.Button(); this.label176 = new System.Windows.Forms.Label(); this.label175 = new System.Windows.Forms.Label(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.label9 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); - this.rbtnToolOverlap = new System.Windows.Forms.RadioButton(); - this.rbtnToolGap = new System.Windows.Forms.RadioButton(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label17 = new System.Windows.Forms.Label(); - this.rbtnLeftNegative = new System.Windows.Forms.RadioButton(); - this.rbtnToolRightPositive = new System.Windows.Forms.RadioButton(); this.label65 = new System.Windows.Forms.Label(); this.nudOverlap = new AgOpenGPS.NudlessNumericUpDown(); this.nudOffset = new AgOpenGPS.NudlessNumericUpDown(); this.tabToolPivot = new System.Windows.Forms.TabPage(); - this.btnPivotOffsetZero = new System.Windows.Forms.Button(); this.label177 = new System.Windows.Forms.Label(); this.nudTrailingToolToPivotLength = new AgOpenGPS.NudlessNumericUpDown(); - this.rbtnPivotBehindPos = new System.Windows.Forms.RadioButton(); - this.rbtnPivotAheadNeg = new System.Windows.Forms.RadioButton(); this.tabTSections = new System.Windows.Forms.TabPage(); this.panelSymmetricSections = new System.Windows.Forms.Panel(); this.nudZone8To = new AgOpenGPS.NudlessNumericUpDown(); @@ -302,19 +218,9 @@ private void InitializeComponent() this.nudSection02 = new AgOpenGPS.NudlessNumericUpDown(); this.nudSection01 = new AgOpenGPS.NudlessNumericUpDown(); this.nudNumberOfSections = new AgOpenGPS.NudlessNumericUpDown(); - this.cboxSectionBoundaryControl = new System.Windows.Forms.CheckBox(); - this.pictureBox11 = new System.Windows.Forms.PictureBox(); - this.cboxIsUnique = new System.Windows.Forms.CheckBox(); this.tabTSwitches = new System.Windows.Forms.TabPage(); this.grpControls = new System.Windows.Forms.GroupBox(); - this.chkSetAutoSectionsSteer = new System.Windows.Forms.CheckBox(); - this.chkSelectSteerSwitch = new System.Windows.Forms.CheckBox(); - this.chkSetManualSectionsSteer = new System.Windows.Forms.CheckBox(); this.grpSwitch = new System.Windows.Forms.GroupBox(); - this.chkSelectWorkSwitch = new System.Windows.Forms.CheckBox(); - this.chkSetAutoSections = new System.Windows.Forms.CheckBox(); - this.chkSetManualSections = new System.Windows.Forms.CheckBox(); - this.chkWorkSwActiveLow = new System.Windows.Forms.CheckBox(); this.tabTSettings = new System.Windows.Forms.TabPage(); this.label66 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); @@ -323,15 +229,11 @@ private void InitializeComponent() this.nudLookAheadOff = new AgOpenGPS.NudlessNumericUpDown(); this.nudTurnOffDelay = new AgOpenGPS.NudlessNumericUpDown(); this.nudLookAhead = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox18 = new System.Windows.Forms.PictureBox(); - this.pictureBox4 = new System.Windows.Forms.PictureBox(); - this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.tabDHeading = new System.Windows.Forms.TabPage(); this.label2 = new System.Windows.Forms.Label(); this.gboxDual = new System.Windows.Forms.GroupBox(); this.label102 = new System.Windows.Forms.Label(); this.nudDualReverseDistance = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox13 = new System.Windows.Forms.PictureBox(); this.nudDualHeadingOffset = new AgOpenGPS.NudlessNumericUpDown(); this.label12 = new System.Windows.Forms.Label(); this.label118 = new System.Windows.Forms.Label(); @@ -349,14 +251,7 @@ private void InitializeComponent() this.label8 = new System.Windows.Forms.Label(); this.label153 = new System.Windows.Forms.Label(); this.headingGroupBox = new System.Windows.Forms.GroupBox(); - this.rbtnHeadingHDT = new System.Windows.Forms.RadioButton(); - this.rbtnHeadingFix = new System.Windows.Forms.RadioButton(); - this.cboxIsRTK_KillAutoSteer = new System.Windows.Forms.CheckBox(); - this.cboxIsRTK = new System.Windows.Forms.CheckBox(); this.tabDRoll = new System.Windows.Forms.TabPage(); - this.btnRollOffsetUp = new ProXoft.WinForms.RepeatButton(); - this.btnRollOffsetDown = new ProXoft.WinForms.RepeatButton(); - this.pictureBox9 = new System.Windows.Forms.PictureBox(); this.label78 = new System.Windows.Forms.Label(); this.label77 = new System.Windows.Forms.Label(); this.label76 = new System.Windows.Forms.Label(); @@ -366,10 +261,6 @@ private void InitializeComponent() this.lblRollFilterPercent = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.hsbarRollFilter = new System.Windows.Forms.HScrollBar(); - this.btnResetIMU = new System.Windows.Forms.Button(); - this.btnZeroRoll = new System.Windows.Forms.Button(); - this.btnRemoveZeroOffset = new System.Windows.Forms.Button(); - this.cboxDataInvertRoll = new System.Windows.Forms.CheckBox(); this.tabUTurn = new System.Windows.Forms.TabPage(); this.label68 = new System.Windows.Forms.Label(); this.label63 = new System.Windows.Forms.Label(); @@ -379,14 +270,6 @@ private void InitializeComponent() this.lblDistance = new System.Windows.Forms.Label(); this.nudYouTurnRadius = new AgOpenGPS.NudlessNumericUpDown(); this.nudTurnDistanceFromBoundary = new AgOpenGPS.NudlessNumericUpDown(); - this.label64 = new System.Windows.Forms.Label(); - this.btnTurnSmoothingUp = new ProXoft.WinForms.RepeatButton(); - this.btnTurnSmoothingDown = new ProXoft.WinForms.RepeatButton(); - this.label59 = new System.Windows.Forms.Label(); - this.label58 = new System.Windows.Forms.Label(); - this.lblWhenTrig = new System.Windows.Forms.Label(); - this.btnDistanceUp = new ProXoft.WinForms.RepeatButton(); - this.btnDistanceDn = new ProXoft.WinForms.RepeatButton(); this.tabRelay = new System.Windows.Forms.TabPage(); this.cboxPin23 = new System.Windows.Forms.ComboBox(); this.cboxPin22 = new System.Windows.Forms.ComboBox(); @@ -437,10 +320,6 @@ private void InitializeComponent() this.label122 = new System.Windows.Forms.Label(); this.cboxPin0 = new System.Windows.Forms.ComboBox(); this.label123 = new System.Windows.Forms.Label(); - this.btnRelaySetDefaultConfig = new System.Windows.Forms.Button(); - this.btnRelayResetConfigToNone = new System.Windows.Forms.Button(); - this.pboxSendRelay = new System.Windows.Forms.PictureBox(); - this.btnSendRelayConfigPGN = new System.Windows.Forms.Button(); this.tabAMachine = new System.Windows.Forms.TabPage(); this.label151 = new System.Windows.Forms.Label(); this.label150 = new System.Windows.Forms.Label(); @@ -454,9 +333,7 @@ private void InitializeComponent() this.label25 = new System.Windows.Forms.Label(); this.label73 = new System.Windows.Forms.Label(); this.cboxIsHydOn = new System.Windows.Forms.CheckBox(); - this.pictureBox6 = new System.Windows.Forms.PictureBox(); this.nudLowerTime = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox7 = new System.Windows.Forms.PictureBox(); this.nudRaiseTime = new AgOpenGPS.NudlessNumericUpDown(); this.label72 = new System.Windows.Forms.Label(); this.label67 = new System.Windows.Forms.Label(); @@ -465,24 +342,16 @@ private void InitializeComponent() this.nudUser3 = new AgOpenGPS.NudlessNumericUpDown(); this.nudUser2 = new AgOpenGPS.NudlessNumericUpDown(); this.nudUser1 = new AgOpenGPS.NudlessNumericUpDown(); - this.pboxSendMachine = new System.Windows.Forms.PictureBox(); - this.cboxMachInvertRelays = new System.Windows.Forms.CheckBox(); - this.btnSendMachinePGN = new System.Windows.Forms.Button(); this.tabTram = new System.Windows.Forms.TabPage(); - this.chkBoxOverrideTramControlPos = new System.Windows.Forms.CheckBox(); this.label85 = new System.Windows.Forms.Label(); this.lblTramWidthUnits = new System.Windows.Forms.Label(); this.label75 = new System.Windows.Forms.Label(); this.nudTramWidth = new AgOpenGPS.NudlessNumericUpDown(); - this.pictureBox8 = new System.Windows.Forms.PictureBox(); this.tabBtns = new System.Windows.Forms.TabPage(); this.label91 = new System.Windows.Forms.Label(); - this.cboxSectionsSound = new System.Windows.Forms.CheckBox(); this.label62 = new System.Windows.Forms.Label(); this.label54 = new System.Windows.Forms.Label(); - this.cboxFeatureNudge = new System.Windows.Forms.CheckBox(); this.label92 = new System.Windows.Forms.Label(); - this.btnRightMenuOrder = new System.Windows.Forms.Button(); this.label61 = new System.Windows.Forms.Label(); this.label121 = new System.Windows.Forms.Label(); this.label119 = new System.Windows.Forms.Label(); @@ -501,26 +370,10 @@ private void InitializeComponent() this.label81 = new System.Windows.Forms.Label(); this.label80 = new System.Windows.Forms.Label(); this.label71 = new System.Windows.Forms.Label(); - this.cboxAutoStartAgIO = new System.Windows.Forms.CheckBox(); - this.cboxHydLiftSound = new System.Windows.Forms.CheckBox(); - this.cboxTurnSound = new System.Windows.Forms.CheckBox(); - this.cboxSteerSound = new System.Windows.Forms.CheckBox(); - this.cboxFeatureLateral = new System.Windows.Forms.CheckBox(); - this.cboxFeatureUTurn = new System.Windows.Forms.CheckBox(); - this.cboxFeatureOffsetFix = new System.Windows.Forms.CheckBox(); - this.cboxFeatureWebcam = new System.Windows.Forms.CheckBox(); - this.cboxFeatureHideContour = new System.Windows.Forms.CheckBox(); - this.cboxFeatureABSmooth = new System.Windows.Forms.CheckBox(); - this.cboxFeatureRecPath = new System.Windows.Forms.CheckBox(); - this.cboxFeatureBoundary = new System.Windows.Forms.CheckBox(); - this.cboxFeatureHeadland = new System.Windows.Forms.CheckBox(); - this.cboxFeatureTram = new System.Windows.Forms.CheckBox(); this.label93 = new System.Windows.Forms.Label(); this.tabDisplay = new System.Windows.Forms.TabPage(); this.label79 = new System.Windows.Forms.Label(); this.unitsGroupBox = new System.Windows.Forms.GroupBox(); - this.rbtnDisplayImperial = new System.Windows.Forms.RadioButton(); - this.rbtnDisplayMetric = new System.Windows.Forms.RadioButton(); this.label15 = new System.Windows.Forms.Label(); this.label42 = new System.Windows.Forms.Label(); this.label101 = new System.Windows.Forms.Label(); @@ -532,18 +385,6 @@ private void InitializeComponent() this.chkSpeedo = new System.Windows.Forms.Label(); this.chkExtraGuides = new System.Windows.Forms.Label(); this.chkGrid = new System.Windows.Forms.Label(); - this.chkDisplayLogElevation = new System.Windows.Forms.CheckBox(); - this.chkSvennArrow = new System.Windows.Forms.CheckBox(); - this.chkDisplayBrightness = new System.Windows.Forms.CheckBox(); - this.chkDisplayFloor = new System.Windows.Forms.CheckBox(); - this.chkDisplayLightbar = new System.Windows.Forms.CheckBox(); - this.chkDisplayKeyboard = new System.Windows.Forms.CheckBox(); - this.chkDisplayPolygons = new System.Windows.Forms.CheckBox(); - this.chkDisplayStartFullScreen = new System.Windows.Forms.CheckBox(); - this.chkDisplayLogNMEA = new System.Windows.Forms.CheckBox(); - this.chkDisplayGrid = new System.Windows.Forms.CheckBox(); - this.chkDisplaySpeedo = new System.Windows.Forms.CheckBox(); - this.chkDisplayExtraGuides = new System.Windows.Forms.CheckBox(); this.lblCurrentVehicle = new System.Windows.Forms.Label(); this.lblInchesCm = new System.Windows.Forms.Label(); this.lblSecTotalWidthMeters = new System.Windows.Forms.Label(); @@ -552,148 +393,307 @@ private void InitializeComponent() this.lblSecTotalWidthInches = new System.Windows.Forms.Label(); this.panelBottom = new System.Windows.Forms.Panel(); this.lblFeetMeters = new System.Windows.Forms.Label(); - this.btnOK = new System.Windows.Forms.Button(); this.label22 = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); - this.panelLeftSideMenu.SuspendLayout(); - this.panelArduinoSubMenu.SuspendLayout(); - this.panelDataSourcesSubMenu.SuspendLayout(); - this.panelToolSubMenu.SuspendLayout(); - this.panelVehicleSubMenu.SuspendLayout(); - this.tab1.SuspendLayout(); - this.tabSummary.SuspendLayout(); - this.tabVConfig.SuspendLayout(); - this.groupBox1.SuspendLayout(); - this.panel4WdBrands.SuspendLayout(); - this.panelHarvesterBrands.SuspendLayout(); - this.panelTractorBrands.SuspendLayout(); - this.panelOpacity.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pboxAlpha)).BeginInit(); - this.tabVAntenna.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudAntennaHeight)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudAntennaPivot)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudAntennaOffset)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pboxAntenna)).BeginInit(); - this.tabVDimensions.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudTractorHitchLength)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudVehicleTrack)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudWheelbase)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudMinTurnRadius)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.tabVGuidance.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudMinSteerSpeed)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudMaxSteerSpeed)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudMaxAngularVelocity)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudGuidanceSpeedLimit)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudGuidanceLookAhead)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSnapDistance)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudLineWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); - this.tabTConfig.SuspendLayout(); - this.gboxAttachment.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pboxConfigHarvester)).BeginInit(); - this.tabTHitch.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudTrailingHitchLength)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudDrawbarLength)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudTankHitch)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.picboxToolHitch)).BeginInit(); - this.tabToolOffset.SuspendLayout(); - this.groupBox3.SuspendLayout(); - this.groupBox2.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudOverlap)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudOffset)).BeginInit(); - this.tabToolPivot.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudTrailingToolToPivotLength)).BeginInit(); - this.tabTSections.SuspendLayout(); - this.panelSymmetricSections.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone8To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone7To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone6To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone4To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone1To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone5To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone3To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudZone2To)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudCutoffSpeed)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudDefaultSectionWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudMinCoverage)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection16)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection15)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection14)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection13)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection12)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection11)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection10)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection09)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection08)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection07)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection06)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection05)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection04)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection03)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection02)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudSection01)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfSections)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); - this.tabTSwitches.SuspendLayout(); - this.grpControls.SuspendLayout(); - this.grpSwitch.SuspendLayout(); - this.tabTSettings.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudLookAheadOff)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudTurnOffDelay)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudLookAhead)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + this.btnVehicleLoad = new System.Windows.Forms.Button(); + this.btnVehicleDelete = new System.Windows.Forms.Button(); + this.btnVehicleSave = new System.Windows.Forms.Button(); + this.rbtnHarvester = new System.Windows.Forms.RadioButton(); + this.rbtn4WD = new System.Windows.Forms.RadioButton(); + this.rbtnTractor = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDHolder = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDAgOpenGPS = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDChallenger = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDCase = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDNH = new System.Windows.Forms.RadioButton(); + this.rbtnBrand4WDJDeere = new System.Windows.Forms.RadioButton(); + this.rbtnBrandHAgOpenGPS = new System.Windows.Forms.RadioButton(); + this.rbtnBrandHCase = new System.Windows.Forms.RadioButton(); + this.rbtnBrandHClaas = new System.Windows.Forms.RadioButton(); + this.rbtnBrandHJDeere = new System.Windows.Forms.RadioButton(); + this.rbtnBrandHNH = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTAgOpenGPS = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTCase = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTClaas = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTDeutz = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTFendt = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTJDeere = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTKubota = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTMassey = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTNH = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTSame = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTSteyr = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTValtra = new System.Windows.Forms.RadioButton(); + this.rbtnBrandTUrsus = new System.Windows.Forms.RadioButton(); + this.btnOpacityDn = new System.Windows.Forms.Button(); + this.panelOpacity = new System.Windows.Forms.Panel(); + this.pboxAlpha = new System.Windows.Forms.PictureBox(); + this.btnOpacityUp = new System.Windows.Forms.Button(); + this.cboxIsImage = new System.Windows.Forms.CheckBox(); + this.pboxAntenna = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.pictureBox17 = new System.Windows.Forms.PictureBox(); + this.pictureBox16 = new System.Windows.Forms.PictureBox(); + this.cboxSteerInReverse = new System.Windows.Forms.CheckBox(); + this.pictureBox15 = new System.Windows.Forms.PictureBox(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); + this.pictureBox12 = new System.Windows.Forms.PictureBox(); + this.cboxAutoSteerAuto = new System.Windows.Forms.CheckBox(); + this.pictureBox5 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pboxConfigHarvester = new System.Windows.Forms.PictureBox(); + this.rbtnTBT = new System.Windows.Forms.RadioButton(); + this.rbtnFixedRear = new System.Windows.Forms.RadioButton(); + this.rbtnFront = new System.Windows.Forms.RadioButton(); + this.rbtnTrailing = new System.Windows.Forms.RadioButton(); + this.picboxToolHitch = new System.Windows.Forms.PictureBox(); + this.btnZeroOverlap = new System.Windows.Forms.Button(); + this.btnZeroToolOffset = new System.Windows.Forms.Button(); + this.rbtnToolOverlap = new System.Windows.Forms.RadioButton(); + this.rbtnToolGap = new System.Windows.Forms.RadioButton(); + this.rbtnLeftNegative = new System.Windows.Forms.RadioButton(); + this.rbtnToolRightPositive = new System.Windows.Forms.RadioButton(); + this.btnPivotOffsetZero = new System.Windows.Forms.Button(); + this.rbtnPivotBehindPos = new System.Windows.Forms.RadioButton(); + this.rbtnPivotAheadNeg = new System.Windows.Forms.RadioButton(); + this.cboxSectionBoundaryControl = new System.Windows.Forms.CheckBox(); + this.pictureBox11 = new System.Windows.Forms.PictureBox(); + this.cboxIsUnique = new System.Windows.Forms.CheckBox(); + this.chkSetAutoSectionsSteer = new System.Windows.Forms.CheckBox(); + this.chkSelectSteerSwitch = new System.Windows.Forms.CheckBox(); + this.chkSetManualSectionsSteer = new System.Windows.Forms.CheckBox(); + this.chkSelectWorkSwitch = new System.Windows.Forms.CheckBox(); + this.chkSetAutoSections = new System.Windows.Forms.CheckBox(); + this.chkSetManualSections = new System.Windows.Forms.CheckBox(); + this.chkWorkSwActiveLow = new System.Windows.Forms.CheckBox(); + this.pictureBox18 = new System.Windows.Forms.PictureBox(); + this.pictureBox4 = new System.Windows.Forms.PictureBox(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.pictureBox13 = new System.Windows.Forms.PictureBox(); + this.rbtnHeadingHDT = new System.Windows.Forms.RadioButton(); + this.rbtnHeadingFix = new System.Windows.Forms.RadioButton(); + this.cboxIsRTK_KillAutoSteer = new System.Windows.Forms.CheckBox(); + this.cboxIsRTK = new System.Windows.Forms.CheckBox(); + this.btnRollOffsetUp = new ProXoft.WinForms.RepeatButton(); + this.btnRollOffsetDown = new ProXoft.WinForms.RepeatButton(); + this.pictureBox9 = new System.Windows.Forms.PictureBox(); + this.btnResetIMU = new System.Windows.Forms.Button(); + this.btnZeroRoll = new System.Windows.Forms.Button(); + this.btnRemoveZeroOffset = new System.Windows.Forms.Button(); + this.cboxDataInvertRoll = new System.Windows.Forms.CheckBox(); + this.label64 = new System.Windows.Forms.Label(); + this.btnTurnSmoothingUp = new ProXoft.WinForms.RepeatButton(); + this.btnTurnSmoothingDown = new ProXoft.WinForms.RepeatButton(); + this.label59 = new System.Windows.Forms.Label(); + this.label58 = new System.Windows.Forms.Label(); + this.lblWhenTrig = new System.Windows.Forms.Label(); + this.btnDistanceUp = new ProXoft.WinForms.RepeatButton(); + this.btnDistanceDn = new ProXoft.WinForms.RepeatButton(); + this.btnRelaySetDefaultConfig = new System.Windows.Forms.Button(); + this.btnRelayResetConfigToNone = new System.Windows.Forms.Button(); + this.pboxSendRelay = new System.Windows.Forms.PictureBox(); + this.btnSendRelayConfigPGN = new System.Windows.Forms.Button(); + this.pictureBox6 = new System.Windows.Forms.PictureBox(); + this.pictureBox7 = new System.Windows.Forms.PictureBox(); + this.pboxSendMachine = new System.Windows.Forms.PictureBox(); + this.cboxMachInvertRelays = new System.Windows.Forms.CheckBox(); + this.btnSendMachinePGN = new System.Windows.Forms.Button(); + this.chkBoxOverrideTramControlPos = new System.Windows.Forms.CheckBox(); + this.pictureBox8 = new System.Windows.Forms.PictureBox(); + this.cboxSectionsSound = new System.Windows.Forms.CheckBox(); + this.cboxFeatureNudge = new System.Windows.Forms.CheckBox(); + this.btnRightMenuOrder = new System.Windows.Forms.Button(); + this.cboxAutoStartAgIO = new System.Windows.Forms.CheckBox(); + this.cboxHydLiftSound = new System.Windows.Forms.CheckBox(); + this.cboxTurnSound = new System.Windows.Forms.CheckBox(); + this.cboxSteerSound = new System.Windows.Forms.CheckBox(); + this.cboxFeatureLateral = new System.Windows.Forms.CheckBox(); + this.cboxFeatureUTurn = new System.Windows.Forms.CheckBox(); + this.cboxFeatureOffsetFix = new System.Windows.Forms.CheckBox(); + this.cboxFeatureWebcam = new System.Windows.Forms.CheckBox(); + this.cboxFeatureHideContour = new System.Windows.Forms.CheckBox(); + this.cboxFeatureABSmooth = new System.Windows.Forms.CheckBox(); + this.cboxFeatureRecPath = new System.Windows.Forms.CheckBox(); + this.cboxFeatureBoundary = new System.Windows.Forms.CheckBox(); + this.cboxFeatureHeadland = new System.Windows.Forms.CheckBox(); + this.cboxFeatureTram = new System.Windows.Forms.CheckBox(); + this.rbtnDisplayImperial = new System.Windows.Forms.RadioButton(); + this.rbtnDisplayMetric = new System.Windows.Forms.RadioButton(); + this.chkDisplayLogElevation = new System.Windows.Forms.CheckBox(); + this.chkSvennArrow = new System.Windows.Forms.CheckBox(); + this.chkDisplayBrightness = new System.Windows.Forms.CheckBox(); + this.chkDisplayFloor = new System.Windows.Forms.CheckBox(); + this.chkDisplayLightbar = new System.Windows.Forms.CheckBox(); + this.chkDisplayKeyboard = new System.Windows.Forms.CheckBox(); + this.chkDisplayPolygons = new System.Windows.Forms.CheckBox(); + this.chkDisplayStartFullScreen = new System.Windows.Forms.CheckBox(); + this.chkDisplayLogNMEA = new System.Windows.Forms.CheckBox(); + this.chkDisplayGrid = new System.Windows.Forms.CheckBox(); + this.chkDisplaySpeedo = new System.Windows.Forms.CheckBox(); + this.chkDisplayExtraGuides = new System.Windows.Forms.CheckBox(); + this.btnOK = new System.Windows.Forms.Button(); + this.btnFeatureHides = new System.Windows.Forms.Button(); + this.btnDisplay = new System.Windows.Forms.Button(); + this.btnTram = new System.Windows.Forms.Button(); + this.btnMachineRelay = new System.Windows.Forms.Button(); + this.btnMachineModule = new System.Windows.Forms.Button(); + this.btnArduino = new System.Windows.Forms.Button(); + this.btnUTurn = new System.Windows.Forms.Button(); + this.btnSubRoll = new System.Windows.Forms.Button(); + this.btnSubHeading = new System.Windows.Forms.Button(); + this.btnDataSources = new System.Windows.Forms.Button(); + this.btnSubSwitches = new System.Windows.Forms.Button(); + this.btnSubToolSettings = new System.Windows.Forms.Button(); + this.btnSubSections = new System.Windows.Forms.Button(); + this.btnSubToolOffset = new System.Windows.Forms.Button(); + this.btnSubPivot = new System.Windows.Forms.Button(); + this.btnSubHitch = new System.Windows.Forms.Button(); + this.btnSubToolType = new System.Windows.Forms.Button(); + this.btnTool = new System.Windows.Forms.Button(); + this.btnSubGuidance = new System.Windows.Forms.Button(); + this.btnSubAntenna = new System.Windows.Forms.Button(); + this.btnSubDimensions = new System.Windows.Forms.Button(); + this.btnSubVehicleType = new System.Windows.Forms.Button(); + this.btnVehicle = new System.Windows.Forms.Button(); + this.panelLeftSideMenu.SuspendLayout(); + this.panelArduinoSubMenu.SuspendLayout(); + this.panelDataSourcesSubMenu.SuspendLayout(); + this.panelToolSubMenu.SuspendLayout(); + this.panelVehicleSubMenu.SuspendLayout(); + this.tab1.SuspendLayout(); + this.tabSummary.SuspendLayout(); + this.tabVConfig.SuspendLayout(); + this.groupBox1.SuspendLayout(); + this.panel4WdBrands.SuspendLayout(); + this.panelHarvesterBrands.SuspendLayout(); + this.panelTractorBrands.SuspendLayout(); + this.tabVAntenna.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudAntennaHeight)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudAntennaPivot)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudAntennaOffset)).BeginInit(); + this.tabVDimensions.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudTractorHitchLength)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudVehicleTrack)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudWheelbase)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudMinTurnRadius)).BeginInit(); + this.tabVGuidance.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudMinSteerSpeed)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudMaxSteerSpeed)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudMaxAngularVelocity)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudGuidanceSpeedLimit)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudGuidanceLookAhead)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSnapDistance)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudLineWidth)).BeginInit(); + this.tabTConfig.SuspendLayout(); + this.gboxAttachment.SuspendLayout(); + this.tabTHitch.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudTrailingHitchLength)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudDrawbarLength)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudTankHitch)).BeginInit(); + this.tabToolOffset.SuspendLayout(); + this.groupBox3.SuspendLayout(); + this.groupBox2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudOverlap)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudOffset)).BeginInit(); + this.tabToolPivot.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudTrailingToolToPivotLength)).BeginInit(); + this.tabTSections.SuspendLayout(); + this.panelSymmetricSections.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone8To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone7To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone6To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone4To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone1To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone5To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone3To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudZone2To)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudCutoffSpeed)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudDefaultSectionWidth)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudMinCoverage)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection16)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection15)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection14)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection13)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection09)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection08)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection07)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection06)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection05)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection04)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection03)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection02)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudSection01)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfSections)).BeginInit(); + this.tabTSwitches.SuspendLayout(); + this.grpControls.SuspendLayout(); + this.grpSwitch.SuspendLayout(); + this.tabTSettings.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudLookAheadOff)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudTurnOffDelay)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudLookAhead)).BeginInit(); this.tabDHeading.SuspendLayout(); this.gboxDual.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudDualReverseDistance)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDualHeadingOffset)).BeginInit(); this.gboxSingle.SuspendLayout(); this.headingGroupBox.SuspendLayout(); this.tabDRoll.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); this.tabUTurn.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudYouTurnRadius)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTurnDistanceFromBoundary)).BeginInit(); this.tabRelay.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pboxSendRelay)).BeginInit(); this.tabAMachine.SuspendLayout(); this.groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudHydLiftLookAhead)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLowerTime)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudRaiseTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pboxSendMachine)).BeginInit(); this.tabTram.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudTramWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); this.tabBtns.SuspendLayout(); this.tabDisplay.SuspendLayout(); this.unitsGroupBox.SuspendLayout(); this.panelBottom.SuspendLayout(); - this.SuspendLayout(); - // - // panelLeftSideMenu - // - this.panelLeftSideMenu.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.panelLeftSideMenu.Controls.Add(this.btnFeatureHides); - this.panelLeftSideMenu.Controls.Add(this.btnDisplay); - this.panelLeftSideMenu.Controls.Add(this.btnTram); - this.panelLeftSideMenu.Controls.Add(this.panelArduinoSubMenu); - this.panelLeftSideMenu.Controls.Add(this.btnArduino); + this.panelOpacity.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pboxAlpha)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxAntenna)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxConfigHarvester)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.picboxToolHitch)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxSendRelay)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxSendMachine)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); + this.SuspendLayout(); + // + // panelLeftSideMenu + // + this.panelLeftSideMenu.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.panelLeftSideMenu.Controls.Add(this.btnFeatureHides); + this.panelLeftSideMenu.Controls.Add(this.btnDisplay); + this.panelLeftSideMenu.Controls.Add(this.btnTram); + this.panelLeftSideMenu.Controls.Add(this.panelArduinoSubMenu); + this.panelLeftSideMenu.Controls.Add(this.btnArduino); this.panelLeftSideMenu.Controls.Add(this.btnUTurn); this.panelLeftSideMenu.Controls.Add(this.panelDataSourcesSubMenu); this.panelLeftSideMenu.Controls.Add(this.btnDataSources); @@ -707,69 +707,6 @@ private void InitializeComponent() this.panelLeftSideMenu.Size = new System.Drawing.Size(120, 707); this.panelLeftSideMenu.TabIndex = 110; // - // btnFeatureHides - // - this.btnFeatureHides.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnFeatureHides.Dock = System.Windows.Forms.DockStyle.Top; - this.btnFeatureHides.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnFeatureHides.FlatAppearance.BorderSize = 0; - this.btnFeatureHides.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnFeatureHides.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnFeatureHides.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnFeatureHides.Image = global::AgOpenGPS.Properties.Resources.Con_FeatureMenu; - this.btnFeatureHides.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnFeatureHides.Location = new System.Drawing.Point(0, 1669); - this.btnFeatureHides.Name = "btnFeatureHides"; - this.btnFeatureHides.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnFeatureHides.Size = new System.Drawing.Size(120, 80); - this.btnFeatureHides.TabIndex = 4; - this.btnFeatureHides.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnFeatureHides.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnFeatureHides.UseVisualStyleBackColor = false; - this.btnFeatureHides.Click += new System.EventHandler(this.btnFeatureHides_Click); - // - // btnDisplay - // - this.btnDisplay.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnDisplay.Dock = System.Windows.Forms.DockStyle.Top; - this.btnDisplay.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnDisplay.FlatAppearance.BorderSize = 0; - this.btnDisplay.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnDisplay.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnDisplay.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnDisplay.Image = global::AgOpenGPS.Properties.Resources.Con_Display; - this.btnDisplay.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnDisplay.Location = new System.Drawing.Point(0, 1589); - this.btnDisplay.Name = "btnDisplay"; - this.btnDisplay.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnDisplay.Size = new System.Drawing.Size(120, 80); - this.btnDisplay.TabIndex = 2; - this.btnDisplay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnDisplay.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnDisplay.UseVisualStyleBackColor = false; - this.btnDisplay.Click += new System.EventHandler(this.btnDisplay_Click); - // - // btnTram - // - this.btnTram.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnTram.Dock = System.Windows.Forms.DockStyle.Top; - this.btnTram.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnTram.FlatAppearance.BorderSize = 0; - this.btnTram.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnTram.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnTram.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnTram.Image = global::AgOpenGPS.Properties.Resources.Con_TramMenu; - this.btnTram.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnTram.Location = new System.Drawing.Point(0, 1509); - this.btnTram.Name = "btnTram"; - this.btnTram.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnTram.Size = new System.Drawing.Size(120, 80); - this.btnTram.TabIndex = 3; - this.btnTram.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnTram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnTram.UseVisualStyleBackColor = false; - this.btnTram.Click += new System.EventHandler(this.btnTram_Click); - // // panelArduinoSubMenu // this.panelArduinoSubMenu.BackColor = System.Drawing.Color.RosyBrown; @@ -781,88 +718,6 @@ private void InitializeComponent() this.panelArduinoSubMenu.Size = new System.Drawing.Size(120, 160); this.panelArduinoSubMenu.TabIndex = 116; // - // btnMachineRelay - // - this.btnMachineRelay.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnMachineRelay.Dock = System.Windows.Forms.DockStyle.Top; - this.btnMachineRelay.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnMachineRelay.FlatAppearance.BorderSize = 0; - this.btnMachineRelay.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnMachineRelay.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnMachineRelay.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnMachineRelay.Image = global::AgOpenGPS.Properties.Resources.ConS_Pins; - this.btnMachineRelay.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnMachineRelay.Location = new System.Drawing.Point(0, 80); - this.btnMachineRelay.Name = "btnMachineRelay"; - this.btnMachineRelay.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnMachineRelay.Size = new System.Drawing.Size(120, 80); - this.btnMachineRelay.TabIndex = 3; - this.btnMachineRelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnMachineRelay.UseVisualStyleBackColor = false; - this.btnMachineRelay.Click += new System.EventHandler(this.btnMachineRelay_Click); - // - // btnMachineModule - // - this.btnMachineModule.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnMachineModule.Dock = System.Windows.Forms.DockStyle.Top; - this.btnMachineModule.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnMachineModule.FlatAppearance.BorderSize = 0; - this.btnMachineModule.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnMachineModule.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnMachineModule.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnMachineModule.Image = global::AgOpenGPS.Properties.Resources.ConS_ModulesMachine; - this.btnMachineModule.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnMachineModule.Location = new System.Drawing.Point(0, 0); - this.btnMachineModule.Name = "btnMachineModule"; - this.btnMachineModule.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnMachineModule.Size = new System.Drawing.Size(120, 80); - this.btnMachineModule.TabIndex = 1; - this.btnMachineModule.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnMachineModule.UseVisualStyleBackColor = false; - this.btnMachineModule.Click += new System.EventHandler(this.btnMachineModule_Click); - // - // btnArduino - // - this.btnArduino.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnArduino.Dock = System.Windows.Forms.DockStyle.Top; - this.btnArduino.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnArduino.FlatAppearance.BorderSize = 0; - this.btnArduino.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnArduino.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnArduino.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnArduino.Image = global::AgOpenGPS.Properties.Resources.Con_ModulesMenu; - this.btnArduino.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnArduino.Location = new System.Drawing.Point(0, 1269); - this.btnArduino.Name = "btnArduino"; - this.btnArduino.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnArduino.Size = new System.Drawing.Size(120, 80); - this.btnArduino.TabIndex = 115; - this.btnArduino.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnArduino.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnArduino.UseVisualStyleBackColor = false; - this.btnArduino.Click += new System.EventHandler(this.btnArduino_Click); - // - // btnUTurn - // - this.btnUTurn.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnUTurn.Dock = System.Windows.Forms.DockStyle.Top; - this.btnUTurn.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnUTurn.FlatAppearance.BorderSize = 0; - this.btnUTurn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnUTurn.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnUTurn.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnUTurn.Image = global::AgOpenGPS.Properties.Resources.Con_UTurnMenu; - this.btnUTurn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnUTurn.Location = new System.Drawing.Point(0, 1194); - this.btnUTurn.Name = "btnUTurn"; - this.btnUTurn.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnUTurn.Size = new System.Drawing.Size(120, 75); - this.btnUTurn.TabIndex = 116; - this.btnUTurn.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnUTurn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnUTurn.UseVisualStyleBackColor = false; - this.btnUTurn.Click += new System.EventHandler(this.btnUTurn_Click); - // // panelDataSourcesSubMenu // this.panelDataSourcesSubMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(32)))), ((int)(((byte)(39))))); @@ -874,67 +729,6 @@ private void InitializeComponent() this.panelDataSourcesSubMenu.Size = new System.Drawing.Size(120, 160); this.panelDataSourcesSubMenu.TabIndex = 7; // - // btnSubRoll - // - this.btnSubRoll.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubRoll.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubRoll.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubRoll.FlatAppearance.BorderSize = 0; - this.btnSubRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubRoll.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubRoll.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubRoll.Image = global::AgOpenGPS.Properties.Resources.ConS_SourcesRoll; - this.btnSubRoll.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubRoll.Location = new System.Drawing.Point(0, 80); - this.btnSubRoll.Name = "btnSubRoll"; - this.btnSubRoll.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubRoll.Size = new System.Drawing.Size(120, 80); - this.btnSubRoll.TabIndex = 0; - this.btnSubRoll.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubRoll.UseVisualStyleBackColor = false; - this.btnSubRoll.Click += new System.EventHandler(this.btnSubRoll_Click); - // - // btnSubHeading - // - this.btnSubHeading.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubHeading.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubHeading.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubHeading.FlatAppearance.BorderSize = 0; - this.btnSubHeading.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubHeading.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubHeading.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubHeading.Image = global::AgOpenGPS.Properties.Resources.ConS_SourcesHeading; - this.btnSubHeading.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubHeading.Location = new System.Drawing.Point(0, 0); - this.btnSubHeading.Name = "btnSubHeading"; - this.btnSubHeading.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnSubHeading.Size = new System.Drawing.Size(120, 80); - this.btnSubHeading.TabIndex = 1; - this.btnSubHeading.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubHeading.UseVisualStyleBackColor = false; - this.btnSubHeading.Click += new System.EventHandler(this.btnSubHeading_Click); - // - // btnDataSources - // - this.btnDataSources.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnDataSources.Dock = System.Windows.Forms.DockStyle.Top; - this.btnDataSources.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnDataSources.FlatAppearance.BorderSize = 0; - this.btnDataSources.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnDataSources.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnDataSources.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnDataSources.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesMenu; - this.btnDataSources.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnDataSources.Location = new System.Drawing.Point(0, 954); - this.btnDataSources.Name = "btnDataSources"; - this.btnDataSources.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); - this.btnDataSources.Size = new System.Drawing.Size(120, 80); - this.btnDataSources.TabIndex = 114; - this.btnDataSources.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnDataSources.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnDataSources.UseVisualStyleBackColor = false; - this.btnDataSources.Click += new System.EventHandler(this.btnDataSources_Click); - // // panelToolSubMenu // this.panelToolSubMenu.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; @@ -951,168 +745,7 @@ private void InitializeComponent() this.panelToolSubMenu.Size = new System.Drawing.Size(120, 506); this.panelToolSubMenu.TabIndex = 4; // - // btnSubSwitches - // - this.btnSubSwitches.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubSwitches.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubSwitches.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubSwitches.FlatAppearance.BorderSize = 0; - this.btnSubSwitches.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubSwitches.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubSwitches.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubSwitches.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSwitch; - this.btnSubSwitches.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubSwitches.Location = new System.Drawing.Point(0, 432); - this.btnSubSwitches.Name = "btnSubSwitches"; - this.btnSubSwitches.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubSwitches.Size = new System.Drawing.Size(120, 72); - this.btnSubSwitches.TabIndex = 1; - this.btnSubSwitches.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubSwitches.UseVisualStyleBackColor = false; - this.btnSubSwitches.Click += new System.EventHandler(this.btnSubSwitches_Click); - // - // btnSubToolSettings - // - this.btnSubToolSettings.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubToolSettings.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubToolSettings.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubToolSettings.FlatAppearance.BorderSize = 0; - this.btnSubToolSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubToolSettings.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubToolSettings.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubToolSettings.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSettings; - this.btnSubToolSettings.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubToolSettings.Location = new System.Drawing.Point(0, 360); - this.btnSubToolSettings.Name = "btnSubToolSettings"; - this.btnSubToolSettings.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnSubToolSettings.Size = new System.Drawing.Size(120, 72); - this.btnSubToolSettings.TabIndex = 4; - this.btnSubToolSettings.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubToolSettings.UseVisualStyleBackColor = false; - this.btnSubToolSettings.Click += new System.EventHandler(this.btnSubToolSettings_Click); - // - // btnSubSections - // - this.btnSubSections.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubSections.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubSections.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubSections.FlatAppearance.BorderSize = 0; - this.btnSubSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubSections.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubSections.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubSections.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSection; - this.btnSubSections.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubSections.Location = new System.Drawing.Point(0, 288); - this.btnSubSections.Name = "btnSubSections"; - this.btnSubSections.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubSections.Size = new System.Drawing.Size(120, 72); - this.btnSubSections.TabIndex = 0; - this.btnSubSections.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubSections.UseVisualStyleBackColor = false; - this.btnSubSections.Click += new System.EventHandler(this.btnSubSections_Click); - // - // btnSubToolOffset - // - this.btnSubToolOffset.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubToolOffset.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubToolOffset.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubToolOffset.FlatAppearance.BorderSize = 0; - this.btnSubToolOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubToolOffset.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubToolOffset.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubToolOffset.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementOffset; - this.btnSubToolOffset.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubToolOffset.Location = new System.Drawing.Point(0, 216); - this.btnSubToolOffset.Name = "btnSubToolOffset"; - this.btnSubToolOffset.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubToolOffset.Size = new System.Drawing.Size(120, 72); - this.btnSubToolOffset.TabIndex = 1; - this.btnSubToolOffset.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubToolOffset.UseVisualStyleBackColor = false; - this.btnSubToolOffset.Click += new System.EventHandler(this.btnSubToolOffset_Click); - // - // btnSubPivot - // - this.btnSubPivot.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubPivot.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubPivot.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubPivot.FlatAppearance.BorderSize = 0; - this.btnSubPivot.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubPivot.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubPivot.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubPivot.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementPivot; - this.btnSubPivot.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubPivot.Location = new System.Drawing.Point(0, 144); - this.btnSubPivot.Name = "btnSubPivot"; - this.btnSubPivot.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubPivot.Size = new System.Drawing.Size(120, 72); - this.btnSubPivot.TabIndex = 217; - this.btnSubPivot.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubPivot.UseVisualStyleBackColor = false; - this.btnSubPivot.Click += new System.EventHandler(this.btnSubPivot_Click); - // - // btnSubHitch - // - this.btnSubHitch.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubHitch.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubHitch.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubHitch.FlatAppearance.BorderSize = 0; - this.btnSubHitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubHitch.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubHitch.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubHitch.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementHitch; - this.btnSubHitch.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubHitch.Location = new System.Drawing.Point(0, 72); - this.btnSubHitch.Name = "btnSubHitch"; - this.btnSubHitch.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnSubHitch.Size = new System.Drawing.Size(120, 72); - this.btnSubHitch.TabIndex = 5; - this.btnSubHitch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubHitch.UseVisualStyleBackColor = false; - this.btnSubHitch.Click += new System.EventHandler(this.btnSubHitch_Click); - // - // btnSubToolType - // - this.btnSubToolType.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubToolType.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubToolType.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubToolType.FlatAppearance.BorderSize = 0; - this.btnSubToolType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubToolType.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubToolType.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubToolType.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementConfig; - this.btnSubToolType.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubToolType.Location = new System.Drawing.Point(0, 0); - this.btnSubToolType.Name = "btnSubToolType"; - this.btnSubToolType.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubToolType.Size = new System.Drawing.Size(120, 72); - this.btnSubToolType.TabIndex = 6; - this.btnSubToolType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubToolType.UseVisualStyleBackColor = false; - this.btnSubToolType.Click += new System.EventHandler(this.btnSubToolType_Click); - // - // btnTool - // - this.btnTool.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnTool.Dock = System.Windows.Forms.DockStyle.Top; - this.btnTool.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnTool.FlatAppearance.BorderSize = 0; - this.btnTool.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnTool.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnTool.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnTool.Image = global::AgOpenGPS.Properties.Resources.Con_ImplementMenu; - this.btnTool.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnTool.Location = new System.Drawing.Point(0, 368); - this.btnTool.Name = "btnTool"; - this.btnTool.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0); - this.btnTool.Size = new System.Drawing.Size(120, 80); - this.btnTool.TabIndex = 3; - this.btnTool.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnTool.UseVisualStyleBackColor = false; - this.btnTool.Click += new System.EventHandler(this.btnTool_Click); - // - // panelVehicleSubMenu + // panelVehicleSubMenu // this.panelVehicleSubMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(32)))), ((int)(((byte)(39))))); this.panelVehicleSubMenu.Controls.Add(this.button1); @@ -1142,107 +775,6 @@ private void InitializeComponent() this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.button1.UseVisualStyleBackColor = true; // - // btnSubGuidance - // - this.btnSubGuidance.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubGuidance.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubGuidance.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubGuidance.FlatAppearance.BorderSize = 0; - this.btnSubGuidance.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubGuidance.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubGuidance.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubGuidance.Image = global::AgOpenGPS.Properties.Resources.ConS_ModulesSteer; - this.btnSubGuidance.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubGuidance.Location = new System.Drawing.Point(0, 216); - this.btnSubGuidance.Name = "btnSubGuidance"; - this.btnSubGuidance.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnSubGuidance.Size = new System.Drawing.Size(120, 72); - this.btnSubGuidance.TabIndex = 3; - this.btnSubGuidance.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubGuidance.UseVisualStyleBackColor = false; - this.btnSubGuidance.Click += new System.EventHandler(this.btnSubGuidance_Click); - // - // btnSubAntenna - // - this.btnSubAntenna.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubAntenna.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubAntenna.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubAntenna.FlatAppearance.BorderSize = 0; - this.btnSubAntenna.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubAntenna.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubAntenna.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubAntenna.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementAntenna; - this.btnSubAntenna.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubAntenna.Location = new System.Drawing.Point(0, 144); - this.btnSubAntenna.Name = "btnSubAntenna"; - this.btnSubAntenna.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubAntenna.Size = new System.Drawing.Size(120, 72); - this.btnSubAntenna.TabIndex = 2; - this.btnSubAntenna.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubAntenna.UseVisualStyleBackColor = false; - this.btnSubAntenna.Click += new System.EventHandler(this.btnSubAntenna_Click); - // - // btnSubDimensions - // - this.btnSubDimensions.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubDimensions.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubDimensions.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubDimensions.FlatAppearance.BorderSize = 0; - this.btnSubDimensions.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubDimensions.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubDimensions.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubDimensions.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementHitch; - this.btnSubDimensions.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubDimensions.Location = new System.Drawing.Point(0, 72); - this.btnSubDimensions.Name = "btnSubDimensions"; - this.btnSubDimensions.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); - this.btnSubDimensions.Size = new System.Drawing.Size(120, 72); - this.btnSubDimensions.TabIndex = 1; - this.btnSubDimensions.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubDimensions.UseVisualStyleBackColor = false; - this.btnSubDimensions.Click += new System.EventHandler(this.btnSubDimensions_Click); - // - // btnSubVehicleType - // - this.btnSubVehicleType.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnSubVehicleType.Dock = System.Windows.Forms.DockStyle.Top; - this.btnSubVehicleType.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnSubVehicleType.FlatAppearance.BorderSize = 0; - this.btnSubVehicleType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSubVehicleType.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnSubVehicleType.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnSubVehicleType.Image = global::AgOpenGPS.Properties.Resources.ConS_VehicleConfig; - this.btnSubVehicleType.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; - this.btnSubVehicleType.Location = new System.Drawing.Point(0, 0); - this.btnSubVehicleType.Name = "btnSubVehicleType"; - this.btnSubVehicleType.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); - this.btnSubVehicleType.Size = new System.Drawing.Size(120, 72); - this.btnSubVehicleType.TabIndex = 0; - this.btnSubVehicleType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnSubVehicleType.UseVisualStyleBackColor = false; - this.btnSubVehicleType.Click += new System.EventHandler(this.btnSubVehicleType_Click); - // - // btnVehicle - // - this.btnVehicle.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.btnVehicle.Dock = System.Windows.Forms.DockStyle.Top; - this.btnVehicle.FlatAppearance.BorderColor = System.Drawing.Color.Gray; - this.btnVehicle.FlatAppearance.BorderSize = 0; - this.btnVehicle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnVehicle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnVehicle.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnVehicle.Image = global::AgOpenGPS.Properties.Resources.Con_VehicleMenu; - this.btnVehicle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnVehicle.Location = new System.Drawing.Point(0, 0); - this.btnVehicle.Name = "btnVehicle"; - this.btnVehicle.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0); - this.btnVehicle.Size = new System.Drawing.Size(120, 80); - this.btnVehicle.TabIndex = 113; - this.btnVehicle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnVehicle.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.btnVehicle.UseVisualStyleBackColor = false; - this.btnVehicle.Click += new System.EventHandler(this.btnVehicle_Click); - // // tab1 // this.tab1.Appearance = System.Windows.Forms.TabAppearance.Buttons; @@ -1582,40 +1114,7 @@ private void InitializeComponent() this.label13.Text = "Load"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // - // btnVehicleLoad - // - this.btnVehicleLoad.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnVehicleLoad.BackColor = System.Drawing.Color.Transparent; - this.btnVehicleLoad.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.btnVehicleLoad.FlatAppearance.BorderSize = 0; - this.btnVehicleLoad.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; - this.btnVehicleLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnVehicleLoad.Font = new System.Drawing.Font("Tahoma", 15.75F); - this.btnVehicleLoad.Image = global::AgOpenGPS.Properties.Resources.FileOpen; - this.btnVehicleLoad.Location = new System.Drawing.Point(764, 156); - this.btnVehicleLoad.Name = "btnVehicleLoad"; - this.btnVehicleLoad.Size = new System.Drawing.Size(81, 49); - this.btnVehicleLoad.TabIndex = 456; - this.btnVehicleLoad.UseVisualStyleBackColor = false; - this.btnVehicleLoad.Click += new System.EventHandler(this.btnVehicleLoad_Click); - // - // btnVehicleDelete - // - this.btnVehicleDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnVehicleDelete.BackColor = System.Drawing.Color.Transparent; - this.btnVehicleDelete.FlatAppearance.BorderSize = 0; - this.btnVehicleDelete.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; - this.btnVehicleDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnVehicleDelete.Font = new System.Drawing.Font("Tahoma", 15.75F); - this.btnVehicleDelete.Image = global::AgOpenGPS.Properties.Resources.Trash; - this.btnVehicleDelete.Location = new System.Drawing.Point(764, 259); - this.btnVehicleDelete.Name = "btnVehicleDelete"; - this.btnVehicleDelete.Size = new System.Drawing.Size(81, 49); - this.btnVehicleDelete.TabIndex = 455; - this.btnVehicleDelete.UseVisualStyleBackColor = false; - this.btnVehicleDelete.Click += new System.EventHandler(this.btnVehicleDelete_Click); - // - // lvVehicles + // lvVehicles // this.lvVehicles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) @@ -1657,22 +1156,6 @@ private void InitializeComponent() this.tboxVehicleNameSave.TextChanged += new System.EventHandler(this.tboxVehicleNameSave_TextChanged); this.tboxVehicleNameSave.Enter += new System.EventHandler(this.tboxVehicleNameSave_Enter); // - // btnVehicleSave - // - this.btnVehicleSave.BackColor = System.Drawing.Color.Transparent; - this.btnVehicleSave.Enabled = false; - this.btnVehicleSave.FlatAppearance.BorderSize = 0; - this.btnVehicleSave.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; - this.btnVehicleSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnVehicleSave.Font = new System.Drawing.Font("Tahoma", 15.75F); - this.btnVehicleSave.Image = global::AgOpenGPS.Properties.Resources.FileSaveAs; - this.btnVehicleSave.Location = new System.Drawing.Point(734, 22); - this.btnVehicleSave.Name = "btnVehicleSave"; - this.btnVehicleSave.Size = new System.Drawing.Size(52, 52); - this.btnVehicleSave.TabIndex = 457; - this.btnVehicleSave.UseVisualStyleBackColor = false; - this.btnVehicleSave.Click += new System.EventHandler(this.btnVehicleSave_Click); - // // label29 // this.label29.BackColor = System.Drawing.Color.Transparent; @@ -1764,56 +1247,6 @@ private void InitializeComponent() this.groupBox1.TabStop = false; this.groupBox1.Text = "Choose Vehicle Type"; // - // rbtnHarvester - // - this.rbtnHarvester.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnHarvester.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageHarvester; - this.rbtnHarvester.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.rbtnHarvester.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnHarvester.FlatAppearance.BorderSize = 0; - this.rbtnHarvester.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnHarvester.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnHarvester.Location = new System.Drawing.Point(16, 27); - this.rbtnHarvester.Name = "rbtnHarvester"; - this.rbtnHarvester.Size = new System.Drawing.Size(127, 83); - this.rbtnHarvester.TabIndex = 253; - this.rbtnHarvester.UseVisualStyleBackColor = true; - this.rbtnHarvester.Click += new System.EventHandler(this.rbtnVehicleType_Click); - // - // rbtn4WD - // - this.rbtn4WD.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtn4WD.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePage4WD; - this.rbtn4WD.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.rbtn4WD.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtn4WD.FlatAppearance.BorderSize = 0; - this.rbtn4WD.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtn4WD.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtn4WD.Location = new System.Drawing.Point(366, 27); - this.rbtn4WD.Name = "rbtn4WD"; - this.rbtn4WD.Size = new System.Drawing.Size(127, 83); - this.rbtn4WD.TabIndex = 252; - this.rbtn4WD.UseVisualStyleBackColor = true; - this.rbtn4WD.Click += new System.EventHandler(this.rbtnVehicleType_Click); - // - // rbtnTractor - // - this.rbtnTractor.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnTractor.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageTractor; - this.rbtnTractor.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.rbtnTractor.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnTractor.Checked = true; - this.rbtnTractor.FlatAppearance.BorderSize = 0; - this.rbtnTractor.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnTractor.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnTractor.Location = new System.Drawing.Point(192, 27); - this.rbtnTractor.Name = "rbtnTractor"; - this.rbtnTractor.Size = new System.Drawing.Size(127, 83); - this.rbtnTractor.TabIndex = 112; - this.rbtnTractor.TabStop = true; - this.rbtnTractor.UseVisualStyleBackColor = true; - this.rbtnTractor.Click += new System.EventHandler(this.rbtnVehicleType_Click); - // // panel4WdBrands // this.panel4WdBrands.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -1828,112 +1261,6 @@ private void InitializeComponent() this.panel4WdBrands.Size = new System.Drawing.Size(80, 467); this.panel4WdBrands.TabIndex = 144; // - // rbtnBrand4WDHolder - // - this.rbtnBrand4WDHolder.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDHolder.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDHolder.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDHolder.Checked = true; - this.rbtnBrand4WDHolder.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDHolder.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDHolder.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDHolder.Image = global::AgOpenGPS.Properties.Resources.Holder; - this.rbtnBrand4WDHolder.Location = new System.Drawing.Point(8, 395); - this.rbtnBrand4WDHolder.Name = "rbtnBrand4WDHolder"; - this.rbtnBrand4WDHolder.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDHolder.TabIndex = 136; - this.rbtnBrand4WDHolder.TabStop = true; - this.rbtnBrand4WDHolder.UseVisualStyleBackColor = true; - this.rbtnBrand4WDHolder.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDHolder_CheckedChanged); - // - // rbtnBrand4WDAgOpenGPS - // - this.rbtnBrand4WDAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; - this.rbtnBrand4WDAgOpenGPS.Location = new System.Drawing.Point(8, 6); - this.rbtnBrand4WDAgOpenGPS.Name = "rbtnBrand4WDAgOpenGPS"; - this.rbtnBrand4WDAgOpenGPS.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDAgOpenGPS.TabIndex = 131; - this.rbtnBrand4WDAgOpenGPS.UseVisualStyleBackColor = true; - this.rbtnBrand4WDAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDAgOpenGPS_CheckedChanged); - // - // rbtnBrand4WDChallenger - // - this.rbtnBrand4WDChallenger.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDChallenger.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDChallenger.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDChallenger.Checked = true; - this.rbtnBrand4WDChallenger.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDChallenger.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDChallenger.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDChallenger.Image = global::AgOpenGPS.Properties.Resources.Challenger; - this.rbtnBrand4WDChallenger.Location = new System.Drawing.Point(8, 84); - this.rbtnBrand4WDChallenger.Name = "rbtnBrand4WDChallenger"; - this.rbtnBrand4WDChallenger.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDChallenger.TabIndex = 132; - this.rbtnBrand4WDChallenger.TabStop = true; - this.rbtnBrand4WDChallenger.UseVisualStyleBackColor = true; - this.rbtnBrand4WDChallenger.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDChallenger_CheckedChanged); - // - // rbtnBrand4WDCase - // - this.rbtnBrand4WDCase.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDCase.Checked = true; - this.rbtnBrand4WDCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDCase.Image = global::AgOpenGPS.Properties.Resources.Case; - this.rbtnBrand4WDCase.Location = new System.Drawing.Point(8, 162); - this.rbtnBrand4WDCase.Name = "rbtnBrand4WDCase"; - this.rbtnBrand4WDCase.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDCase.TabIndex = 133; - this.rbtnBrand4WDCase.TabStop = true; - this.rbtnBrand4WDCase.UseVisualStyleBackColor = true; - this.rbtnBrand4WDCase.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDCase_CheckedChanged); - // - // rbtnBrand4WDNH - // - this.rbtnBrand4WDNH.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDNH.Checked = true; - this.rbtnBrand4WDNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; - this.rbtnBrand4WDNH.Location = new System.Drawing.Point(8, 318); - this.rbtnBrand4WDNH.Name = "rbtnBrand4WDNH"; - this.rbtnBrand4WDNH.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDNH.TabIndex = 135; - this.rbtnBrand4WDNH.TabStop = true; - this.rbtnBrand4WDNH.UseVisualStyleBackColor = true; - this.rbtnBrand4WDNH.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDNH_CheckedChanged); - // - // rbtnBrand4WDJDeere - // - this.rbtnBrand4WDJDeere.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrand4WDJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrand4WDJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrand4WDJDeere.Checked = true; - this.rbtnBrand4WDJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrand4WDJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrand4WDJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrand4WDJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; - this.rbtnBrand4WDJDeere.Location = new System.Drawing.Point(8, 240); - this.rbtnBrand4WDJDeere.Name = "rbtnBrand4WDJDeere"; - this.rbtnBrand4WDJDeere.Size = new System.Drawing.Size(64, 64); - this.rbtnBrand4WDJDeere.TabIndex = 134; - this.rbtnBrand4WDJDeere.TabStop = true; - this.rbtnBrand4WDJDeere.UseVisualStyleBackColor = true; - this.rbtnBrand4WDJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDJDeere_CheckedChanged); - // // label70 // this.label70.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -1959,790 +1286,400 @@ private void InitializeComponent() this.panelHarvesterBrands.Size = new System.Drawing.Size(80, 467); this.panelHarvesterBrands.TabIndex = 143; // - // rbtnBrandHAgOpenGPS - // - this.rbtnBrandHAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandHAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandHAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandHAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandHAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandHAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandHAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; - this.rbtnBrandHAgOpenGPS.Location = new System.Drawing.Point(8, 6); - this.rbtnBrandHAgOpenGPS.Name = "rbtnBrandHAgOpenGPS"; - this.rbtnBrandHAgOpenGPS.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandHAgOpenGPS.TabIndex = 127; - this.rbtnBrandHAgOpenGPS.UseVisualStyleBackColor = true; - this.rbtnBrandHAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrandHAgOpenGPS_CheckedChanged); - // - // rbtnBrandHCase + // panelTractorBrands // - this.rbtnBrandHCase.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandHCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandHCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandHCase.Checked = true; - this.rbtnBrandHCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandHCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandHCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandHCase.Image = global::AgOpenGPS.Properties.Resources.Case; - this.rbtnBrandHCase.Location = new System.Drawing.Point(8, 102); - this.rbtnBrandHCase.Name = "rbtnBrandHCase"; - this.rbtnBrandHCase.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandHCase.TabIndex = 114; - this.rbtnBrandHCase.TabStop = true; - this.rbtnBrandHCase.UseVisualStyleBackColor = true; - this.rbtnBrandHCase.CheckedChanged += new System.EventHandler(this.rbtnBrandHCase_CheckedChanged); + this.panelTractorBrands.AccessibleName = ""; + this.panelTractorBrands.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTAgOpenGPS); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTCase); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTClaas); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTDeutz); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTFendt); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTJDeere); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTKubota); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTMassey); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTNH); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTSame); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTSteyr); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTValtra); + this.panelTractorBrands.Controls.Add(this.rbtnBrandTUrsus); + this.panelTractorBrands.Location = new System.Drawing.Point(131, 115); + this.panelTractorBrands.Name = "panelTractorBrands"; + this.panelTractorBrands.Size = new System.Drawing.Size(289, 467); + this.panelTractorBrands.TabIndex = 142; // - // rbtnBrandHClaas + // label105 // - this.rbtnBrandHClaas.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandHClaas.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandHClaas.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandHClaas.Checked = true; - this.rbtnBrandHClaas.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandHClaas.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandHClaas.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandHClaas.Image = global::AgOpenGPS.Properties.Resources.Claas; - this.rbtnBrandHClaas.Location = new System.Drawing.Point(8, 198); - this.rbtnBrandHClaas.Name = "rbtnBrandHClaas"; - this.rbtnBrandHClaas.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandHClaas.TabIndex = 116; - this.rbtnBrandHClaas.TabStop = true; - this.rbtnBrandHClaas.UseVisualStyleBackColor = true; - this.rbtnBrandHClaas.CheckedChanged += new System.EventHandler(this.rbtnBrandHClaas_CheckedChanged); + this.label105.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label105.AutoSize = true; + this.label105.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label105.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label105.Location = new System.Drawing.Point(653, -9); + this.label105.Name = "label105"; + this.label105.Size = new System.Drawing.Size(88, 19); + this.label105.TabIndex = 485; + this.label105.Text = "No Image"; // - // rbtnBrandHJDeere + // tabVAntenna // - this.rbtnBrandHJDeere.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandHJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandHJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandHJDeere.Checked = true; - this.rbtnBrandHJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandHJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandHJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandHJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; - this.rbtnBrandHJDeere.Location = new System.Drawing.Point(8, 294); - this.rbtnBrandHJDeere.Name = "rbtnBrandHJDeere"; - this.rbtnBrandHJDeere.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandHJDeere.TabIndex = 129; - this.rbtnBrandHJDeere.TabStop = true; - this.rbtnBrandHJDeere.UseVisualStyleBackColor = true; - this.rbtnBrandHJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrandHJDeere_CheckedChanged); + this.tabVAntenna.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabVAntenna.Controls.Add(this.label100); + this.tabVAntenna.Controls.Add(this.label99); + this.tabVAntenna.Controls.Add(this.label98); + this.tabVAntenna.Controls.Add(this.nudAntennaHeight); + this.tabVAntenna.Controls.Add(this.nudAntennaPivot); + this.tabVAntenna.Controls.Add(this.nudAntennaOffset); + this.tabVAntenna.Controls.Add(this.pboxAntenna); + this.tabVAntenna.Location = new System.Drawing.Point(4, 44); + this.tabVAntenna.Name = "tabVAntenna"; + this.tabVAntenna.Size = new System.Drawing.Size(854, 584); + this.tabVAntenna.TabIndex = 12; + this.tabVAntenna.Text = "vAnt"; + this.tabVAntenna.Enter += new System.EventHandler(this.tabVAntenna_Enter); + this.tabVAntenna.Leave += new System.EventHandler(this.tabVAntenna_Leave); // - // rbtnBrandHNH + // label100 // - this.rbtnBrandHNH.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandHNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandHNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandHNH.Checked = true; - this.rbtnBrandHNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandHNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandHNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandHNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; - this.rbtnBrandHNH.Location = new System.Drawing.Point(8, 390); - this.rbtnBrandHNH.Name = "rbtnBrandHNH"; - this.rbtnBrandHNH.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandHNH.TabIndex = 130; - this.rbtnBrandHNH.TabStop = true; - this.rbtnBrandHNH.UseVisualStyleBackColor = true; - this.rbtnBrandHNH.CheckedChanged += new System.EventHandler(this.rbtnBrandHNH_CheckedChanged); + this.label100.AutoSize = true; + this.label100.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label100.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label100.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label100.Location = new System.Drawing.Point(638, 392); + this.label100.Name = "label100"; + this.label100.Size = new System.Drawing.Size(32, 19); + this.label100.TabIndex = 483; + this.label100.Text = "cm"; + this.label100.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // panelTractorBrands + // label99 // - this.panelTractorBrands.AccessibleName = ""; - this.panelTractorBrands.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTAgOpenGPS); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTCase); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTClaas); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTDeutz); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTFendt); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTJDeere); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTKubota); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTMassey); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTNH); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTSame); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTSteyr); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTValtra); - this.panelTractorBrands.Controls.Add(this.rbtnBrandTUrsus); - this.panelTractorBrands.Location = new System.Drawing.Point(131, 115); - this.panelTractorBrands.Name = "panelTractorBrands"; - this.panelTractorBrands.Size = new System.Drawing.Size(289, 467); - this.panelTractorBrands.TabIndex = 142; + this.label99.AutoSize = true; + this.label99.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label99.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label99.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label99.Location = new System.Drawing.Point(566, 186); + this.label99.Name = "label99"; + this.label99.Size = new System.Drawing.Size(32, 19); + this.label99.TabIndex = 482; + this.label99.Text = "cm"; + this.label99.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTAgOpenGPS + // label98 // - this.rbtnBrandTAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; - this.rbtnBrandTAgOpenGPS.Location = new System.Drawing.Point(112, 6); - this.rbtnBrandTAgOpenGPS.Name = "rbtnBrandTAgOpenGPS"; - this.rbtnBrandTAgOpenGPS.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTAgOpenGPS.TabIndex = 126; - this.rbtnBrandTAgOpenGPS.UseVisualStyleBackColor = true; - this.rbtnBrandTAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrandTAgOpenGPS_CheckedChanged); + this.label98.AutoSize = true; + this.label98.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label98.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label98.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label98.Location = new System.Drawing.Point(302, 17); + this.label98.Name = "label98"; + this.label98.Size = new System.Drawing.Size(32, 19); + this.label98.TabIndex = 481; + this.label98.Text = "cm"; + this.label98.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTCase + // nudAntennaHeight // - this.rbtnBrandTCase.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTCase.BackgroundImage = global::AgOpenGPS.Properties.Resources.Case; - this.rbtnBrandTCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTCase.Location = new System.Drawing.Point(13, 102); - this.rbtnBrandTCase.Name = "rbtnBrandTCase"; - this.rbtnBrandTCase.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTCase.TabIndex = 114; - this.rbtnBrandTCase.UseVisualStyleBackColor = true; - this.rbtnBrandTCase.CheckedChanged += new System.EventHandler(this.rbtnBrandTCase_CheckedChanged); + this.nudAntennaHeight.BackColor = System.Drawing.Color.AliceBlue; + this.nudAntennaHeight.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudAntennaHeight.InterceptArrowKeys = false; + this.nudAntennaHeight.Location = new System.Drawing.Point(511, 208); + this.nudAntennaHeight.Maximum = new decimal(new int[] { + 1000, + 0, + 0, + 0}); + this.nudAntennaHeight.Name = "nudAntennaHeight"; + this.nudAntennaHeight.ReadOnly = true; + this.nudAntennaHeight.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudAntennaHeight.Size = new System.Drawing.Size(144, 52); + this.nudAntennaHeight.TabIndex = 3; + this.nudAntennaHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudAntennaHeight.Value = new decimal(new int[] { + 300, + 0, + 0, + 0}); + this.nudAntennaHeight.Click += new System.EventHandler(this.nudAntennaHeight_Click); // - // rbtnBrandTClaas + // nudAntennaPivot // - this.rbtnBrandTClaas.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTClaas.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTClaas.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTClaas.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTClaas.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTClaas.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTClaas.Image = global::AgOpenGPS.Properties.Resources.Claas; - this.rbtnBrandTClaas.Location = new System.Drawing.Point(112, 102); - this.rbtnBrandTClaas.Name = "rbtnBrandTClaas"; - this.rbtnBrandTClaas.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTClaas.TabIndex = 115; - this.rbtnBrandTClaas.UseVisualStyleBackColor = true; - this.rbtnBrandTClaas.CheckedChanged += new System.EventHandler(this.rbtnBrandTClaas_CheckedChanged); + this.nudAntennaPivot.BackColor = System.Drawing.Color.AliceBlue; + this.nudAntennaPivot.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudAntennaPivot.InterceptArrowKeys = false; + this.nudAntennaPivot.Location = new System.Drawing.Point(245, 43); + this.nudAntennaPivot.Maximum = new decimal(new int[] { + 999, + 0, + 0, + 0}); + this.nudAntennaPivot.Minimum = new decimal(new int[] { + 999, + 0, + 0, + -2147483648}); + this.nudAntennaPivot.Name = "nudAntennaPivot"; + this.nudAntennaPivot.ReadOnly = true; + this.nudAntennaPivot.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudAntennaPivot.Size = new System.Drawing.Size(144, 52); + this.nudAntennaPivot.TabIndex = 1; + this.nudAntennaPivot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudAntennaPivot.Value = new decimal(new int[] { + 111, + 0, + 0, + 0}); + this.nudAntennaPivot.Click += new System.EventHandler(this.nudAntennaPivot_Click); // - // rbtnBrandTDeutz + // nudAntennaOffset // - this.rbtnBrandTDeutz.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTDeutz.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTDeutz.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTDeutz.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTDeutz.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTDeutz.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTDeutz.Image = global::AgOpenGPS.Properties.Resources.Deutz; - this.rbtnBrandTDeutz.Location = new System.Drawing.Point(211, 102); - this.rbtnBrandTDeutz.Name = "rbtnBrandTDeutz"; - this.rbtnBrandTDeutz.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTDeutz.TabIndex = 116; - this.rbtnBrandTDeutz.UseVisualStyleBackColor = true; - this.rbtnBrandTDeutz.CheckedChanged += new System.EventHandler(this.rbtnBrandTDeutz_CheckedChanged); + this.nudAntennaOffset.BackColor = System.Drawing.Color.AliceBlue; + this.nudAntennaOffset.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudAntennaOffset.InterceptArrowKeys = false; + this.nudAntennaOffset.Location = new System.Drawing.Point(585, 414); + this.nudAntennaOffset.Maximum = new decimal(new int[] { + 500, + 0, + 0, + 0}); + this.nudAntennaOffset.Minimum = new decimal(new int[] { + 500, + 0, + 0, + -2147483648}); + this.nudAntennaOffset.Name = "nudAntennaOffset"; + this.nudAntennaOffset.ReadOnly = true; + this.nudAntennaOffset.Size = new System.Drawing.Size(144, 52); + this.nudAntennaOffset.TabIndex = 2; + this.nudAntennaOffset.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudAntennaOffset.Click += new System.EventHandler(this.nudAntennaOffset_Click); // - // rbtnBrandTFendt + // tabVDimensions // - this.rbtnBrandTFendt.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTFendt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTFendt.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTFendt.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTFendt.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTFendt.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTFendt.Image = global::AgOpenGPS.Properties.Resources.Fendt; - this.rbtnBrandTFendt.Location = new System.Drawing.Point(13, 390); - this.rbtnBrandTFendt.Name = "rbtnBrandTFendt"; - this.rbtnBrandTFendt.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTFendt.TabIndex = 117; - this.rbtnBrandTFendt.UseVisualStyleBackColor = true; - this.rbtnBrandTFendt.CheckedChanged += new System.EventHandler(this.rbtnBrandTFendt_CheckedChanged); + this.tabVDimensions.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabVDimensions.Controls.Add(this.label97); + this.tabVDimensions.Controls.Add(this.label96); + this.tabVDimensions.Controls.Add(this.label95); + this.tabVDimensions.Controls.Add(this.label94); + this.tabVDimensions.Controls.Add(this.label27); + this.tabVDimensions.Controls.Add(this.label60); + this.tabVDimensions.Controls.Add(this.label53); + this.tabVDimensions.Controls.Add(this.label44); + this.tabVDimensions.Controls.Add(this.nudTractorHitchLength); + this.tabVDimensions.Controls.Add(this.nudVehicleTrack); + this.tabVDimensions.Controls.Add(this.nudWheelbase); + this.tabVDimensions.Controls.Add(this.nudMinTurnRadius); + this.tabVDimensions.Controls.Add(this.pictureBox1); + this.tabVDimensions.Location = new System.Drawing.Point(4, 44); + this.tabVDimensions.Name = "tabVDimensions"; + this.tabVDimensions.Size = new System.Drawing.Size(854, 584); + this.tabVDimensions.TabIndex = 13; + this.tabVDimensions.Text = "vDim"; + this.tabVDimensions.Enter += new System.EventHandler(this.tabVDimensions_Enter); // - // rbtnBrandTJDeere + // label97 // - this.rbtnBrandTJDeere.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; - this.rbtnBrandTJDeere.Location = new System.Drawing.Point(211, 294); - this.rbtnBrandTJDeere.Name = "rbtnBrandTJDeere"; - this.rbtnBrandTJDeere.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTJDeere.TabIndex = 118; - this.rbtnBrandTJDeere.UseVisualStyleBackColor = true; - this.rbtnBrandTJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrandTJDeere_CheckedChanged); + this.label97.AutoSize = true; + this.label97.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label97.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label97.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label97.Location = new System.Drawing.Point(750, 143); + this.label97.Name = "label97"; + this.label97.Size = new System.Drawing.Size(32, 19); + this.label97.TabIndex = 483; + this.label97.Text = "cm"; + this.label97.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTKubota + // label96 // - this.rbtnBrandTKubota.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTKubota.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTKubota.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTKubota.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTKubota.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTKubota.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTKubota.Image = global::AgOpenGPS.Properties.Resources.Kubota; - this.rbtnBrandTKubota.Location = new System.Drawing.Point(211, 390); - this.rbtnBrandTKubota.Name = "rbtnBrandTKubota"; - this.rbtnBrandTKubota.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTKubota.TabIndex = 119; - this.rbtnBrandTKubota.UseVisualStyleBackColor = true; - this.rbtnBrandTKubota.CheckedChanged += new System.EventHandler(this.rbtnBrandTKubota_CheckedChanged); + this.label96.AutoSize = true; + this.label96.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label96.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label96.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label96.Location = new System.Drawing.Point(786, 440); + this.label96.Name = "label96"; + this.label96.Size = new System.Drawing.Size(32, 19); + this.label96.TabIndex = 482; + this.label96.Text = "cm"; + this.label96.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTMassey + // label95 // - this.rbtnBrandTMassey.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTMassey.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTMassey.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTMassey.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTMassey.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTMassey.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTMassey.Image = global::AgOpenGPS.Properties.Resources.Massey; - this.rbtnBrandTMassey.Location = new System.Drawing.Point(13, 198); - this.rbtnBrandTMassey.Name = "rbtnBrandTMassey"; - this.rbtnBrandTMassey.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTMassey.TabIndex = 120; - this.rbtnBrandTMassey.UseVisualStyleBackColor = true; - this.rbtnBrandTMassey.CheckedChanged += new System.EventHandler(this.rbtnBrandTMassey_CheckedChanged); + this.label95.AutoSize = true; + this.label95.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label95.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label95.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label95.Location = new System.Drawing.Point(236, 375); + this.label95.Name = "label95"; + this.label95.Size = new System.Drawing.Size(32, 19); + this.label95.TabIndex = 481; + this.label95.Text = "cm"; + this.label95.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTNH + // label94 // - this.rbtnBrandTNH.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; - this.rbtnBrandTNH.Location = new System.Drawing.Point(112, 198); - this.rbtnBrandTNH.Name = "rbtnBrandTNH"; - this.rbtnBrandTNH.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTNH.TabIndex = 121; - this.rbtnBrandTNH.UseVisualStyleBackColor = true; - this.rbtnBrandTNH.CheckedChanged += new System.EventHandler(this.rbtnBrandTNH_CheckedChanged); + this.label94.AutoSize = true; + this.label94.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label94.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.label94.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label94.Location = new System.Drawing.Point(197, 289); + this.label94.Name = "label94"; + this.label94.Size = new System.Drawing.Size(32, 19); + this.label94.TabIndex = 480; + this.label94.Text = "cm"; + this.label94.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnBrandTSame + // label27 // - this.rbtnBrandTSame.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTSame.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTSame.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTSame.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTSame.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTSame.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTSame.Image = global::AgOpenGPS.Properties.Resources.Same; - this.rbtnBrandTSame.Location = new System.Drawing.Point(211, 198); - this.rbtnBrandTSame.Name = "rbtnBrandTSame"; - this.rbtnBrandTSame.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTSame.TabIndex = 122; - this.rbtnBrandTSame.UseVisualStyleBackColor = true; - this.rbtnBrandTSame.CheckedChanged += new System.EventHandler(this.rbtnBrandTSame_CheckedChanged); + this.label27.AutoSize = true; + this.label27.ForeColor = System.Drawing.SystemColors.ControlText; + this.label27.Location = new System.Drawing.Point(68, 327); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(77, 16); + this.label27.TabIndex = 479; + this.label27.Text = "Hitch Length"; // - // rbtnBrandTSteyr + // label60 // - this.rbtnBrandTSteyr.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTSteyr.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTSteyr.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTSteyr.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTSteyr.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTSteyr.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTSteyr.Image = global::AgOpenGPS.Properties.Resources.Steyr; - this.rbtnBrandTSteyr.Location = new System.Drawing.Point(112, 390); - this.rbtnBrandTSteyr.Name = "rbtnBrandTSteyr"; - this.rbtnBrandTSteyr.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTSteyr.TabIndex = 123; - this.rbtnBrandTSteyr.UseVisualStyleBackColor = true; - this.rbtnBrandTSteyr.CheckedChanged += new System.EventHandler(this.rbtnBrandTSteyr_CheckedChanged); + this.label60.AutoSize = true; + this.label60.ForeColor = System.Drawing.SystemColors.ControlText; + this.label60.Location = new System.Drawing.Point(663, 479); + this.label60.Name = "label60"; + this.label60.Size = new System.Drawing.Size(76, 16); + this.label60.TabIndex = 477; + this.label60.Text = "Turn Radius"; // - // rbtnBrandTValtra + // label53 // - this.rbtnBrandTValtra.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTValtra.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTValtra.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTValtra.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTValtra.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTValtra.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTValtra.Image = global::AgOpenGPS.Properties.Resources.Valtra; - this.rbtnBrandTValtra.Location = new System.Drawing.Point(112, 294); - this.rbtnBrandTValtra.Name = "rbtnBrandTValtra"; - this.rbtnBrandTValtra.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTValtra.TabIndex = 125; - this.rbtnBrandTValtra.UseVisualStyleBackColor = true; - this.rbtnBrandTValtra.CheckedChanged += new System.EventHandler(this.rbtnBrandTValtra_CheckedChanged); + this.label53.AutoSize = true; + this.label53.ForeColor = System.Drawing.SystemColors.ControlText; + this.label53.Location = new System.Drawing.Point(755, 221); + this.label53.Name = "label53"; + this.label53.Size = new System.Drawing.Size(39, 16); + this.label53.TabIndex = 476; + this.label53.Text = "Track"; // - // rbtnBrandTUrsus + // label44 // - this.rbtnBrandTUrsus.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnBrandTUrsus.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnBrandTUrsus.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; - this.rbtnBrandTUrsus.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.rbtnBrandTUrsus.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnBrandTUrsus.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnBrandTUrsus.Image = global::AgOpenGPS.Properties.Resources.Ursus; - this.rbtnBrandTUrsus.Location = new System.Drawing.Point(13, 294); - this.rbtnBrandTUrsus.Name = "rbtnBrandTUrsus"; - this.rbtnBrandTUrsus.Size = new System.Drawing.Size(64, 64); - this.rbtnBrandTUrsus.TabIndex = 124; - this.rbtnBrandTUrsus.UseVisualStyleBackColor = true; - this.rbtnBrandTUrsus.CheckedChanged += new System.EventHandler(this.rbtnBrandTUrsus_CheckedChanged); + this.label44.AutoSize = true; + this.label44.ForeColor = System.Drawing.SystemColors.ControlText; + this.label44.Location = new System.Drawing.Point(226, 453); + this.label44.Name = "label44"; + this.label44.Size = new System.Drawing.Size(70, 16); + this.label44.TabIndex = 475; + this.label44.Text = "Wheelbase"; // - // label105 + // nudTractorHitchLength // - this.label105.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label105.AutoSize = true; - this.label105.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label105.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label105.Location = new System.Drawing.Point(653, -9); - this.label105.Name = "label105"; - this.label105.Size = new System.Drawing.Size(88, 19); - this.label105.TabIndex = 485; - this.label105.Text = "No Image"; + this.nudTractorHitchLength.BackColor = System.Drawing.Color.AliceBlue; + this.nudTractorHitchLength.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudTractorHitchLength.InterceptArrowKeys = false; + this.nudTractorHitchLength.Location = new System.Drawing.Point(37, 272); + this.nudTractorHitchLength.Maximum = new decimal(new int[] { + 4000, + 0, + 0, + 0}); + this.nudTractorHitchLength.Name = "nudTractorHitchLength"; + this.nudTractorHitchLength.ReadOnly = true; + this.nudTractorHitchLength.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudTractorHitchLength.Size = new System.Drawing.Size(152, 52); + this.nudTractorHitchLength.TabIndex = 478; + this.nudTractorHitchLength.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudTractorHitchLength.Value = new decimal(new int[] { + 301, + 0, + 0, + 0}); + this.nudTractorHitchLength.Click += new System.EventHandler(this.nudTractorHitchLength_Click); // - // btnOpacityDn + // nudVehicleTrack // - this.btnOpacityDn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnOpacityDn.BackColor = System.Drawing.Color.Transparent; - this.btnOpacityDn.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.btnOpacityDn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnOpacityDn.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; - this.btnOpacityDn.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnOpacityDn.Location = new System.Drawing.Point(555, 438); - this.btnOpacityDn.Name = "btnOpacityDn"; - this.btnOpacityDn.Size = new System.Drawing.Size(73, 72); - this.btnOpacityDn.TabIndex = 534; - this.btnOpacityDn.UseVisualStyleBackColor = false; - this.btnOpacityDn.Click += new System.EventHandler(this.btnOpacityDn_Click); - // - // panelOpacity - // - this.panelOpacity.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.panelOpacity.BackColor = System.Drawing.Color.MistyRose; - this.panelOpacity.BackgroundImage = global::AgOpenGPS.Properties.Resources.VehicleOpacity; - this.panelOpacity.Controls.Add(this.pboxAlpha); - this.panelOpacity.Location = new System.Drawing.Point(571, 144); - this.panelOpacity.Name = "panelOpacity"; - this.panelOpacity.Size = new System.Drawing.Size(256, 256); - this.panelOpacity.TabIndex = 535; - // - // pboxAlpha - // - this.pboxAlpha.BackColor = System.Drawing.Color.Transparent; - this.pboxAlpha.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_TractorDeutz; - this.pboxAlpha.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pboxAlpha.Dock = System.Windows.Forms.DockStyle.Fill; - this.pboxAlpha.Location = new System.Drawing.Point(0, 0); - this.pboxAlpha.Name = "pboxAlpha"; - this.pboxAlpha.Size = new System.Drawing.Size(256, 256); - this.pboxAlpha.TabIndex = 484; - this.pboxAlpha.TabStop = false; - // - // btnOpacityUp - // - this.btnOpacityUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnOpacityUp.BackColor = System.Drawing.Color.Transparent; - this.btnOpacityUp.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.btnOpacityUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnOpacityUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; - this.btnOpacityUp.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnOpacityUp.Location = new System.Drawing.Point(773, 438); - this.btnOpacityUp.Name = "btnOpacityUp"; - this.btnOpacityUp.Size = new System.Drawing.Size(73, 72); - this.btnOpacityUp.TabIndex = 533; - this.btnOpacityUp.UseVisualStyleBackColor = false; - this.btnOpacityUp.Click += new System.EventHandler(this.btnOpacityUp_Click); - // - // cboxIsImage - // - this.cboxIsImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxIsImage.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxIsImage.BackColor = System.Drawing.Color.Transparent; - this.cboxIsImage.FlatAppearance.BorderColor = System.Drawing.Color.Silver; - this.cboxIsImage.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxIsImage.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxIsImage.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxIsImage.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxIsImage.Image = global::AgOpenGPS.Properties.Resources.TriangleVehicle; - this.cboxIsImage.Location = new System.Drawing.Point(651, 17); - this.cboxIsImage.Name = "cboxIsImage"; - this.cboxIsImage.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxIsImage.Size = new System.Drawing.Size(96, 96); - this.cboxIsImage.TabIndex = 483; - this.cboxIsImage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxIsImage.UseVisualStyleBackColor = false; - this.cboxIsImage.Click += new System.EventHandler(this.cboxIsImage_Click); - // - // tabVAntenna - // - this.tabVAntenna.BackColor = System.Drawing.Color.WhiteSmoke; - this.tabVAntenna.Controls.Add(this.label100); - this.tabVAntenna.Controls.Add(this.label99); - this.tabVAntenna.Controls.Add(this.label98); - this.tabVAntenna.Controls.Add(this.nudAntennaHeight); - this.tabVAntenna.Controls.Add(this.nudAntennaPivot); - this.tabVAntenna.Controls.Add(this.nudAntennaOffset); - this.tabVAntenna.Controls.Add(this.pboxAntenna); - this.tabVAntenna.Location = new System.Drawing.Point(4, 44); - this.tabVAntenna.Name = "tabVAntenna"; - this.tabVAntenna.Size = new System.Drawing.Size(854, 584); - this.tabVAntenna.TabIndex = 12; - this.tabVAntenna.Text = "vAnt"; - this.tabVAntenna.Enter += new System.EventHandler(this.tabVAntenna_Enter); - this.tabVAntenna.Leave += new System.EventHandler(this.tabVAntenna_Leave); - // - // label100 - // - this.label100.AutoSize = true; - this.label100.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label100.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label100.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label100.Location = new System.Drawing.Point(638, 392); - this.label100.Name = "label100"; - this.label100.Size = new System.Drawing.Size(32, 19); - this.label100.TabIndex = 483; - this.label100.Text = "cm"; - this.label100.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label99 - // - this.label99.AutoSize = true; - this.label99.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label99.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label99.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label99.Location = new System.Drawing.Point(566, 186); - this.label99.Name = "label99"; - this.label99.Size = new System.Drawing.Size(32, 19); - this.label99.TabIndex = 482; - this.label99.Text = "cm"; - this.label99.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label98 - // - this.label98.AutoSize = true; - this.label98.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label98.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label98.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label98.Location = new System.Drawing.Point(302, 17); - this.label98.Name = "label98"; - this.label98.Size = new System.Drawing.Size(32, 19); - this.label98.TabIndex = 481; - this.label98.Text = "cm"; - this.label98.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // nudAntennaHeight - // - this.nudAntennaHeight.BackColor = System.Drawing.Color.AliceBlue; - this.nudAntennaHeight.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudAntennaHeight.InterceptArrowKeys = false; - this.nudAntennaHeight.Location = new System.Drawing.Point(511, 208); - this.nudAntennaHeight.Maximum = new decimal(new int[] { - 1000, + this.nudVehicleTrack.BackColor = System.Drawing.Color.AliceBlue; + this.nudVehicleTrack.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudVehicleTrack.InterceptArrowKeys = false; + this.nudVehicleTrack.Location = new System.Drawing.Point(700, 165); + this.nudVehicleTrack.Maximum = new decimal(new int[] { + 2000, 0, 0, 0}); - this.nudAntennaHeight.Name = "nudAntennaHeight"; - this.nudAntennaHeight.ReadOnly = true; - this.nudAntennaHeight.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudAntennaHeight.Size = new System.Drawing.Size(144, 52); - this.nudAntennaHeight.TabIndex = 3; - this.nudAntennaHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudAntennaHeight.Value = new decimal(new int[] { - 300, + this.nudVehicleTrack.Minimum = new decimal(new int[] { + 20, 0, 0, 0}); - this.nudAntennaHeight.Click += new System.EventHandler(this.nudAntennaHeight_Click); + this.nudVehicleTrack.Name = "nudVehicleTrack"; + this.nudVehicleTrack.ReadOnly = true; + this.nudVehicleTrack.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudVehicleTrack.Size = new System.Drawing.Size(133, 52); + this.nudVehicleTrack.TabIndex = 53; + this.nudVehicleTrack.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudVehicleTrack.Value = new decimal(new int[] { + 301, + 0, + 0, + 0}); + this.nudVehicleTrack.Click += new System.EventHandler(this.nudVehicleTrack_Click); // - // nudAntennaPivot + // nudWheelbase // - this.nudAntennaPivot.BackColor = System.Drawing.Color.AliceBlue; - this.nudAntennaPivot.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudAntennaPivot.InterceptArrowKeys = false; - this.nudAntennaPivot.Location = new System.Drawing.Point(245, 43); - this.nudAntennaPivot.Maximum = new decimal(new int[] { - 999, + this.nudWheelbase.BackColor = System.Drawing.Color.AliceBlue; + this.nudWheelbase.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudWheelbase.InterceptArrowKeys = false; + this.nudWheelbase.Location = new System.Drawing.Point(179, 397); + this.nudWheelbase.Maximum = new decimal(new int[] { + 1999, 0, 0, 0}); - this.nudAntennaPivot.Minimum = new decimal(new int[] { - 999, + this.nudWheelbase.Minimum = new decimal(new int[] { + 50, 0, 0, - -2147483648}); - this.nudAntennaPivot.Name = "nudAntennaPivot"; - this.nudAntennaPivot.ReadOnly = true; - this.nudAntennaPivot.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudAntennaPivot.Size = new System.Drawing.Size(144, 52); - this.nudAntennaPivot.TabIndex = 1; - this.nudAntennaPivot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudAntennaPivot.Value = new decimal(new int[] { - 111, + 0}); + this.nudWheelbase.Name = "nudWheelbase"; + this.nudWheelbase.ReadOnly = true; + this.nudWheelbase.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudWheelbase.Size = new System.Drawing.Size(152, 52); + this.nudWheelbase.TabIndex = 52; + this.nudWheelbase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudWheelbase.Value = new decimal(new int[] { + 499, 0, 0, 0}); - this.nudAntennaPivot.Click += new System.EventHandler(this.nudAntennaPivot_Click); + this.nudWheelbase.Click += new System.EventHandler(this.nudWheelbase_Click); // - // nudAntennaOffset + // nudMinTurnRadius // - this.nudAntennaOffset.BackColor = System.Drawing.Color.AliceBlue; - this.nudAntennaOffset.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudAntennaOffset.InterceptArrowKeys = false; - this.nudAntennaOffset.Location = new System.Drawing.Point(585, 414); - this.nudAntennaOffset.Maximum = new decimal(new int[] { - 500, + this.nudMinTurnRadius.BackColor = System.Drawing.Color.AliceBlue; + this.nudMinTurnRadius.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nudMinTurnRadius.InterceptArrowKeys = false; + this.nudMinTurnRadius.Location = new System.Drawing.Point(630, 424); + this.nudMinTurnRadius.Maximum = new decimal(new int[] { + 9999, 0, 0, 0}); - this.nudAntennaOffset.Minimum = new decimal(new int[] { - 500, + this.nudMinTurnRadius.Minimum = new decimal(new int[] { + 50, 0, 0, - -2147483648}); - this.nudAntennaOffset.Name = "nudAntennaOffset"; - this.nudAntennaOffset.ReadOnly = true; - this.nudAntennaOffset.Size = new System.Drawing.Size(144, 52); - this.nudAntennaOffset.TabIndex = 2; - this.nudAntennaOffset.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudAntennaOffset.Click += new System.EventHandler(this.nudAntennaOffset_Click); - // - // pboxAntenna - // - this.pboxAntenna.BackgroundImage = global::AgOpenGPS.Properties.Resources.AntennaTractor; - this.pboxAntenna.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pboxAntenna.Location = new System.Drawing.Point(141, 106); - this.pboxAntenna.Name = "pboxAntenna"; - this.pboxAntenna.Size = new System.Drawing.Size(514, 446); - this.pboxAntenna.TabIndex = 48; - this.pboxAntenna.TabStop = false; + 0}); + this.nudMinTurnRadius.Name = "nudMinTurnRadius"; + this.nudMinTurnRadius.ReadOnly = true; + this.nudMinTurnRadius.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.nudMinTurnRadius.Size = new System.Drawing.Size(152, 52); + this.nudMinTurnRadius.TabIndex = 49; + this.nudMinTurnRadius.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.nudMinTurnRadius.Value = new decimal(new int[] { + 301, + 0, + 0, + 0}); + this.nudMinTurnRadius.Click += new System.EventHandler(this.nudMinTurnRadius_Click); // - // tabVDimensions - // - this.tabVDimensions.BackColor = System.Drawing.Color.WhiteSmoke; - this.tabVDimensions.Controls.Add(this.label97); - this.tabVDimensions.Controls.Add(this.label96); - this.tabVDimensions.Controls.Add(this.label95); - this.tabVDimensions.Controls.Add(this.label94); - this.tabVDimensions.Controls.Add(this.label27); - this.tabVDimensions.Controls.Add(this.label60); - this.tabVDimensions.Controls.Add(this.label53); - this.tabVDimensions.Controls.Add(this.label44); - this.tabVDimensions.Controls.Add(this.nudTractorHitchLength); - this.tabVDimensions.Controls.Add(this.nudVehicleTrack); - this.tabVDimensions.Controls.Add(this.nudWheelbase); - this.tabVDimensions.Controls.Add(this.nudMinTurnRadius); - this.tabVDimensions.Controls.Add(this.pictureBox1); - this.tabVDimensions.Location = new System.Drawing.Point(4, 44); - this.tabVDimensions.Name = "tabVDimensions"; - this.tabVDimensions.Size = new System.Drawing.Size(854, 584); - this.tabVDimensions.TabIndex = 13; - this.tabVDimensions.Text = "vDim"; - this.tabVDimensions.Enter += new System.EventHandler(this.tabVDimensions_Enter); - // - // label97 - // - this.label97.AutoSize = true; - this.label97.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label97.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label97.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label97.Location = new System.Drawing.Point(750, 143); - this.label97.Name = "label97"; - this.label97.Size = new System.Drawing.Size(32, 19); - this.label97.TabIndex = 483; - this.label97.Text = "cm"; - this.label97.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label96 - // - this.label96.AutoSize = true; - this.label96.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label96.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label96.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label96.Location = new System.Drawing.Point(786, 440); - this.label96.Name = "label96"; - this.label96.Size = new System.Drawing.Size(32, 19); - this.label96.TabIndex = 482; - this.label96.Text = "cm"; - this.label96.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label95 - // - this.label95.AutoSize = true; - this.label95.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label95.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label95.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label95.Location = new System.Drawing.Point(236, 375); - this.label95.Name = "label95"; - this.label95.Size = new System.Drawing.Size(32, 19); - this.label95.TabIndex = 481; - this.label95.Text = "cm"; - this.label95.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label94 - // - this.label94.AutoSize = true; - this.label94.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label94.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; - this.label94.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label94.Location = new System.Drawing.Point(197, 289); - this.label94.Name = "label94"; - this.label94.Size = new System.Drawing.Size(32, 19); - this.label94.TabIndex = 480; - this.label94.Text = "cm"; - this.label94.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - // - // label27 - // - this.label27.AutoSize = true; - this.label27.ForeColor = System.Drawing.SystemColors.ControlText; - this.label27.Location = new System.Drawing.Point(68, 327); - this.label27.Name = "label27"; - this.label27.Size = new System.Drawing.Size(77, 16); - this.label27.TabIndex = 479; - this.label27.Text = "Hitch Length"; - // - // label60 - // - this.label60.AutoSize = true; - this.label60.ForeColor = System.Drawing.SystemColors.ControlText; - this.label60.Location = new System.Drawing.Point(663, 479); - this.label60.Name = "label60"; - this.label60.Size = new System.Drawing.Size(76, 16); - this.label60.TabIndex = 477; - this.label60.Text = "Turn Radius"; - // - // label53 - // - this.label53.AutoSize = true; - this.label53.ForeColor = System.Drawing.SystemColors.ControlText; - this.label53.Location = new System.Drawing.Point(755, 221); - this.label53.Name = "label53"; - this.label53.Size = new System.Drawing.Size(39, 16); - this.label53.TabIndex = 476; - this.label53.Text = "Track"; - // - // label44 - // - this.label44.AutoSize = true; - this.label44.ForeColor = System.Drawing.SystemColors.ControlText; - this.label44.Location = new System.Drawing.Point(226, 453); - this.label44.Name = "label44"; - this.label44.Size = new System.Drawing.Size(70, 16); - this.label44.TabIndex = 475; - this.label44.Text = "Wheelbase"; - // - // nudTractorHitchLength - // - this.nudTractorHitchLength.BackColor = System.Drawing.Color.AliceBlue; - this.nudTractorHitchLength.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudTractorHitchLength.InterceptArrowKeys = false; - this.nudTractorHitchLength.Location = new System.Drawing.Point(37, 272); - this.nudTractorHitchLength.Maximum = new decimal(new int[] { - 4000, - 0, - 0, - 0}); - this.nudTractorHitchLength.Name = "nudTractorHitchLength"; - this.nudTractorHitchLength.ReadOnly = true; - this.nudTractorHitchLength.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudTractorHitchLength.Size = new System.Drawing.Size(152, 52); - this.nudTractorHitchLength.TabIndex = 478; - this.nudTractorHitchLength.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudTractorHitchLength.Value = new decimal(new int[] { - 301, - 0, - 0, - 0}); - this.nudTractorHitchLength.Click += new System.EventHandler(this.nudTractorHitchLength_Click); - // - // nudVehicleTrack - // - this.nudVehicleTrack.BackColor = System.Drawing.Color.AliceBlue; - this.nudVehicleTrack.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudVehicleTrack.InterceptArrowKeys = false; - this.nudVehicleTrack.Location = new System.Drawing.Point(700, 165); - this.nudVehicleTrack.Maximum = new decimal(new int[] { - 2000, - 0, - 0, - 0}); - this.nudVehicleTrack.Minimum = new decimal(new int[] { - 20, - 0, - 0, - 0}); - this.nudVehicleTrack.Name = "nudVehicleTrack"; - this.nudVehicleTrack.ReadOnly = true; - this.nudVehicleTrack.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudVehicleTrack.Size = new System.Drawing.Size(133, 52); - this.nudVehicleTrack.TabIndex = 53; - this.nudVehicleTrack.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudVehicleTrack.Value = new decimal(new int[] { - 301, - 0, - 0, - 0}); - this.nudVehicleTrack.Click += new System.EventHandler(this.nudVehicleTrack_Click); - // - // nudWheelbase - // - this.nudWheelbase.BackColor = System.Drawing.Color.AliceBlue; - this.nudWheelbase.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudWheelbase.InterceptArrowKeys = false; - this.nudWheelbase.Location = new System.Drawing.Point(179, 397); - this.nudWheelbase.Maximum = new decimal(new int[] { - 1999, - 0, - 0, - 0}); - this.nudWheelbase.Minimum = new decimal(new int[] { - 50, - 0, - 0, - 0}); - this.nudWheelbase.Name = "nudWheelbase"; - this.nudWheelbase.ReadOnly = true; - this.nudWheelbase.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudWheelbase.Size = new System.Drawing.Size(152, 52); - this.nudWheelbase.TabIndex = 52; - this.nudWheelbase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudWheelbase.Value = new decimal(new int[] { - 499, - 0, - 0, - 0}); - this.nudWheelbase.Click += new System.EventHandler(this.nudWheelbase_Click); - // - // nudMinTurnRadius - // - this.nudMinTurnRadius.BackColor = System.Drawing.Color.AliceBlue; - this.nudMinTurnRadius.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.nudMinTurnRadius.InterceptArrowKeys = false; - this.nudMinTurnRadius.Location = new System.Drawing.Point(630, 424); - this.nudMinTurnRadius.Maximum = new decimal(new int[] { - 9999, - 0, - 0, - 0}); - this.nudMinTurnRadius.Minimum = new decimal(new int[] { - 50, - 0, - 0, - 0}); - this.nudMinTurnRadius.Name = "nudMinTurnRadius"; - this.nudMinTurnRadius.ReadOnly = true; - this.nudMinTurnRadius.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.nudMinTurnRadius.Size = new System.Drawing.Size(152, 52); - this.nudMinTurnRadius.TabIndex = 49; - this.nudMinTurnRadius.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - this.nudMinTurnRadius.Value = new decimal(new int[] { - 301, - 0, - 0, - 0}); - this.nudMinTurnRadius.Click += new System.EventHandler(this.nudMinTurnRadius_Click); - // - // pictureBox1 - // - this.pictureBox1.Image = global::AgOpenGPS.Properties.Resources.RadiusWheelBase; - this.pictureBox1.InitialImage = null; - this.pictureBox1.Location = new System.Drawing.Point(4, 22); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(814, 545); - this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBox1.TabIndex = 32; - this.pictureBox1.TabStop = false; - // - // tabVGuidance + // tabVGuidance // this.tabVGuidance.BackColor = System.Drawing.Color.WhiteSmoke; this.tabVGuidance.Controls.Add(this.nudMinSteerSpeed); @@ -3170,129 +2107,19 @@ private void InitializeComponent() 0}); this.nudLineWidth.Click += new System.EventHandler(this.nudLineWidth_Click); // - // pictureBox17 - // - this.pictureBox17.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_MinAutoSteer; - this.pictureBox17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox17.Location = new System.Drawing.Point(242, 404); - this.pictureBox17.Name = "pictureBox17"; - this.pictureBox17.Size = new System.Drawing.Size(118, 75); - this.pictureBox17.TabIndex = 490; - this.pictureBox17.TabStop = false; + // tabTConfig // - // pictureBox16 + this.tabTConfig.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabTConfig.Controls.Add(this.gboxAttachment); + this.tabTConfig.Location = new System.Drawing.Point(4, 44); + this.tabTConfig.Name = "tabTConfig"; + this.tabTConfig.Size = new System.Drawing.Size(854, 584); + this.tabTConfig.TabIndex = 11; + this.tabTConfig.Text = "tConfig"; + this.tabTConfig.Enter += new System.EventHandler(this.tabTConfig_Enter); + this.tabTConfig.Leave += new System.EventHandler(this.tabTConfig_Leave); // - this.pictureBox16.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_MaxAutoSteer; - this.pictureBox16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox16.Location = new System.Drawing.Point(435, 404); - this.pictureBox16.Name = "pictureBox16"; - this.pictureBox16.Size = new System.Drawing.Size(118, 75); - this.pictureBox16.TabIndex = 485; - this.pictureBox16.TabStop = false; - // - // cboxSteerInReverse - // - this.cboxSteerInReverse.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxSteerInReverse.BackColor = System.Drawing.Color.AliceBlue; - this.cboxSteerInReverse.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxSteerInReverse.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxSteerInReverse.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxSteerInReverse.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxSteerInReverse.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxSteerInReverse.Image = global::AgOpenGPS.Properties.Resources.ConV_RevSteer; - this.cboxSteerInReverse.Location = new System.Drawing.Point(728, 36); - this.cboxSteerInReverse.Name = "cboxSteerInReverse"; - this.cboxSteerInReverse.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxSteerInReverse.Size = new System.Drawing.Size(90, 100); - this.cboxSteerInReverse.TabIndex = 473; - this.cboxSteerInReverse.Text = "Reverse"; - this.cboxSteerInReverse.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.cboxSteerInReverse.UseVisualStyleBackColor = false; - this.cboxSteerInReverse.Click += new System.EventHandler(this.cboxSteerInReverse_Click); - // - // pictureBox15 - // - this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox15.Image = global::AgOpenGPS.Properties.Resources.ConV_MaxAngVel; - this.pictureBox15.Location = new System.Drawing.Point(626, 404); - this.pictureBox15.Name = "pictureBox15"; - this.pictureBox15.Size = new System.Drawing.Size(118, 75); - this.pictureBox15.TabIndex = 480; - this.pictureBox15.TabStop = false; - // - // pictureBox10 - // - this.pictureBox10.BackgroundImage = global::AgOpenGPS.Properties.Resources.con_VehicleFunctionSpeedLimit; - this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox10.Location = new System.Drawing.Point(50, 404); - this.pictureBox10.Name = "pictureBox10"; - this.pictureBox10.Size = new System.Drawing.Size(118, 75); - this.pictureBox10.TabIndex = 476; - this.pictureBox10.TabStop = false; - // - // pictureBox12 - // - this.pictureBox12.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_GuidanceLookAhead; - this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox12.Location = new System.Drawing.Point(370, 191); - this.pictureBox12.Name = "pictureBox12"; - this.pictureBox12.Size = new System.Drawing.Size(118, 75); - this.pictureBox12.TabIndex = 471; - this.pictureBox12.TabStop = false; - // - // cboxAutoSteerAuto - // - this.cboxAutoSteerAuto.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxAutoSteerAuto.BackColor = System.Drawing.Color.Firebrick; - this.cboxAutoSteerAuto.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxAutoSteerAuto.FlatAppearance.CheckedBackColor = System.Drawing.Color.DarkGreen; - this.cboxAutoSteerAuto.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxAutoSteerAuto.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxAutoSteerAuto.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.cboxAutoSteerAuto.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOn; - this.cboxAutoSteerAuto.ImageAlign = System.Drawing.ContentAlignment.TopCenter; - this.cboxAutoSteerAuto.Location = new System.Drawing.Point(730, 199); - this.cboxAutoSteerAuto.Name = "cboxAutoSteerAuto"; - this.cboxAutoSteerAuto.Size = new System.Drawing.Size(88, 103); - this.cboxAutoSteerAuto.TabIndex = 0; - this.cboxAutoSteerAuto.Text = "Manual"; - this.cboxAutoSteerAuto.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.cboxAutoSteerAuto.UseVisualStyleBackColor = false; - this.cboxAutoSteerAuto.Click += new System.EventHandler(this.cboxAutoSteerAuto_Click); - // - // pictureBox5 - // - this.pictureBox5.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_LineWith; - this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox5.Location = new System.Drawing.Point(33, 186); - this.pictureBox5.Name = "pictureBox5"; - this.pictureBox5.Size = new System.Drawing.Size(118, 75); - this.pictureBox5.TabIndex = 96; - this.pictureBox5.TabStop = false; - // - // pictureBox2 - // - this.pictureBox2.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_SnapDistance; - this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox2.Location = new System.Drawing.Point(197, 44); - this.pictureBox2.Name = "pictureBox2"; - this.pictureBox2.Size = new System.Drawing.Size(118, 75); - this.pictureBox2.TabIndex = 94; - this.pictureBox2.TabStop = false; - // - // tabTConfig - // - this.tabTConfig.BackColor = System.Drawing.Color.WhiteSmoke; - this.tabTConfig.Controls.Add(this.gboxAttachment); - this.tabTConfig.Location = new System.Drawing.Point(4, 44); - this.tabTConfig.Name = "tabTConfig"; - this.tabTConfig.Size = new System.Drawing.Size(854, 584); - this.tabTConfig.TabIndex = 11; - this.tabTConfig.Text = "tConfig"; - this.tabTConfig.Enter += new System.EventHandler(this.tabTConfig_Enter); - this.tabTConfig.Leave += new System.EventHandler(this.tabTConfig_Leave); - // - // gboxAttachment + // gboxAttachment // this.gboxAttachment.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.gboxAttachment.Controls.Add(this.pboxConfigHarvester); @@ -3309,78 +2136,6 @@ private void InitializeComponent() this.gboxAttachment.TabStop = false; this.gboxAttachment.Text = "Attachment Style"; // - // pboxConfigHarvester - // - this.pboxConfigHarvester.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageHarvester; - this.pboxConfigHarvester.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pboxConfigHarvester.Location = new System.Drawing.Point(206, 123); - this.pboxConfigHarvester.Name = "pboxConfigHarvester"; - this.pboxConfigHarvester.Size = new System.Drawing.Size(305, 206); - this.pboxConfigHarvester.TabIndex = 113; - this.pboxConfigHarvester.TabStop = false; - // - // rbtnTBT - // - this.rbtnTBT.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnTBT.BackColor = System.Drawing.Color.Transparent; - this.rbtnTBT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnTBT.FlatAppearance.BorderSize = 0; - this.rbtnTBT.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnTBT.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnTBT.Image = global::AgOpenGPS.Properties.Resources.ToolChkTBT; - this.rbtnTBT.Location = new System.Drawing.Point(394, 48); - this.rbtnTBT.Name = "rbtnTBT"; - this.rbtnTBT.Size = new System.Drawing.Size(309, 152); - this.rbtnTBT.TabIndex = 112; - this.rbtnTBT.UseVisualStyleBackColor = false; - // - // rbtnFixedRear - // - this.rbtnFixedRear.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnFixedRear.BackColor = System.Drawing.Color.Transparent; - this.rbtnFixedRear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnFixedRear.FlatAppearance.BorderSize = 0; - this.rbtnFixedRear.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnFixedRear.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnFixedRear.Image = global::AgOpenGPS.Properties.Resources.ToolChkRear; - this.rbtnFixedRear.Location = new System.Drawing.Point(16, 48); - this.rbtnFixedRear.Name = "rbtnFixedRear"; - this.rbtnFixedRear.Size = new System.Drawing.Size(309, 152); - this.rbtnFixedRear.TabIndex = 111; - this.rbtnFixedRear.UseVisualStyleBackColor = false; - // - // rbtnFront - // - this.rbtnFront.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnFront.BackColor = System.Drawing.Color.Transparent; - this.rbtnFront.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnFront.FlatAppearance.BorderSize = 0; - this.rbtnFront.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnFront.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnFront.Image = global::AgOpenGPS.Properties.Resources.ToolChkFront; - this.rbtnFront.Location = new System.Drawing.Point(16, 290); - this.rbtnFront.Name = "rbtnFront"; - this.rbtnFront.Size = new System.Drawing.Size(309, 152); - this.rbtnFront.TabIndex = 110; - this.rbtnFront.UseVisualStyleBackColor = false; - // - // rbtnTrailing - // - this.rbtnTrailing.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnTrailing.BackColor = System.Drawing.Color.Transparent; - this.rbtnTrailing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnTrailing.Checked = true; - this.rbtnTrailing.FlatAppearance.BorderSize = 0; - this.rbtnTrailing.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnTrailing.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnTrailing.Image = global::AgOpenGPS.Properties.Resources.ToolChkTrailing; - this.rbtnTrailing.Location = new System.Drawing.Point(394, 290); - this.rbtnTrailing.Name = "rbtnTrailing"; - this.rbtnTrailing.Size = new System.Drawing.Size(309, 152); - this.rbtnTrailing.TabIndex = 109; - this.rbtnTrailing.TabStop = true; - this.rbtnTrailing.UseVisualStyleBackColor = false; - // // tabTHitch // this.tabTHitch.BackColor = System.Drawing.Color.WhiteSmoke; @@ -3450,11 +2205,6 @@ private void InitializeComponent() 0, 0, 0}); - this.nudDrawbarLength.Minimum = new decimal(new int[] { - 10, - 0, - 0, - 0}); this.nudDrawbarLength.Name = "nudDrawbarLength"; this.nudDrawbarLength.ReadOnly = true; this.nudDrawbarLength.RightToLeft = System.Windows.Forms.RightToLeft.No; @@ -3509,16 +2259,6 @@ private void InitializeComponent() this.label164.Text = "Units:"; this.label164.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // picboxToolHitch - // - this.picboxToolHitch.BackgroundImage = global::AgOpenGPS.Properties.Resources.ToolHitchPageFront; - this.picboxToolHitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.picboxToolHitch.Location = new System.Drawing.Point(13, 12); - this.picboxToolHitch.Name = "picboxToolHitch"; - this.picboxToolHitch.Size = new System.Drawing.Size(838, 407); - this.picboxToolHitch.TabIndex = 0; - this.picboxToolHitch.TabStop = false; - // // tabToolOffset // this.tabToolOffset.BackColor = System.Drawing.Color.WhiteSmoke; @@ -3538,42 +2278,6 @@ private void InitializeComponent() this.tabToolOffset.Enter += new System.EventHandler(this.tabToolOffset_Enter); this.tabToolOffset.Leave += new System.EventHandler(this.tabToolOffset_Leave); // - // btnZeroOverlap - // - this.btnZeroOverlap.BackColor = System.Drawing.Color.Transparent; - this.btnZeroOverlap.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnZeroOverlap.FlatAppearance.BorderSize = 0; - this.btnZeroOverlap.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnZeroOverlap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnZeroOverlap.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnZeroOverlap.ForeColor = System.Drawing.Color.Black; - this.btnZeroOverlap.Image = global::AgOpenGPS.Properties.Resources.SteerZero; - this.btnZeroOverlap.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnZeroOverlap.Location = new System.Drawing.Point(513, 109); - this.btnZeroOverlap.Name = "btnZeroOverlap"; - this.btnZeroOverlap.Size = new System.Drawing.Size(114, 52); - this.btnZeroOverlap.TabIndex = 489; - this.btnZeroOverlap.UseVisualStyleBackColor = false; - this.btnZeroOverlap.Click += new System.EventHandler(this.btnZeroOverlap_Click); - // - // btnZeroToolOffset - // - this.btnZeroToolOffset.BackColor = System.Drawing.Color.Transparent; - this.btnZeroToolOffset.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnZeroToolOffset.FlatAppearance.BorderSize = 0; - this.btnZeroToolOffset.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnZeroToolOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnZeroToolOffset.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnZeroToolOffset.ForeColor = System.Drawing.Color.Black; - this.btnZeroToolOffset.Image = global::AgOpenGPS.Properties.Resources.SteerZero; - this.btnZeroToolOffset.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnZeroToolOffset.Location = new System.Drawing.Point(93, 109); - this.btnZeroToolOffset.Name = "btnZeroToolOffset"; - this.btnZeroToolOffset.Size = new System.Drawing.Size(114, 52); - this.btnZeroToolOffset.TabIndex = 488; - this.btnZeroToolOffset.UseVisualStyleBackColor = false; - this.btnZeroToolOffset.Click += new System.EventHandler(this.btnZeroToolOffset_Click); - // // label176 // this.label176.AutoSize = true; @@ -3638,53 +2342,21 @@ private void InitializeComponent() this.label3.TabIndex = 480; this.label3.Text = "Gap"; // - // rbtnToolOverlap + // groupBox2 // - this.rbtnToolOverlap.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnToolOverlap.BackColor = System.Drawing.Color.Transparent; - this.rbtnToolOverlap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnToolOverlap.Checked = true; - this.rbtnToolOverlap.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnToolOverlap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnToolOverlap.Image = global::AgOpenGPS.Properties.Resources.ToolOverlap; - this.rbtnToolOverlap.Location = new System.Drawing.Point(23, 35); - this.rbtnToolOverlap.Name = "rbtnToolOverlap"; - this.rbtnToolOverlap.Size = new System.Drawing.Size(166, 218); - this.rbtnToolOverlap.TabIndex = 479; - this.rbtnToolOverlap.TabStop = true; - this.rbtnToolOverlap.UseVisualStyleBackColor = false; - this.rbtnToolOverlap.Click += new System.EventHandler(this.rbtnToolOverlap_Click); + this.groupBox2.Controls.Add(this.label17); + this.groupBox2.Controls.Add(this.rbtnLeftNegative); + this.groupBox2.Controls.Add(this.rbtnToolRightPositive); + this.groupBox2.Controls.Add(this.label65); + this.groupBox2.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.groupBox2.Location = new System.Drawing.Point(28, 201); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new System.Drawing.Size(389, 290); + this.groupBox2.TabIndex = 480; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Tool Offset Direction"; // - // rbtnToolGap - // - this.rbtnToolGap.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnToolGap.BackColor = System.Drawing.Color.Transparent; - this.rbtnToolGap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnToolGap.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnToolGap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnToolGap.Image = global::AgOpenGPS.Properties.Resources.ToolGap; - this.rbtnToolGap.Location = new System.Drawing.Point(214, 35); - this.rbtnToolGap.Name = "rbtnToolGap"; - this.rbtnToolGap.Size = new System.Drawing.Size(166, 218); - this.rbtnToolGap.TabIndex = 478; - this.rbtnToolGap.UseVisualStyleBackColor = false; - this.rbtnToolGap.Click += new System.EventHandler(this.rbtnToolOverlap_Click); - // - // groupBox2 - // - this.groupBox2.Controls.Add(this.label17); - this.groupBox2.Controls.Add(this.rbtnLeftNegative); - this.groupBox2.Controls.Add(this.rbtnToolRightPositive); - this.groupBox2.Controls.Add(this.label65); - this.groupBox2.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBox2.Location = new System.Drawing.Point(28, 201); - this.groupBox2.Name = "groupBox2"; - this.groupBox2.Size = new System.Drawing.Size(389, 290); - this.groupBox2.TabIndex = 480; - this.groupBox2.TabStop = false; - this.groupBox2.Text = "Tool Offset Direction"; - // - // label17 + // label17 // this.label17.AutoSize = true; this.label17.BackColor = System.Drawing.Color.Transparent; @@ -3696,36 +2368,6 @@ private void InitializeComponent() this.label17.TabIndex = 480; this.label17.Text = "Tool Right"; // - // rbtnLeftNegative - // - this.rbtnLeftNegative.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnLeftNegative.BackColor = System.Drawing.Color.Transparent; - this.rbtnLeftNegative.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnLeftNegative.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnLeftNegative.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnLeftNegative.Image = global::AgOpenGPS.Properties.Resources.ToolOffsetNegativeLeft; - this.rbtnLeftNegative.Location = new System.Drawing.Point(17, 35); - this.rbtnLeftNegative.Name = "rbtnLeftNegative"; - this.rbtnLeftNegative.Size = new System.Drawing.Size(166, 218); - this.rbtnLeftNegative.TabIndex = 479; - this.rbtnLeftNegative.UseVisualStyleBackColor = false; - this.rbtnLeftNegative.Click += new System.EventHandler(this.rbtnToolRightPositive_Click); - // - // rbtnToolRightPositive - // - this.rbtnToolRightPositive.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnToolRightPositive.BackColor = System.Drawing.Color.Transparent; - this.rbtnToolRightPositive.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnToolRightPositive.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnToolRightPositive.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnToolRightPositive.Image = global::AgOpenGPS.Properties.Resources.ToolOffsetPositiveRight; - this.rbtnToolRightPositive.Location = new System.Drawing.Point(205, 35); - this.rbtnToolRightPositive.Name = "rbtnToolRightPositive"; - this.rbtnToolRightPositive.Size = new System.Drawing.Size(166, 218); - this.rbtnToolRightPositive.TabIndex = 478; - this.rbtnToolRightPositive.UseVisualStyleBackColor = false; - this.rbtnToolRightPositive.Click += new System.EventHandler(this.rbtnToolRightPositive_Click); - // // label65 // this.label65.AutoSize = true; @@ -3801,24 +2443,6 @@ private void InitializeComponent() this.tabToolPivot.Enter += new System.EventHandler(this.tabToolPivot_Enter); this.tabToolPivot.Leave += new System.EventHandler(this.tabToolPivot_Leave); // - // btnPivotOffsetZero - // - this.btnPivotOffsetZero.BackColor = System.Drawing.Color.Transparent; - this.btnPivotOffsetZero.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnPivotOffsetZero.FlatAppearance.BorderSize = 0; - this.btnPivotOffsetZero.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnPivotOffsetZero.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnPivotOffsetZero.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnPivotOffsetZero.ForeColor = System.Drawing.Color.Black; - this.btnPivotOffsetZero.Image = global::AgOpenGPS.Properties.Resources.SteerZero; - this.btnPivotOffsetZero.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnPivotOffsetZero.Location = new System.Drawing.Point(368, 410); - this.btnPivotOffsetZero.Name = "btnPivotOffsetZero"; - this.btnPivotOffsetZero.Size = new System.Drawing.Size(114, 52); - this.btnPivotOffsetZero.TabIndex = 489; - this.btnPivotOffsetZero.UseVisualStyleBackColor = false; - this.btnPivotOffsetZero.Click += new System.EventHandler(this.btnPivotOffsetZero_Click); - // // label177 // this.label177.AutoSize = true; @@ -3856,36 +2480,6 @@ private void InitializeComponent() 0}); this.nudTrailingToolToPivotLength.Click += new System.EventHandler(this.nudTrailingToolToPivotLength_Click); // - // rbtnPivotBehindPos - // - this.rbtnPivotBehindPos.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnPivotBehindPos.BackColor = System.Drawing.Color.Transparent; - this.rbtnPivotBehindPos.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnPivotBehindPos.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnPivotBehindPos.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnPivotBehindPos.Image = global::AgOpenGPS.Properties.Resources.ToolHitchPivotOffsetNeg; - this.rbtnPivotBehindPos.Location = new System.Drawing.Point(577, 162); - this.rbtnPivotBehindPos.Name = "rbtnPivotBehindPos"; - this.rbtnPivotBehindPos.Size = new System.Drawing.Size(201, 300); - this.rbtnPivotBehindPos.TabIndex = 216; - this.rbtnPivotBehindPos.UseVisualStyleBackColor = false; - this.rbtnPivotBehindPos.Click += new System.EventHandler(this.rbtnPivotBehindPos_Click); - // - // rbtnPivotAheadNeg - // - this.rbtnPivotAheadNeg.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnPivotAheadNeg.BackColor = System.Drawing.Color.Transparent; - this.rbtnPivotAheadNeg.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.rbtnPivotAheadNeg.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnPivotAheadNeg.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnPivotAheadNeg.Image = global::AgOpenGPS.Properties.Resources.ToolHitchPivotOffsetPos; - this.rbtnPivotAheadNeg.Location = new System.Drawing.Point(72, 162); - this.rbtnPivotAheadNeg.Name = "rbtnPivotAheadNeg"; - this.rbtnPivotAheadNeg.Size = new System.Drawing.Size(201, 300); - this.rbtnPivotAheadNeg.TabIndex = 215; - this.rbtnPivotAheadNeg.UseVisualStyleBackColor = false; - this.rbtnPivotAheadNeg.Click += new System.EventHandler(this.rbtnPivotBehindPos_Click); - // // tabTSections // this.tabTSections.BackColor = System.Drawing.Color.WhiteSmoke; @@ -5396,60 +3990,6 @@ private void InitializeComponent() 0}); this.nudNumberOfSections.Click += new System.EventHandler(this.nudNumberOfSections_Click); // - // cboxSectionBoundaryControl - // - this.cboxSectionBoundaryControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxSectionBoundaryControl.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxSectionBoundaryControl.BackColor = System.Drawing.Color.AliceBlue; - this.cboxSectionBoundaryControl.BackgroundImage = global::AgOpenGPS.Properties.Resources.SectionOffBoundary; - this.cboxSectionBoundaryControl.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.cboxSectionBoundaryControl.FlatAppearance.CheckedBackColor = System.Drawing.Color.Transparent; - this.cboxSectionBoundaryControl.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; - this.cboxSectionBoundaryControl.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; - this.cboxSectionBoundaryControl.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxSectionBoundaryControl.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxSectionBoundaryControl.ForeColor = System.Drawing.Color.Black; - this.cboxSectionBoundaryControl.Location = new System.Drawing.Point(473, 508); - this.cboxSectionBoundaryControl.Name = "cboxSectionBoundaryControl"; - this.cboxSectionBoundaryControl.Size = new System.Drawing.Size(104, 52); - this.cboxSectionBoundaryControl.TabIndex = 501; - this.cboxSectionBoundaryControl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxSectionBoundaryControl.UseVisualStyleBackColor = false; - this.cboxSectionBoundaryControl.Click += new System.EventHandler(this.cboxSectionBoundaryControl_Click); - // - // pictureBox11 - // - this.pictureBox11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox11.Image = global::AgOpenGPS.Properties.Resources.SectionOffBelow; - this.pictureBox11.Location = new System.Drawing.Point(657, 448); - this.pictureBox11.Name = "pictureBox11"; - this.pictureBox11.Size = new System.Drawing.Size(116, 57); - this.pictureBox11.TabIndex = 500; - this.pictureBox11.TabStop = false; - // - // cboxIsUnique - // - this.cboxIsUnique.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxIsUnique.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxIsUnique.BackColor = System.Drawing.Color.AliceBlue; - this.cboxIsUnique.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConT_Symmetric; - this.cboxIsUnique.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.cboxIsUnique.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxIsUnique.FlatAppearance.CheckedBackColor = System.Drawing.Color.AliceBlue; - this.cboxIsUnique.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; - this.cboxIsUnique.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; - this.cboxIsUnique.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxIsUnique.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxIsUnique.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxIsUnique.Location = new System.Drawing.Point(28, 464); - this.cboxIsUnique.Name = "cboxIsUnique"; - this.cboxIsUnique.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxIsUnique.Size = new System.Drawing.Size(165, 110); - this.cboxIsUnique.TabIndex = 454; - this.cboxIsUnique.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxIsUnique.UseVisualStyleBackColor = false; - this.cboxIsUnique.Click += new System.EventHandler(this.cboxIsUnique_Click); - // // tabTSwitches // this.tabTSwitches.BackColor = System.Drawing.Color.WhiteSmoke; @@ -5476,63 +4016,6 @@ private void InitializeComponent() this.grpControls.TabStop = false; this.grpControls.Text = "Steer Switch"; // - // chkSetAutoSectionsSteer - // - this.chkSetAutoSectionsSteer.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSetAutoSectionsSteer.BackColor = System.Drawing.Color.AliceBlue; - this.chkSetAutoSectionsSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSetAutoSectionsSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSetAutoSectionsSteer.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSetAutoSectionsSteer.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSetAutoSectionsSteer.Image = global::AgOpenGPS.Properties.Resources.SectionMasterOff; - this.chkSetAutoSectionsSteer.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSetAutoSectionsSteer.Location = new System.Drawing.Point(44, 272); - this.chkSetAutoSectionsSteer.Name = "chkSetAutoSectionsSteer"; - this.chkSetAutoSectionsSteer.Size = new System.Drawing.Size(238, 71); - this.chkSetAutoSectionsSteer.TabIndex = 458; - this.chkSetAutoSectionsSteer.Text = " Auto Sections"; - this.chkSetAutoSectionsSteer.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSetAutoSectionsSteer.UseVisualStyleBackColor = false; - this.chkSetAutoSectionsSteer.Click += new System.EventHandler(this.chkSetAutoSectionsSteer_Click); - // - // chkSelectSteerSwitch - // - this.chkSelectSteerSwitch.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSelectSteerSwitch.BackColor = System.Drawing.Color.AliceBlue; - this.chkSelectSteerSwitch.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSelectSteerSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSelectSteerSwitch.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSelectSteerSwitch.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSelectSteerSwitch.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOff; - this.chkSelectSteerSwitch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSelectSteerSwitch.Location = new System.Drawing.Point(44, 56); - this.chkSelectSteerSwitch.Name = "chkSelectSteerSwitch"; - this.chkSelectSteerSwitch.Size = new System.Drawing.Size(238, 70); - this.chkSelectSteerSwitch.TabIndex = 2; - this.chkSelectSteerSwitch.Text = " Steer Switch"; - this.chkSelectSteerSwitch.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSelectSteerSwitch.UseVisualStyleBackColor = false; - this.chkSelectSteerSwitch.Click += new System.EventHandler(this.chkSelectSteerSwitch_Click); - // - // chkSetManualSectionsSteer - // - this.chkSetManualSectionsSteer.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSetManualSectionsSteer.BackColor = System.Drawing.Color.AliceBlue; - this.chkSetManualSectionsSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSetManualSectionsSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSetManualSectionsSteer.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSetManualSectionsSteer.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSetManualSectionsSteer.Image = global::AgOpenGPS.Properties.Resources.ManualOff; - this.chkSetManualSectionsSteer.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSetManualSectionsSteer.Location = new System.Drawing.Point(44, 172); - this.chkSetManualSectionsSteer.Name = "chkSetManualSectionsSteer"; - this.chkSetManualSectionsSteer.Size = new System.Drawing.Size(238, 71); - this.chkSetManualSectionsSteer.TabIndex = 457; - this.chkSetManualSectionsSteer.Text = " Manual Sections"; - this.chkSetManualSectionsSteer.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSetManualSectionsSteer.UseVisualStyleBackColor = false; - this.chkSetManualSectionsSteer.Click += new System.EventHandler(this.chkSetManualSectionsSteer_Click); - // // grpSwitch // this.grpSwitch.BackColor = System.Drawing.Color.Transparent; @@ -5549,107 +4032,29 @@ private void InitializeComponent() this.grpSwitch.TabStop = false; this.grpSwitch.Text = "Work Switch"; // - // chkSelectWorkSwitch + // tabTSettings // - this.chkSelectWorkSwitch.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSelectWorkSwitch.BackColor = System.Drawing.Color.AliceBlue; - this.chkSelectWorkSwitch.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSelectWorkSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSelectWorkSwitch.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSelectWorkSwitch.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSelectWorkSwitch.Image = global::AgOpenGPS.Properties.Resources.HydraulicLiftOff; - this.chkSelectWorkSwitch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSelectWorkSwitch.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.chkSelectWorkSwitch.Location = new System.Drawing.Point(38, 56); - this.chkSelectWorkSwitch.Name = "chkSelectWorkSwitch"; - this.chkSelectWorkSwitch.Size = new System.Drawing.Size(238, 70); - this.chkSelectWorkSwitch.TabIndex = 1; - this.chkSelectWorkSwitch.Text = " Work Switch"; - this.chkSelectWorkSwitch.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSelectWorkSwitch.UseVisualStyleBackColor = false; - this.chkSelectWorkSwitch.Click += new System.EventHandler(this.chkSelectWorkSwitch_Click); + this.tabTSettings.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabTSettings.Controls.Add(this.label66); + this.tabTSettings.Controls.Add(this.label16); + this.tabTSettings.Controls.Add(this.label14); + this.tabTSettings.Controls.Add(this.label10); + this.tabTSettings.Controls.Add(this.nudLookAheadOff); + this.tabTSettings.Controls.Add(this.nudTurnOffDelay); + this.tabTSettings.Controls.Add(this.nudLookAhead); + this.tabTSettings.Controls.Add(this.pictureBox18); + this.tabTSettings.Controls.Add(this.pictureBox4); + this.tabTSettings.Controls.Add(this.pictureBox3); + this.tabTSettings.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.tabTSettings.Location = new System.Drawing.Point(4, 44); + this.tabTSettings.Name = "tabTSettings"; + this.tabTSettings.Size = new System.Drawing.Size(854, 584); + this.tabTSettings.TabIndex = 10; + this.tabTSettings.Text = "TSettings"; + this.tabTSettings.Enter += new System.EventHandler(this.tabTSettings_Enter); + this.tabTSettings.Leave += new System.EventHandler(this.tabTSettings_Leave); // - // chkSetAutoSections - // - this.chkSetAutoSections.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSetAutoSections.BackColor = System.Drawing.Color.AliceBlue; - this.chkSetAutoSections.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSetAutoSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSetAutoSections.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSetAutoSections.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSetAutoSections.Image = global::AgOpenGPS.Properties.Resources.SectionMasterOff; - this.chkSetAutoSections.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSetAutoSections.Location = new System.Drawing.Point(38, 272); - this.chkSetAutoSections.Name = "chkSetAutoSections"; - this.chkSetAutoSections.Size = new System.Drawing.Size(238, 71); - this.chkSetAutoSections.TabIndex = 456; - this.chkSetAutoSections.Text = " Auto Sections"; - this.chkSetAutoSections.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSetAutoSections.UseVisualStyleBackColor = false; - this.chkSetAutoSections.Click += new System.EventHandler(this.chkSetAutoSections_Click); - // - // chkSetManualSections - // - this.chkSetManualSections.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSetManualSections.BackColor = System.Drawing.Color.AliceBlue; - this.chkSetManualSections.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSetManualSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSetManualSections.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSetManualSections.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSetManualSections.Image = global::AgOpenGPS.Properties.Resources.ManualOff; - this.chkSetManualSections.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.chkSetManualSections.Location = new System.Drawing.Point(38, 172); - this.chkSetManualSections.Name = "chkSetManualSections"; - this.chkSetManualSections.Size = new System.Drawing.Size(238, 71); - this.chkSetManualSections.TabIndex = 0; - this.chkSetManualSections.Text = " Manual Sections"; - this.chkSetManualSections.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.chkSetManualSections.UseVisualStyleBackColor = false; - this.chkSetManualSections.Click += new System.EventHandler(this.chkSetManualSections_Click); - // - // chkWorkSwActiveLow - // - this.chkWorkSwActiveLow.Appearance = System.Windows.Forms.Appearance.Button; - this.chkWorkSwActiveLow.BackColor = System.Drawing.Color.AliceBlue; - this.chkWorkSwActiveLow.Checked = true; - this.chkWorkSwActiveLow.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkWorkSwActiveLow.FlatAppearance.CheckedBackColor = System.Drawing.Color.AliceBlue; - this.chkWorkSwActiveLow.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkWorkSwActiveLow.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkWorkSwActiveLow.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkWorkSwActiveLow.Image = global::AgOpenGPS.Properties.Resources.SwitchActiveClosed; - this.chkWorkSwActiveLow.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.chkWorkSwActiveLow.Location = new System.Drawing.Point(38, 373); - this.chkWorkSwActiveLow.Name = "chkWorkSwActiveLow"; - this.chkWorkSwActiveLow.Size = new System.Drawing.Size(238, 71); - this.chkWorkSwActiveLow.TabIndex = 0; - this.chkWorkSwActiveLow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkWorkSwActiveLow.UseVisualStyleBackColor = false; - this.chkWorkSwActiveLow.Click += new System.EventHandler(this.chkWorkSwActiveLow_Click); - // - // tabTSettings - // - this.tabTSettings.BackColor = System.Drawing.Color.WhiteSmoke; - this.tabTSettings.Controls.Add(this.label66); - this.tabTSettings.Controls.Add(this.label16); - this.tabTSettings.Controls.Add(this.label14); - this.tabTSettings.Controls.Add(this.label10); - this.tabTSettings.Controls.Add(this.nudLookAheadOff); - this.tabTSettings.Controls.Add(this.nudTurnOffDelay); - this.tabTSettings.Controls.Add(this.nudLookAhead); - this.tabTSettings.Controls.Add(this.pictureBox18); - this.tabTSettings.Controls.Add(this.pictureBox4); - this.tabTSettings.Controls.Add(this.pictureBox3); - this.tabTSettings.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.tabTSettings.Location = new System.Drawing.Point(4, 44); - this.tabTSettings.Name = "tabTSettings"; - this.tabTSettings.Size = new System.Drawing.Size(854, 584); - this.tabTSettings.TabIndex = 10; - this.tabTSettings.Text = "TSettings"; - this.tabTSettings.Enter += new System.EventHandler(this.tabTSettings_Enter); - this.tabTSettings.Leave += new System.EventHandler(this.tabTSettings_Leave); - // - // label66 + // label66 // this.label66.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label66.BackColor = System.Drawing.Color.Transparent; @@ -5795,39 +4200,6 @@ private void InitializeComponent() 65536}); this.nudLookAhead.Click += new System.EventHandler(this.nudLookAhead_Click); // - // pictureBox18 - // - this.pictureBox18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox18.Image = global::AgOpenGPS.Properties.Resources.SectionLookAheadDelay; - this.pictureBox18.Location = new System.Drawing.Point(574, 108); - this.pictureBox18.Name = "pictureBox18"; - this.pictureBox18.Size = new System.Drawing.Size(279, 353); - this.pictureBox18.TabIndex = 133; - this.pictureBox18.TabStop = false; - // - // pictureBox4 - // - this.pictureBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox4.Image = global::AgOpenGPS.Properties.Resources.SectionLookAheadOff; - this.pictureBox4.Location = new System.Drawing.Point(287, 108); - this.pictureBox4.Name = "pictureBox4"; - this.pictureBox4.Size = new System.Drawing.Size(279, 353); - this.pictureBox4.TabIndex = 132; - this.pictureBox4.TabStop = false; - // - // pictureBox3 - // - this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox3.Image = global::AgOpenGPS.Properties.Resources.SectionOnLookAhead; - this.pictureBox3.Location = new System.Drawing.Point(0, 108); - this.pictureBox3.Name = "pictureBox3"; - this.pictureBox3.Size = new System.Drawing.Size(279, 353); - this.pictureBox3.TabIndex = 127; - this.pictureBox3.TabStop = false; - // // tabDHeading // this.tabDHeading.BackColor = System.Drawing.Color.WhiteSmoke; @@ -5922,16 +4294,6 @@ private void InitializeComponent() 65536}); this.nudDualReverseDistance.Click += new System.EventHandler(this.nudDualReverseDistance_Click); // - // pictureBox13 - // - this.pictureBox13.BackgroundImage = global::AgOpenGPS.Properties.Resources.Con_SourcesHead; - this.pictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox13.Location = new System.Drawing.Point(19, 52); - this.pictureBox13.Name = "pictureBox13"; - this.pictureBox13.Size = new System.Drawing.Size(130, 109); - this.pictureBox13.TabIndex = 471; - this.pictureBox13.TabStop = false; - // // nudDualHeadingOffset // this.nudDualHeadingOffset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -6180,76 +4542,6 @@ private void InitializeComponent() this.headingGroupBox.TabStop = false; this.headingGroupBox.Text = "Antenna Type"; // - // rbtnHeadingHDT - // - this.rbtnHeadingHDT.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnHeadingHDT.BackColor = System.Drawing.Color.AliceBlue; - this.rbtnHeadingHDT.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnHeadingHDT.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnHeadingHDT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.rbtnHeadingHDT.ForeColor = System.Drawing.Color.Black; - this.rbtnHeadingHDT.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesGPSDual; - this.rbtnHeadingHDT.Location = new System.Drawing.Point(19, 42); - this.rbtnHeadingHDT.Name = "rbtnHeadingHDT"; - this.rbtnHeadingHDT.Size = new System.Drawing.Size(117, 82); - this.rbtnHeadingHDT.TabIndex = 2; - this.rbtnHeadingHDT.Text = "Dual"; - this.rbtnHeadingHDT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.rbtnHeadingHDT.UseVisualStyleBackColor = false; - this.rbtnHeadingHDT.CheckedChanged += new System.EventHandler(this.rbtnHeadingFix_CheckedChanged); - // - // rbtnHeadingFix - // - this.rbtnHeadingFix.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnHeadingFix.BackColor = System.Drawing.Color.AliceBlue; - this.rbtnHeadingFix.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnHeadingFix.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnHeadingFix.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.rbtnHeadingFix.ForeColor = System.Drawing.Color.Black; - this.rbtnHeadingFix.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesGPSSingle; - this.rbtnHeadingFix.Location = new System.Drawing.Point(214, 42); - this.rbtnHeadingFix.Name = "rbtnHeadingFix"; - this.rbtnHeadingFix.Size = new System.Drawing.Size(117, 82); - this.rbtnHeadingFix.TabIndex = 0; - this.rbtnHeadingFix.Text = "Fix"; - this.rbtnHeadingFix.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.rbtnHeadingFix.UseVisualStyleBackColor = false; - this.rbtnHeadingFix.CheckedChanged += new System.EventHandler(this.rbtnHeadingFix_CheckedChanged); - // - // cboxIsRTK_KillAutoSteer - // - this.cboxIsRTK_KillAutoSteer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxIsRTK_KillAutoSteer.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxIsRTK_KillAutoSteer.BackColor = System.Drawing.Color.AliceBlue; - this.cboxIsRTK_KillAutoSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxIsRTK_KillAutoSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxIsRTK_KillAutoSteer.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxIsRTK_KillAutoSteer.ForeColor = System.Drawing.Color.Black; - this.cboxIsRTK_KillAutoSteer.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOff; - this.cboxIsRTK_KillAutoSteer.Location = new System.Drawing.Point(242, 477); - this.cboxIsRTK_KillAutoSteer.Name = "cboxIsRTK_KillAutoSteer"; - this.cboxIsRTK_KillAutoSteer.Size = new System.Drawing.Size(103, 90); - this.cboxIsRTK_KillAutoSteer.TabIndex = 467; - this.cboxIsRTK_KillAutoSteer.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxIsRTK_KillAutoSteer.UseVisualStyleBackColor = false; - // - // cboxIsRTK - // - this.cboxIsRTK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxIsRTK.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxIsRTK.BackColor = System.Drawing.Color.AliceBlue; - this.cboxIsRTK.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxIsRTK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxIsRTK.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxIsRTK.ForeColor = System.Drawing.Color.Black; - this.cboxIsRTK.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesRTKAlarm; - this.cboxIsRTK.Location = new System.Drawing.Point(61, 477); - this.cboxIsRTK.Name = "cboxIsRTK"; - this.cboxIsRTK.Size = new System.Drawing.Size(103, 90); - this.cboxIsRTK.TabIndex = 309; - this.cboxIsRTK.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxIsRTK.UseVisualStyleBackColor = false; - // // tabDRoll // this.tabDRoll.BackColor = System.Drawing.Color.WhiteSmoke; @@ -6278,49 +4570,6 @@ private void InitializeComponent() this.tabDRoll.Enter += new System.EventHandler(this.tabDRoll_Enter); this.tabDRoll.Leave += new System.EventHandler(this.tabDRoll_Leave); // - // btnRollOffsetUp - // - this.btnRollOffsetUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnRollOffsetUp.FlatAppearance.BorderSize = 0; - this.btnRollOffsetUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRollOffsetUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnRollOffsetUp.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnRollOffsetUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; - this.btnRollOffsetUp.Location = new System.Drawing.Point(416, 214); - this.btnRollOffsetUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnRollOffsetUp.Name = "btnRollOffsetUp"; - this.btnRollOffsetUp.Size = new System.Drawing.Size(59, 69); - this.btnRollOffsetUp.TabIndex = 487; - this.btnRollOffsetUp.UseVisualStyleBackColor = true; - this.btnRollOffsetUp.Click += new System.EventHandler(this.btnRollOffsetUp_Click); - // - // btnRollOffsetDown - // - this.btnRollOffsetDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnRollOffsetDown.FlatAppearance.BorderSize = 0; - this.btnRollOffsetDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRollOffsetDown.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnRollOffsetDown.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnRollOffsetDown.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; - this.btnRollOffsetDown.Location = new System.Drawing.Point(342, 215); - this.btnRollOffsetDown.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnRollOffsetDown.Name = "btnRollOffsetDown"; - this.btnRollOffsetDown.Size = new System.Drawing.Size(59, 69); - this.btnRollOffsetDown.TabIndex = 486; - this.btnRollOffsetDown.UseVisualStyleBackColor = true; - this.btnRollOffsetDown.Click += new System.EventHandler(this.btnRollOffsetDown_Click); - // - // pictureBox9 - // - this.pictureBox9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox9.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConD_RollHelper; - this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.pictureBox9.Location = new System.Drawing.Point(577, 343); - this.pictureBox9.Name = "pictureBox9"; - this.pictureBox9.Size = new System.Drawing.Size(154, 217); - this.pictureBox9.TabIndex = 485; - this.pictureBox9.TabStop = false; - // // label78 // this.label78.AutoSize = true; @@ -6427,77 +4676,7 @@ private void InitializeComponent() this.hsbarRollFilter.Value = 5; this.hsbarRollFilter.ValueChanged += new System.EventHandler(this.hsbarRollFilter_ValueChanged); // - // btnResetIMU - // - this.btnResetIMU.BackColor = System.Drawing.Color.Transparent; - this.btnResetIMU.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConDa_ResetIMU; - this.btnResetIMU.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnResetIMU.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnResetIMU.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnResetIMU.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnResetIMU.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnResetIMU.ForeColor = System.Drawing.Color.Black; - this.btnResetIMU.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnResetIMU.Location = new System.Drawing.Point(593, 45); - this.btnResetIMU.Name = "btnResetIMU"; - this.btnResetIMU.Size = new System.Drawing.Size(130, 95); - this.btnResetIMU.TabIndex = 85; - this.btnResetIMU.UseVisualStyleBackColor = false; - this.btnResetIMU.Click += new System.EventHandler(this.btnResetIMU_Click); - // - // btnZeroRoll - // - this.btnZeroRoll.BackColor = System.Drawing.Color.Transparent; - this.btnZeroRoll.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnZeroRoll.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnZeroRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnZeroRoll.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnZeroRoll.ForeColor = System.Drawing.Color.Black; - this.btnZeroRoll.Image = global::AgOpenGPS.Properties.Resources.ConDa_RollSetZero; - this.btnZeroRoll.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnZeroRoll.Location = new System.Drawing.Point(86, 202); - this.btnZeroRoll.Name = "btnZeroRoll"; - this.btnZeroRoll.Size = new System.Drawing.Size(130, 95); - this.btnZeroRoll.TabIndex = 76; - this.btnZeroRoll.UseVisualStyleBackColor = false; - this.btnZeroRoll.Click += new System.EventHandler(this.btnZeroRoll_Click); - // - // btnRemoveZeroOffset - // - this.btnRemoveZeroOffset.BackColor = System.Drawing.Color.Transparent; - this.btnRemoveZeroOffset.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnRemoveZeroOffset.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnRemoveZeroOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRemoveZeroOffset.Font = new System.Drawing.Font("Tahoma", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnRemoveZeroOffset.ForeColor = System.Drawing.Color.Black; - this.btnRemoveZeroOffset.Image = global::AgOpenGPS.Properties.Resources.ConDa_RemoveOffset; - this.btnRemoveZeroOffset.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnRemoveZeroOffset.Location = new System.Drawing.Point(86, 46); - this.btnRemoveZeroOffset.Name = "btnRemoveZeroOffset"; - this.btnRemoveZeroOffset.Size = new System.Drawing.Size(130, 95); - this.btnRemoveZeroOffset.TabIndex = 76; - this.btnRemoveZeroOffset.UseVisualStyleBackColor = false; - this.btnRemoveZeroOffset.Click += new System.EventHandler(this.btnRemoveZeroOffset_Click); - // - // cboxDataInvertRoll - // - this.cboxDataInvertRoll.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxDataInvertRoll.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxDataInvertRoll.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxDataInvertRoll.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxDataInvertRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxDataInvertRoll.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxDataInvertRoll.ForeColor = System.Drawing.Color.Black; - this.cboxDataInvertRoll.Image = global::AgOpenGPS.Properties.Resources.ConDa_InvertRoll; - this.cboxDataInvertRoll.Location = new System.Drawing.Point(593, 201); - this.cboxDataInvertRoll.Name = "cboxDataInvertRoll"; - this.cboxDataInvertRoll.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxDataInvertRoll.Size = new System.Drawing.Size(130, 95); - this.cboxDataInvertRoll.TabIndex = 452; - this.cboxDataInvertRoll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxDataInvertRoll.UseVisualStyleBackColor = false; - // - // tabUTurn + // tabUTurn // this.tabUTurn.BackColor = System.Drawing.Color.WhiteSmoke; this.tabUTurn.Controls.Add(this.label68); @@ -6652,118 +4831,6 @@ private void InitializeComponent() this.nudTurnDistanceFromBoundary.Click += new System.EventHandler(this.nudTurnDistanceFromBoundary_Click); this.nudTurnDistanceFromBoundary.Enter += new System.EventHandler(this.nudTurnDistanceFromBoundary_Click); // - // label64 - // - this.label64.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label64.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.label64.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnRadius; - this.label64.Location = new System.Drawing.Point(602, 27); - this.label64.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.label64.Name = "label64"; - this.label64.Size = new System.Drawing.Size(109, 107); - this.label64.TabIndex = 470; - this.label64.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // - // btnTurnSmoothingUp - // - this.btnTurnSmoothingUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnTurnSmoothingUp.FlatAppearance.BorderSize = 0; - this.btnTurnSmoothingUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnTurnSmoothingUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnTurnSmoothingUp.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnTurnSmoothingUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; - this.btnTurnSmoothingUp.Location = new System.Drawing.Point(387, 317); - this.btnTurnSmoothingUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnTurnSmoothingUp.Name = "btnTurnSmoothingUp"; - this.btnTurnSmoothingUp.Size = new System.Drawing.Size(59, 69); - this.btnTurnSmoothingUp.TabIndex = 466; - this.btnTurnSmoothingUp.UseVisualStyleBackColor = true; - this.btnTurnSmoothingUp.Click += new System.EventHandler(this.btnTurnSmoothingUp_Click); - // - // btnTurnSmoothingDown - // - this.btnTurnSmoothingDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnTurnSmoothingDown.FlatAppearance.BorderSize = 0; - this.btnTurnSmoothingDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnTurnSmoothingDown.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnTurnSmoothingDown.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnTurnSmoothingDown.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; - this.btnTurnSmoothingDown.Location = new System.Drawing.Point(294, 317); - this.btnTurnSmoothingDown.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnTurnSmoothingDown.Name = "btnTurnSmoothingDown"; - this.btnTurnSmoothingDown.Size = new System.Drawing.Size(59, 69); - this.btnTurnSmoothingDown.TabIndex = 465; - this.btnTurnSmoothingDown.UseVisualStyleBackColor = true; - this.btnTurnSmoothingDown.Click += new System.EventHandler(this.btnTurnSmoothingDown_Click); - // - // label59 - // - this.label59.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label59.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.label59.Image = global::AgOpenGPS.Properties.Resources.ConU_UTurnSmooth; - this.label59.Location = new System.Drawing.Point(313, 141); - this.label59.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.label59.Name = "label59"; - this.label59.Size = new System.Drawing.Size(109, 120); - this.label59.TabIndex = 467; - this.label59.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // - // label58 - // - this.label58.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label58.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.label58.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnDistance; - this.label58.Location = new System.Drawing.Point(602, 308); - this.label58.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.label58.Name = "label58"; - this.label58.Size = new System.Drawing.Size(109, 119); - this.label58.TabIndex = 463; - this.label58.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // - // lblWhenTrig - // - this.lblWhenTrig.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblWhenTrig.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.lblWhenTrig.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnLength; - this.lblWhenTrig.Location = new System.Drawing.Point(84, 141); - this.lblWhenTrig.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lblWhenTrig.Name = "lblWhenTrig"; - this.lblWhenTrig.Size = new System.Drawing.Size(116, 133); - this.lblWhenTrig.TabIndex = 458; - this.lblWhenTrig.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // - // btnDistanceUp - // - this.btnDistanceUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnDistanceUp.FlatAppearance.BorderSize = 0; - this.btnDistanceUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnDistanceUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnDistanceUp.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnDistanceUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; - this.btnDistanceUp.Location = new System.Drawing.Point(160, 317); - this.btnDistanceUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnDistanceUp.Name = "btnDistanceUp"; - this.btnDistanceUp.Size = new System.Drawing.Size(59, 69); - this.btnDistanceUp.TabIndex = 457; - this.btnDistanceUp.UseVisualStyleBackColor = true; - this.btnDistanceUp.Click += new System.EventHandler(this.btnDistanceUp_Click); - // - // btnDistanceDn - // - this.btnDistanceDn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnDistanceDn.FlatAppearance.BorderSize = 0; - this.btnDistanceDn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnDistanceDn.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnDistanceDn.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnDistanceDn.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; - this.btnDistanceDn.Location = new System.Drawing.Point(67, 317); - this.btnDistanceDn.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnDistanceDn.Name = "btnDistanceDn"; - this.btnDistanceDn.Size = new System.Drawing.Size(59, 69); - this.btnDistanceDn.TabIndex = 456; - this.btnDistanceDn.UseVisualStyleBackColor = true; - this.btnDistanceDn.Click += new System.EventHandler(this.btnDistanceDn_Click); - // // tabRelay // this.tabRelay.BackColor = System.Drawing.Color.WhiteSmoke; @@ -7891,63 +5958,6 @@ private void InitializeComponent() this.label123.Text = "Pin 1"; this.label123.TextAlign = System.Drawing.ContentAlignment.BottomCenter; // - // btnRelaySetDefaultConfig - // - this.btnRelaySetDefaultConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnRelaySetDefaultConfig.BackColor = System.Drawing.Color.Transparent; - this.btnRelaySetDefaultConfig.FlatAppearance.BorderSize = 0; - this.btnRelaySetDefaultConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRelaySetDefaultConfig.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; - this.btnRelaySetDefaultConfig.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnRelaySetDefaultConfig.Location = new System.Drawing.Point(148, 500); - this.btnRelaySetDefaultConfig.Name = "btnRelaySetDefaultConfig"; - this.btnRelaySetDefaultConfig.Size = new System.Drawing.Size(133, 85); - this.btnRelaySetDefaultConfig.TabIndex = 532; - this.btnRelaySetDefaultConfig.UseVisualStyleBackColor = false; - this.btnRelaySetDefaultConfig.Click += new System.EventHandler(this.btnRelaySetDefaultConfig_Click); - // - // btnRelayResetConfigToNone - // - this.btnRelayResetConfigToNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnRelayResetConfigToNone.BackColor = System.Drawing.Color.Transparent; - this.btnRelayResetConfigToNone.FlatAppearance.BorderSize = 0; - this.btnRelayResetConfigToNone.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRelayResetConfigToNone.Image = global::AgOpenGPS.Properties.Resources.back_button; - this.btnRelayResetConfigToNone.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnRelayResetConfigToNone.Location = new System.Drawing.Point(0, 502); - this.btnRelayResetConfigToNone.Name = "btnRelayResetConfigToNone"; - this.btnRelayResetConfigToNone.Size = new System.Drawing.Size(133, 85); - this.btnRelayResetConfigToNone.TabIndex = 531; - this.btnRelayResetConfigToNone.UseVisualStyleBackColor = false; - this.btnRelayResetConfigToNone.Click += new System.EventHandler(this.btnRelayResetConfigToNone_Click); - // - // pboxSendRelay - // - this.pboxSendRelay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.pboxSendRelay.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConSt_Mandatory1; - this.pboxSendRelay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.pboxSendRelay.Location = new System.Drawing.Point(751, 494); - this.pboxSendRelay.Name = "pboxSendRelay"; - this.pboxSendRelay.Size = new System.Drawing.Size(93, 85); - this.pboxSendRelay.TabIndex = 487; - this.pboxSendRelay.TabStop = false; - this.pboxSendRelay.Visible = false; - // - // btnSendRelayConfigPGN - // - this.btnSendRelayConfigPGN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnSendRelayConfigPGN.BackColor = System.Drawing.Color.Transparent; - this.btnSendRelayConfigPGN.FlatAppearance.BorderSize = 0; - this.btnSendRelayConfigPGN.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSendRelayConfigPGN.Image = global::AgOpenGPS.Properties.Resources.ToolAcceptChange; - this.btnSendRelayConfigPGN.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnSendRelayConfigPGN.Location = new System.Drawing.Point(616, 507); - this.btnSendRelayConfigPGN.Name = "btnSendRelayConfigPGN"; - this.btnSendRelayConfigPGN.Size = new System.Drawing.Size(133, 62); - this.btnSendRelayConfigPGN.TabIndex = 485; - this.btnSendRelayConfigPGN.UseVisualStyleBackColor = false; - this.btnSendRelayConfigPGN.Click += new System.EventHandler(this.btnSendRelayConfigPGN_Click); - // // tabAMachine // this.tabAMachine.BackColor = System.Drawing.Color.WhiteSmoke; @@ -8148,16 +6158,6 @@ private void InitializeComponent() this.cboxIsHydOn.UseVisualStyleBackColor = false; this.cboxIsHydOn.CheckStateChanged += new System.EventHandler(this.cboxIsHydOn_CheckStateChanged); // - // pictureBox6 - // - this.pictureBox6.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConMa_LiftLowerTime; - this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox6.Location = new System.Drawing.Point(352, 226); - this.pictureBox6.Name = "pictureBox6"; - this.pictureBox6.Size = new System.Drawing.Size(177, 154); - this.pictureBox6.TabIndex = 456; - this.pictureBox6.TabStop = false; - // // nudLowerTime // this.nudLowerTime.BackColor = System.Drawing.Color.AliceBlue; @@ -8186,16 +6186,6 @@ private void InitializeComponent() 0}); this.nudLowerTime.Click += new System.EventHandler(this.nudLowerTime_Click); // - // pictureBox7 - // - this.pictureBox7.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConMa_LiftRaiseTime; - this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.pictureBox7.Location = new System.Drawing.Point(352, 26); - this.pictureBox7.Name = "pictureBox7"; - this.pictureBox7.Size = new System.Drawing.Size(177, 154); - this.pictureBox7.TabIndex = 457; - this.pictureBox7.TabStop = false; - // // nudRaiseTime // this.nudRaiseTime.BackColor = System.Drawing.Color.AliceBlue; @@ -8360,56 +6350,7 @@ private void InitializeComponent() 0}); this.nudUser1.Click += new System.EventHandler(this.nudUser1_Click); // - // pboxSendMachine - // - this.pboxSendMachine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pboxSendMachine.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConSt_Mandatory1; - this.pboxSendMachine.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.pboxSendMachine.Location = new System.Drawing.Point(712, 412); - this.pboxSendMachine.Name = "pboxSendMachine"; - this.pboxSendMachine.Size = new System.Drawing.Size(88, 79); - this.pboxSendMachine.TabIndex = 483; - this.pboxSendMachine.TabStop = false; - this.pboxSendMachine.Visible = false; - // - // cboxMachInvertRelays - // - this.cboxMachInvertRelays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxMachInvertRelays.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxMachInvertRelays.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxMachInvertRelays.Checked = true; - this.cboxMachInvertRelays.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxMachInvertRelays.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxMachInvertRelays.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxMachInvertRelays.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxMachInvertRelays.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxMachInvertRelays.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxMachInvertRelays.Image = global::AgOpenGPS.Properties.Resources.ConSt_InvertRelay; - this.cboxMachInvertRelays.Location = new System.Drawing.Point(116, 462); - this.cboxMachInvertRelays.Name = "cboxMachInvertRelays"; - this.cboxMachInvertRelays.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxMachInvertRelays.Size = new System.Drawing.Size(192, 98); - this.cboxMachInvertRelays.TabIndex = 2; - this.cboxMachInvertRelays.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxMachInvertRelays.UseVisualStyleBackColor = false; - this.cboxMachInvertRelays.Click += new System.EventHandler(this.Enable_AlertM_Click); - // - // btnSendMachinePGN - // - this.btnSendMachinePGN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnSendMachinePGN.BackColor = System.Drawing.Color.Transparent; - this.btnSendMachinePGN.FlatAppearance.BorderSize = 0; - this.btnSendMachinePGN.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSendMachinePGN.Image = global::AgOpenGPS.Properties.Resources.ToolAcceptChange; - this.btnSendMachinePGN.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnSendMachinePGN.Location = new System.Drawing.Point(704, 494); - this.btnSendMachinePGN.Name = "btnSendMachinePGN"; - this.btnSendMachinePGN.Size = new System.Drawing.Size(103, 62); - this.btnSendMachinePGN.TabIndex = 1; - this.btnSendMachinePGN.UseVisualStyleBackColor = false; - this.btnSendMachinePGN.Click += new System.EventHandler(this.btnSendMachinePGN_Click); - // - // tabTram + // tabTram // this.tabTram.BackColor = System.Drawing.Color.WhiteSmoke; this.tabTram.Controls.Add(this.chkBoxOverrideTramControlPos); @@ -8427,25 +6368,6 @@ private void InitializeComponent() this.tabTram.Enter += new System.EventHandler(this.tabTram_Enter); this.tabTram.Leave += new System.EventHandler(this.tabTram_Leave); // - // chkBoxOverrideTramControlPos - // - this.chkBoxOverrideTramControlPos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkBoxOverrideTramControlPos.Appearance = System.Windows.Forms.Appearance.Button; - this.chkBoxOverrideTramControlPos.BackColor = System.Drawing.Color.Transparent; - this.chkBoxOverrideTramControlPos.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkBoxOverrideTramControlPos.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkBoxOverrideTramControlPos.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkBoxOverrideTramControlPos.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkBoxOverrideTramControlPos.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.chkBoxOverrideTramControlPos.Image = global::AgOpenGPS.Properties.Resources.ConT_TramOverride; - this.chkBoxOverrideTramControlPos.Location = new System.Drawing.Point(172, 306); - this.chkBoxOverrideTramControlPos.Name = "chkBoxOverrideTramControlPos"; - this.chkBoxOverrideTramControlPos.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkBoxOverrideTramControlPos.Size = new System.Drawing.Size(282, 232); - this.chkBoxOverrideTramControlPos.TabIndex = 484; - this.chkBoxOverrideTramControlPos.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkBoxOverrideTramControlPos.UseVisualStyleBackColor = false; - // // label85 // this.label85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -8516,26 +6438,13 @@ private void InitializeComponent() 0}); this.nudTramWidth.Click += new System.EventHandler(this.nudTramWidth_Click); // - // pictureBox8 - // - this.pictureBox8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.pictureBox8.Image = global::AgOpenGPS.Properties.Resources.ConT_TramSpacing; - this.pictureBox8.Location = new System.Drawing.Point(172, 31); - this.pictureBox8.Name = "pictureBox8"; - this.pictureBox8.Size = new System.Drawing.Size(179, 195); - this.pictureBox8.TabIndex = 119; - this.pictureBox8.TabStop = false; - // // tabBtns // this.tabBtns.BackColor = System.Drawing.Color.WhiteSmoke; this.tabBtns.Controls.Add(this.label91); - this.tabBtns.Controls.Add(this.cboxSectionsSound); this.tabBtns.Controls.Add(this.label62); this.tabBtns.Controls.Add(this.label54); - this.tabBtns.Controls.Add(this.cboxFeatureNudge); this.tabBtns.Controls.Add(this.label92); - this.tabBtns.Controls.Add(this.btnRightMenuOrder); this.tabBtns.Controls.Add(this.label61); this.tabBtns.Controls.Add(this.label121); this.tabBtns.Controls.Add(this.label119); @@ -8554,6 +6463,10 @@ private void InitializeComponent() this.tabBtns.Controls.Add(this.label81); this.tabBtns.Controls.Add(this.label80); this.tabBtns.Controls.Add(this.label71); + this.tabBtns.Controls.Add(this.label93); + this.tabBtns.Controls.Add(this.cboxSectionsSound); + this.tabBtns.Controls.Add(this.cboxFeatureNudge); + this.tabBtns.Controls.Add(this.btnRightMenuOrder); this.tabBtns.Controls.Add(this.cboxAutoStartAgIO); this.tabBtns.Controls.Add(this.cboxHydLiftSound); this.tabBtns.Controls.Add(this.cboxTurnSound); @@ -8568,7 +6481,6 @@ private void InitializeComponent() this.tabBtns.Controls.Add(this.cboxFeatureBoundary); this.tabBtns.Controls.Add(this.cboxFeatureHeadland); this.tabBtns.Controls.Add(this.cboxFeatureTram); - this.tabBtns.Controls.Add(this.label93); this.tabBtns.Location = new System.Drawing.Point(4, 44); this.tabBtns.Name = "tabBtns"; this.tabBtns.Size = new System.Drawing.Size(854, 584); @@ -8589,28 +6501,6 @@ private void InitializeComponent() this.label91.TabIndex = 526; this.label91.Text = "Sections"; // - // cboxSectionsSound - // - this.cboxSectionsSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxSectionsSound.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxSectionsSound.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxSectionsSound.Checked = true; - this.cboxSectionsSound.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxSectionsSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxSectionsSound.FlatAppearance.BorderSize = 2; - this.cboxSectionsSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxSectionsSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxSectionsSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxSectionsSound.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxSectionsSound.Image = global::AgOpenGPS.Properties.Resources.ConF_SoundSections; - this.cboxSectionsSound.Location = new System.Drawing.Point(719, 404); - this.cboxSectionsSound.Name = "cboxSectionsSound"; - this.cboxSectionsSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxSectionsSound.Size = new System.Drawing.Size(77, 77); - this.cboxSectionsSound.TabIndex = 525; - this.cboxSectionsSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxSectionsSound.UseVisualStyleBackColor = false; - // // label62 // this.label62.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -8637,29 +6527,6 @@ private void InitializeComponent() this.label54.Text = "Nudge Controls"; this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // cboxFeatureNudge - // - this.cboxFeatureNudge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureNudge.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureNudge.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureNudge.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.cboxFeatureNudge.Checked = true; - this.cboxFeatureNudge.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureNudge.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureNudge.FlatAppearance.BorderSize = 2; - this.cboxFeatureNudge.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureNudge.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureNudge.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureNudge.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureNudge.Image = global::AgOpenGPS.Properties.Resources.SnapToPivot; - this.cboxFeatureNudge.Location = new System.Drawing.Point(424, 237); - this.cboxFeatureNudge.Name = "cboxFeatureNudge"; - this.cboxFeatureNudge.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureNudge.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureNudge.TabIndex = 522; - this.cboxFeatureNudge.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureNudge.UseVisualStyleBackColor = false; - // // label92 // this.label92.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -8673,24 +6540,6 @@ private void InitializeComponent() this.label92.Text = "Right Menu"; this.label92.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // btnRightMenuOrder - // - this.btnRightMenuOrder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnRightMenuOrder.BackColor = System.Drawing.Color.Transparent; - this.btnRightMenuOrder.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.btnRightMenuOrder.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; - this.btnRightMenuOrder.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnRightMenuOrder.Font = new System.Drawing.Font("Tahoma", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnRightMenuOrder.ForeColor = System.Drawing.Color.Black; - this.btnRightMenuOrder.Image = global::AgOpenGPS.Properties.Resources.Con_RightMenuEdit; - this.btnRightMenuOrder.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnRightMenuOrder.Location = new System.Drawing.Point(415, 404); - this.btnRightMenuOrder.Name = "btnRightMenuOrder"; - this.btnRightMenuOrder.Size = new System.Drawing.Size(99, 95); - this.btnRightMenuOrder.TabIndex = 520; - this.btnRightMenuOrder.UseVisualStyleBackColor = false; - this.btnRightMenuOrder.Click += new System.EventHandler(this.btnRightMenuOrder_Click); - // // label61 // this.label61.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -8911,956 +6760,3102 @@ private void InitializeComponent() this.label71.Text = "Field Menu"; this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // cboxAutoStartAgIO + // label93 // - this.cboxAutoStartAgIO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxAutoStartAgIO.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxAutoStartAgIO.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxAutoStartAgIO.Checked = true; - this.cboxAutoStartAgIO.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxAutoStartAgIO.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxAutoStartAgIO.FlatAppearance.BorderSize = 2; - this.cboxAutoStartAgIO.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxAutoStartAgIO.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxAutoStartAgIO.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxAutoStartAgIO.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxAutoStartAgIO.Image = global::AgOpenGPS.Properties.Resources.AgIO; - this.cboxAutoStartAgIO.Location = new System.Drawing.Point(33, 504); - this.cboxAutoStartAgIO.Name = "cboxAutoStartAgIO"; - this.cboxAutoStartAgIO.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxAutoStartAgIO.Size = new System.Drawing.Size(77, 77); - this.cboxAutoStartAgIO.TabIndex = 517; - this.cboxAutoStartAgIO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxAutoStartAgIO.UseVisualStyleBackColor = false; + this.label93.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label93.AutoSize = true; + this.label93.BackColor = System.Drawing.Color.Transparent; + this.label93.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label93.ForeColor = System.Drawing.Color.Black; + this.label93.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label93.Location = new System.Drawing.Point(515, 437); + this.label93.Name = "label93"; + this.label93.Size = new System.Drawing.Size(43, 29); + this.label93.TabIndex = 455; + this.label93.Text = "->"; + this.label93.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // cboxHydLiftSound + // tabDisplay // - this.cboxHydLiftSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxHydLiftSound.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxHydLiftSound.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxHydLiftSound.Checked = true; - this.cboxHydLiftSound.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxHydLiftSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxHydLiftSound.FlatAppearance.BorderSize = 2; - this.cboxHydLiftSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxHydLiftSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxHydLiftSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxHydLiftSound.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxHydLiftSound.Image = global::AgOpenGPS.Properties.Resources.ConF_HydLiftSound; - this.cboxHydLiftSound.Location = new System.Drawing.Point(719, 289); - this.cboxHydLiftSound.Name = "cboxHydLiftSound"; - this.cboxHydLiftSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxHydLiftSound.Size = new System.Drawing.Size(77, 77); - this.cboxHydLiftSound.TabIndex = 515; - this.cboxHydLiftSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxHydLiftSound.UseVisualStyleBackColor = false; + this.tabDisplay.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabDisplay.Controls.Add(this.label79); + this.tabDisplay.Controls.Add(this.unitsGroupBox); + this.tabDisplay.Controls.Add(this.label15); + this.tabDisplay.Controls.Add(this.label42); + this.tabDisplay.Controls.Add(this.label101); + this.tabDisplay.Controls.Add(this.label43); + this.tabDisplay.Controls.Add(this.label36); + this.tabDisplay.Controls.Add(this.label33); + this.tabDisplay.Controls.Add(this.label31); + this.tabDisplay.Controls.Add(this.label28); + this.tabDisplay.Controls.Add(this.chkSpeedo); + this.tabDisplay.Controls.Add(this.chkExtraGuides); + this.tabDisplay.Controls.Add(this.chkGrid); + this.tabDisplay.Controls.Add(this.chkDisplayLogElevation); + this.tabDisplay.Controls.Add(this.chkSvennArrow); + this.tabDisplay.Controls.Add(this.chkDisplayBrightness); + this.tabDisplay.Controls.Add(this.chkDisplayFloor); + this.tabDisplay.Controls.Add(this.chkDisplayLightbar); + this.tabDisplay.Controls.Add(this.chkDisplayKeyboard); + this.tabDisplay.Controls.Add(this.chkDisplayPolygons); + this.tabDisplay.Controls.Add(this.chkDisplayStartFullScreen); + this.tabDisplay.Controls.Add(this.chkDisplayLogNMEA); + this.tabDisplay.Controls.Add(this.chkDisplayGrid); + this.tabDisplay.Controls.Add(this.chkDisplaySpeedo); + this.tabDisplay.Controls.Add(this.chkDisplayExtraGuides); + this.tabDisplay.Location = new System.Drawing.Point(4, 44); + this.tabDisplay.Name = "tabDisplay"; + this.tabDisplay.Padding = new System.Windows.Forms.Padding(3); + this.tabDisplay.Size = new System.Drawing.Size(854, 584); + this.tabDisplay.TabIndex = 25; + this.tabDisplay.Text = "fDisp"; + this.tabDisplay.Enter += new System.EventHandler(this.tabDisplay_Enter); + this.tabDisplay.Leave += new System.EventHandler(this.tabDisplay_Leave); // - // cboxTurnSound + // label79 // - this.cboxTurnSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxTurnSound.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxTurnSound.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxTurnSound.Checked = true; - this.cboxTurnSound.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxTurnSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxTurnSound.FlatAppearance.BorderSize = 2; - this.cboxTurnSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxTurnSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxTurnSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxTurnSound.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxTurnSound.Image = global::AgOpenGPS.Properties.Resources.ConF_TurnSound; - this.cboxTurnSound.Location = new System.Drawing.Point(719, 174); - this.cboxTurnSound.Name = "cboxTurnSound"; - this.cboxTurnSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxTurnSound.Size = new System.Drawing.Size(77, 77); - this.cboxTurnSound.TabIndex = 511; - this.cboxTurnSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxTurnSound.UseVisualStyleBackColor = false; + this.label79.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label79.AutoSize = true; + this.label79.BackColor = System.Drawing.Color.Transparent; + this.label79.ForeColor = System.Drawing.Color.Black; + this.label79.Location = new System.Drawing.Point(684, 230); + this.label79.Name = "label79"; + this.label79.Size = new System.Drawing.Size(58, 16); + this.label79.TabIndex = 531; + this.label79.Text = "Elevation"; // - // cboxSteerSound + // unitsGroupBox // - this.cboxSteerSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxSteerSound.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxSteerSound.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxSteerSound.Checked = true; - this.cboxSteerSound.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxSteerSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxSteerSound.FlatAppearance.BorderSize = 2; - this.cboxSteerSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxSteerSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxSteerSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxSteerSound.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxSteerSound.Image = global::AgOpenGPS.Properties.Resources.ConF_SteerSound; - this.cboxSteerSound.Location = new System.Drawing.Point(719, 59); - this.cboxSteerSound.Name = "cboxSteerSound"; - this.cboxSteerSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxSteerSound.Size = new System.Drawing.Size(77, 77); - this.cboxSteerSound.TabIndex = 510; - this.cboxSteerSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxSteerSound.UseVisualStyleBackColor = false; + this.unitsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.unitsGroupBox.Controls.Add(this.rbtnDisplayImperial); + this.unitsGroupBox.Controls.Add(this.rbtnDisplayMetric); + this.unitsGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.unitsGroupBox.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.unitsGroupBox.ForeColor = System.Drawing.Color.Black; + this.unitsGroupBox.Location = new System.Drawing.Point(582, 423); + this.unitsGroupBox.Name = "unitsGroupBox"; + this.unitsGroupBox.Size = new System.Drawing.Size(250, 129); + this.unitsGroupBox.TabIndex = 513; + this.unitsGroupBox.TabStop = false; + this.unitsGroupBox.Text = "Units"; // - // cboxFeatureLateral + // label15 // - this.cboxFeatureLateral.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureLateral.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureLateral.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureLateral.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_LateralManual; - this.cboxFeatureLateral.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.cboxFeatureLateral.Checked = true; - this.cboxFeatureLateral.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureLateral.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureLateral.FlatAppearance.BorderSize = 2; - this.cboxFeatureLateral.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureLateral.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureLateral.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureLateral.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureLateral.Location = new System.Drawing.Point(476, 59); - this.cboxFeatureLateral.Name = "cboxFeatureLateral"; - this.cboxFeatureLateral.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureLateral.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureLateral.TabIndex = 507; - this.cboxFeatureLateral.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureLateral.UseVisualStyleBackColor = false; + this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label15.AutoSize = true; + this.label15.BackColor = System.Drawing.Color.Transparent; + this.label15.ForeColor = System.Drawing.Color.Black; + this.label15.Location = new System.Drawing.Point(277, 106); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(81, 16); + this.label15.TabIndex = 529; + this.label15.Text = "Svenn Arrow"; // - // cboxFeatureUTurn + // label42 // - this.cboxFeatureUTurn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureUTurn.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureUTurn.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureUTurn.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_TurnManual; - this.cboxFeatureUTurn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.cboxFeatureUTurn.Checked = true; - this.cboxFeatureUTurn.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureUTurn.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureUTurn.FlatAppearance.BorderSize = 2; - this.cboxFeatureUTurn.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureUTurn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureUTurn.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureUTurn.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureUTurn.Location = new System.Drawing.Point(368, 59); - this.cboxFeatureUTurn.Name = "cboxFeatureUTurn"; - this.cboxFeatureUTurn.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureUTurn.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureUTurn.TabIndex = 506; - this.cboxFeatureUTurn.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureUTurn.UseVisualStyleBackColor = false; + this.label42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label42.AutoSize = true; + this.label42.BackColor = System.Drawing.Color.Transparent; + this.label42.ForeColor = System.Drawing.Color.Black; + this.label42.Location = new System.Drawing.Point(96, 227); + this.label42.Name = "label42"; + this.label42.Size = new System.Drawing.Size(66, 16); + this.label42.TabIndex = 527; + this.label42.Text = "Brightness"; // - // cboxFeatureOffsetFix + // label101 // - this.cboxFeatureOffsetFix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureOffsetFix.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureOffsetFix.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureOffsetFix.Checked = true; - this.cboxFeatureOffsetFix.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureOffsetFix.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureOffsetFix.FlatAppearance.BorderSize = 2; - this.cboxFeatureOffsetFix.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureOffsetFix.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureOffsetFix.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureOffsetFix.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureOffsetFix.Image = global::AgOpenGPS.Properties.Resources.YouTurnReverse; - this.cboxFeatureOffsetFix.Location = new System.Drawing.Point(174, 371); - this.cboxFeatureOffsetFix.Name = "cboxFeatureOffsetFix"; - this.cboxFeatureOffsetFix.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureOffsetFix.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureOffsetFix.TabIndex = 472; - this.cboxFeatureOffsetFix.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureOffsetFix.UseVisualStyleBackColor = false; + this.label101.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label101.AutoSize = true; + this.label101.BackColor = System.Drawing.Color.Transparent; + this.label101.ForeColor = System.Drawing.Color.Black; + this.label101.Location = new System.Drawing.Point(459, 230); + this.label101.Name = "label101"; + this.label101.Size = new System.Drawing.Size(82, 16); + this.label101.TabIndex = 525; + this.label101.Text = "Field Texture"; // - // cboxFeatureWebcam + // label43 // - this.cboxFeatureWebcam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureWebcam.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureWebcam.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureWebcam.Checked = true; - this.cboxFeatureWebcam.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureWebcam.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureWebcam.FlatAppearance.BorderSize = 2; - this.cboxFeatureWebcam.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureWebcam.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureWebcam.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureWebcam.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureWebcam.Image = global::AgOpenGPS.Properties.Resources.Webcam; - this.cboxFeatureWebcam.Location = new System.Drawing.Point(174, 267); - this.cboxFeatureWebcam.Name = "cboxFeatureWebcam"; - this.cboxFeatureWebcam.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureWebcam.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureWebcam.TabIndex = 471; - this.cboxFeatureWebcam.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureWebcam.UseVisualStyleBackColor = false; + this.label43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label43.AutoSize = true; + this.label43.BackColor = System.Drawing.Color.Transparent; + this.label43.ForeColor = System.Drawing.Color.Black; + this.label43.Location = new System.Drawing.Point(93, 106); + this.label43.Name = "label43"; + this.label43.Size = new System.Drawing.Size(57, 16); + this.label43.TabIndex = 523; + this.label43.Text = "Polygons"; // - // cboxFeatureHideContour + // label36 // - this.cboxFeatureHideContour.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureHideContour.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureHideContour.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureHideContour.Checked = true; - this.cboxFeatureHideContour.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureHideContour.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureHideContour.FlatAppearance.BorderSize = 2; - this.cboxFeatureHideContour.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureHideContour.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureHideContour.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureHideContour.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureHideContour.Image = global::AgOpenGPS.Properties.Resources.Trash; - this.cboxFeatureHideContour.Location = new System.Drawing.Point(174, 163); - this.cboxFeatureHideContour.Name = "cboxFeatureHideContour"; - this.cboxFeatureHideContour.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureHideContour.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureHideContour.TabIndex = 470; - this.cboxFeatureHideContour.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureHideContour.UseVisualStyleBackColor = false; + this.label36.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label36.AutoSize = true; + this.label36.BackColor = System.Drawing.Color.Transparent; + this.label36.ForeColor = System.Drawing.Color.Black; + this.label36.Location = new System.Drawing.Point(684, 106); + this.label36.Name = "label36"; + this.label36.Size = new System.Drawing.Size(60, 16); + this.label36.TabIndex = 522; + this.label36.Text = "LogNMEA"; // - // cboxFeatureABSmooth + // label33 // - this.cboxFeatureABSmooth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureABSmooth.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureABSmooth.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureABSmooth.Checked = true; - this.cboxFeatureABSmooth.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureABSmooth.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureABSmooth.FlatAppearance.BorderSize = 2; - this.cboxFeatureABSmooth.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureABSmooth.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureABSmooth.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureABSmooth.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureABSmooth.Image = global::AgOpenGPS.Properties.Resources.ABSmooth; - this.cboxFeatureABSmooth.Location = new System.Drawing.Point(174, 59); - this.cboxFeatureABSmooth.Name = "cboxFeatureABSmooth"; - this.cboxFeatureABSmooth.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureABSmooth.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureABSmooth.TabIndex = 469; - this.cboxFeatureABSmooth.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureABSmooth.UseVisualStyleBackColor = false; + this.label33.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label33.AutoSize = true; + this.label33.BackColor = System.Drawing.Color.Transparent; + this.label33.ForeColor = System.Drawing.Color.Black; + this.label33.Location = new System.Drawing.Point(276, 229); + this.label33.Name = "label33"; + this.label33.Size = new System.Drawing.Size(60, 16); + this.label33.TabIndex = 521; + this.label33.Text = "Keyboard"; // - // cboxFeatureRecPath + // label31 // - this.cboxFeatureRecPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureRecPath.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureRecPath.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureRecPath.Checked = true; - this.cboxFeatureRecPath.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureRecPath.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureRecPath.FlatAppearance.BorderSize = 2; - this.cboxFeatureRecPath.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureRecPath.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureRecPath.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureRecPath.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureRecPath.Image = global::AgOpenGPS.Properties.Resources.RecPath; - this.cboxFeatureRecPath.Location = new System.Drawing.Point(33, 371); - this.cboxFeatureRecPath.Name = "cboxFeatureRecPath"; - this.cboxFeatureRecPath.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureRecPath.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureRecPath.TabIndex = 467; - this.cboxFeatureRecPath.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureRecPath.UseVisualStyleBackColor = false; + this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label31.AutoSize = true; + this.label31.BackColor = System.Drawing.Color.Transparent; + this.label31.ForeColor = System.Drawing.Color.Black; + this.label31.Location = new System.Drawing.Point(94, 349); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(53, 16); + this.label31.TabIndex = 520; + this.label31.Text = "Lightbar"; // - // cboxFeatureBoundary + // label28 // - this.cboxFeatureBoundary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureBoundary.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureBoundary.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureBoundary.Checked = true; - this.cboxFeatureBoundary.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureBoundary.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureBoundary.FlatAppearance.BorderSize = 2; - this.cboxFeatureBoundary.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureBoundary.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureBoundary.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureBoundary.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureBoundary.Image = global::AgOpenGPS.Properties.Resources.Boundary; - this.cboxFeatureBoundary.Location = new System.Drawing.Point(33, 267); - this.cboxFeatureBoundary.Name = "cboxFeatureBoundary"; - this.cboxFeatureBoundary.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureBoundary.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureBoundary.TabIndex = 465; - this.cboxFeatureBoundary.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureBoundary.UseVisualStyleBackColor = false; + this.label28.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label28.AutoSize = true; + this.label28.BackColor = System.Drawing.Color.Transparent; + this.label28.ForeColor = System.Drawing.Color.Black; + this.label28.Location = new System.Drawing.Point(272, 348); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(97, 16); + this.label28.TabIndex = 518; + this.label28.Text = "Start Fullscreen"; // - // cboxFeatureHeadland + // chkSpeedo // - this.cboxFeatureHeadland.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureHeadland.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureHeadland.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureHeadland.Checked = true; - this.cboxFeatureHeadland.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureHeadland.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureHeadland.FlatAppearance.BorderSize = 2; - this.cboxFeatureHeadland.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureHeadland.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureHeadland.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureHeadland.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureHeadland.Image = global::AgOpenGPS.Properties.Resources.HeadlandOn; - this.cboxFeatureHeadland.Location = new System.Drawing.Point(33, 163); - this.cboxFeatureHeadland.Name = "cboxFeatureHeadland"; - this.cboxFeatureHeadland.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureHeadland.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureHeadland.TabIndex = 464; - this.cboxFeatureHeadland.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureHeadland.UseVisualStyleBackColor = false; + this.chkSpeedo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkSpeedo.AutoSize = true; + this.chkSpeedo.BackColor = System.Drawing.Color.Transparent; + this.chkSpeedo.ForeColor = System.Drawing.Color.Black; + this.chkSpeedo.Location = new System.Drawing.Point(93, 470); + this.chkSpeedo.Name = "chkSpeedo"; + this.chkSpeedo.Size = new System.Drawing.Size(50, 16); + this.chkSpeedo.TabIndex = 516; + this.chkSpeedo.Text = "Speedo"; // - // cboxFeatureTram + // chkExtraGuides // - this.cboxFeatureTram.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.cboxFeatureTram.Appearance = System.Windows.Forms.Appearance.Button; - this.cboxFeatureTram.BackColor = System.Drawing.Color.WhiteSmoke; - this.cboxFeatureTram.Checked = true; - this.cboxFeatureTram.CheckState = System.Windows.Forms.CheckState.Checked; - this.cboxFeatureTram.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.cboxFeatureTram.FlatAppearance.BorderSize = 2; - this.cboxFeatureTram.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.cboxFeatureTram.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.cboxFeatureTram.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cboxFeatureTram.ForeColor = System.Drawing.SystemColors.ControlText; - this.cboxFeatureTram.Image = global::AgOpenGPS.Properties.Resources.TramAll; - this.cboxFeatureTram.Location = new System.Drawing.Point(33, 59); - this.cboxFeatureTram.Name = "cboxFeatureTram"; - this.cboxFeatureTram.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.cboxFeatureTram.Size = new System.Drawing.Size(77, 77); - this.cboxFeatureTram.TabIndex = 463; - this.cboxFeatureTram.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.cboxFeatureTram.UseVisualStyleBackColor = false; + this.chkExtraGuides.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkExtraGuides.AutoSize = true; + this.chkExtraGuides.BackColor = System.Drawing.Color.Transparent; + this.chkExtraGuides.ForeColor = System.Drawing.Color.Black; + this.chkExtraGuides.Location = new System.Drawing.Point(460, 348); + this.chkExtraGuides.Name = "chkExtraGuides"; + this.chkExtraGuides.Size = new System.Drawing.Size(65, 16); + this.chkExtraGuides.TabIndex = 519; + this.chkExtraGuides.Text = "Guidelines"; // - // label93 + // chkGrid // - this.label93.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label93.AutoSize = true; - this.label93.BackColor = System.Drawing.Color.Transparent; - this.label93.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label93.ForeColor = System.Drawing.Color.Black; - this.label93.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label93.Location = new System.Drawing.Point(515, 437); - this.label93.Name = "label93"; - this.label93.Size = new System.Drawing.Size(43, 29); - this.label93.TabIndex = 455; - this.label93.Text = "->"; - this.label93.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkGrid.AutoSize = true; + this.chkGrid.BackColor = System.Drawing.Color.Transparent; + this.chkGrid.ForeColor = System.Drawing.Color.Black; + this.chkGrid.Location = new System.Drawing.Point(459, 106); + this.chkGrid.Name = "chkGrid"; + this.chkGrid.Size = new System.Drawing.Size(30, 16); + this.chkGrid.TabIndex = 515; + this.chkGrid.Text = "Grid"; // - // tabDisplay + // lblCurrentVehicle // - this.tabDisplay.BackColor = System.Drawing.Color.WhiteSmoke; - this.tabDisplay.Controls.Add(this.label79); - this.tabDisplay.Controls.Add(this.unitsGroupBox); - this.tabDisplay.Controls.Add(this.label15); - this.tabDisplay.Controls.Add(this.label42); - this.tabDisplay.Controls.Add(this.label101); - this.tabDisplay.Controls.Add(this.label43); - this.tabDisplay.Controls.Add(this.label36); - this.tabDisplay.Controls.Add(this.label33); - this.tabDisplay.Controls.Add(this.label31); - this.tabDisplay.Controls.Add(this.label28); - this.tabDisplay.Controls.Add(this.chkSpeedo); - this.tabDisplay.Controls.Add(this.chkExtraGuides); - this.tabDisplay.Controls.Add(this.chkGrid); - this.tabDisplay.Controls.Add(this.chkDisplayLogElevation); - this.tabDisplay.Controls.Add(this.chkSvennArrow); - this.tabDisplay.Controls.Add(this.chkDisplayBrightness); - this.tabDisplay.Controls.Add(this.chkDisplayFloor); - this.tabDisplay.Controls.Add(this.chkDisplayLightbar); - this.tabDisplay.Controls.Add(this.chkDisplayKeyboard); - this.tabDisplay.Controls.Add(this.chkDisplayPolygons); - this.tabDisplay.Controls.Add(this.chkDisplayStartFullScreen); - this.tabDisplay.Controls.Add(this.chkDisplayLogNMEA); - this.tabDisplay.Controls.Add(this.chkDisplayGrid); - this.tabDisplay.Controls.Add(this.chkDisplaySpeedo); - this.tabDisplay.Controls.Add(this.chkDisplayExtraGuides); - this.tabDisplay.Location = new System.Drawing.Point(4, 44); - this.tabDisplay.Name = "tabDisplay"; - this.tabDisplay.Padding = new System.Windows.Forms.Padding(3); - this.tabDisplay.Size = new System.Drawing.Size(854, 584); - this.tabDisplay.TabIndex = 25; - this.tabDisplay.Text = "fDisp"; - this.tabDisplay.Enter += new System.EventHandler(this.tabDisplay_Enter); - this.tabDisplay.Leave += new System.EventHandler(this.tabDisplay_Leave); + this.lblCurrentVehicle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.lblCurrentVehicle.AutoSize = true; + this.lblCurrentVehicle.BackColor = System.Drawing.Color.Transparent; + this.lblCurrentVehicle.Font = new System.Drawing.Font("Tahoma", 14.25F); + this.lblCurrentVehicle.ForeColor = System.Drawing.Color.Black; + this.lblCurrentVehicle.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblCurrentVehicle.Location = new System.Drawing.Point(18, 4); + this.lblCurrentVehicle.Name = "lblCurrentVehicle"; + this.lblCurrentVehicle.Size = new System.Drawing.Size(138, 23); + this.lblCurrentVehicle.TabIndex = 450; + this.lblCurrentVehicle.Text = "Current Vehicle"; + this.lblCurrentVehicle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // label79 + // lblInchesCm // - this.label79.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label79.AutoSize = true; - this.label79.BackColor = System.Drawing.Color.Transparent; - this.label79.ForeColor = System.Drawing.Color.Black; - this.label79.Location = new System.Drawing.Point(684, 230); - this.label79.Name = "label79"; - this.label79.Size = new System.Drawing.Size(58, 16); - this.label79.TabIndex = 531; - this.label79.Text = "Elevation"; + this.lblInchesCm.AutoSize = true; + this.lblInchesCm.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblInchesCm.ForeColor = System.Drawing.Color.DarkGreen; + this.lblInchesCm.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblInchesCm.Location = new System.Drawing.Point(455, 37); + this.lblInchesCm.Name = "lblInchesCm"; + this.lblInchesCm.Size = new System.Drawing.Size(74, 25); + this.lblInchesCm.TabIndex = 303; + this.lblInchesCm.Text = "Inches"; // - // unitsGroupBox + // lblSecTotalWidthMeters // - this.unitsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.unitsGroupBox.Controls.Add(this.rbtnDisplayImperial); - this.unitsGroupBox.Controls.Add(this.rbtnDisplayMetric); - this.unitsGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.unitsGroupBox.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.unitsGroupBox.ForeColor = System.Drawing.Color.Black; - this.unitsGroupBox.Location = new System.Drawing.Point(582, 423); - this.unitsGroupBox.Name = "unitsGroupBox"; - this.unitsGroupBox.Size = new System.Drawing.Size(250, 129); - this.unitsGroupBox.TabIndex = 513; - this.unitsGroupBox.TabStop = false; - this.unitsGroupBox.Text = "Units"; + this.lblSecTotalWidthMeters.AutoSize = true; + this.lblSecTotalWidthMeters.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblSecTotalWidthMeters.ForeColor = System.Drawing.Color.Black; + this.lblSecTotalWidthMeters.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblSecTotalWidthMeters.Location = new System.Drawing.Point(632, 32); + this.lblSecTotalWidthMeters.Name = "lblSecTotalWidthMeters"; + this.lblSecTotalWidthMeters.Size = new System.Drawing.Size(32, 25); + this.lblSecTotalWidthMeters.TabIndex = 302; + this.lblSecTotalWidthMeters.Text = "II"; // - // rbtnDisplayImperial + // label52 // - this.rbtnDisplayImperial.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnDisplayImperial.BackColor = System.Drawing.Color.WhiteSmoke; - this.rbtnDisplayImperial.Checked = true; - this.rbtnDisplayImperial.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.rbtnDisplayImperial.FlatAppearance.BorderSize = 2; - this.rbtnDisplayImperial.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnDisplayImperial.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnDisplayImperial.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.rbtnDisplayImperial.ForeColor = System.Drawing.SystemColors.ControlText; - this.rbtnDisplayImperial.Image = global::AgOpenGPS.Properties.Resources.ConD_Imperial; - this.rbtnDisplayImperial.Location = new System.Drawing.Point(130, 37); - this.rbtnDisplayImperial.Name = "rbtnDisplayImperial"; - this.rbtnDisplayImperial.Size = new System.Drawing.Size(112, 64); - this.rbtnDisplayImperial.TabIndex = 469; - this.rbtnDisplayImperial.TabStop = true; - this.rbtnDisplayImperial.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.rbtnDisplayImperial.UseVisualStyleBackColor = false; - this.rbtnDisplayImperial.Click += new System.EventHandler(this.rbtnDisplayImperial_Click); + this.label52.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label52.ForeColor = System.Drawing.Color.Black; + this.label52.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label52.Location = new System.Drawing.Point(583, 4); + this.label52.Name = "label52"; + this.label52.Size = new System.Drawing.Size(128, 25); + this.label52.TabIndex = 301; + this.label52.Text = "Tool Width:"; + this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // rbtnDisplayMetric + // lblSecTotalWidthFeet // - this.rbtnDisplayMetric.Appearance = System.Windows.Forms.Appearance.Button; - this.rbtnDisplayMetric.BackColor = System.Drawing.Color.WhiteSmoke; - this.rbtnDisplayMetric.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.rbtnDisplayMetric.FlatAppearance.BorderSize = 2; - this.rbtnDisplayMetric.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.rbtnDisplayMetric.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.rbtnDisplayMetric.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.rbtnDisplayMetric.ForeColor = System.Drawing.SystemColors.ControlText; - this.rbtnDisplayMetric.Image = global::AgOpenGPS.Properties.Resources.ConD_Metric; - this.rbtnDisplayMetric.Location = new System.Drawing.Point(8, 37); - this.rbtnDisplayMetric.Name = "rbtnDisplayMetric"; - this.rbtnDisplayMetric.Size = new System.Drawing.Size(112, 64); - this.rbtnDisplayMetric.TabIndex = 468; - this.rbtnDisplayMetric.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.rbtnDisplayMetric.UseVisualStyleBackColor = false; - this.rbtnDisplayMetric.Click += new System.EventHandler(this.rbtnDisplayMetric_Click); + this.lblSecTotalWidthFeet.AutoSize = true; + this.lblSecTotalWidthFeet.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblSecTotalWidthFeet.ForeColor = System.Drawing.Color.Black; + this.lblSecTotalWidthFeet.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblSecTotalWidthFeet.Location = new System.Drawing.Point(620, 32); + this.lblSecTotalWidthFeet.Name = "lblSecTotalWidthFeet"; + this.lblSecTotalWidthFeet.Size = new System.Drawing.Size(36, 25); + this.lblSecTotalWidthFeet.TabIndex = 298; + this.lblSecTotalWidthFeet.Text = "FF"; // - // label15 + // lblSecTotalWidthInches // - this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label15.AutoSize = true; - this.label15.BackColor = System.Drawing.Color.Transparent; - this.label15.ForeColor = System.Drawing.Color.Black; - this.label15.Location = new System.Drawing.Point(277, 106); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(81, 16); - this.label15.TabIndex = 529; - this.label15.Text = "Svenn Arrow"; + this.lblSecTotalWidthInches.AutoSize = true; + this.lblSecTotalWidthInches.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblSecTotalWidthInches.ForeColor = System.Drawing.Color.Black; + this.lblSecTotalWidthInches.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblSecTotalWidthInches.Location = new System.Drawing.Point(679, 32); + this.lblSecTotalWidthInches.Name = "lblSecTotalWidthInches"; + this.lblSecTotalWidthInches.Size = new System.Drawing.Size(32, 25); + this.lblSecTotalWidthInches.TabIndex = 300; + this.lblSecTotalWidthInches.Text = "II"; // - // label42 + // panelBottom // - this.label42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label42.AutoSize = true; - this.label42.BackColor = System.Drawing.Color.Transparent; - this.label42.ForeColor = System.Drawing.Color.Black; - this.label42.Location = new System.Drawing.Point(96, 227); - this.label42.Name = "label42"; - this.label42.Size = new System.Drawing.Size(66, 16); - this.label42.TabIndex = 527; - this.label42.Text = "Brightness"; + this.panelBottom.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.panelBottom.Controls.Add(this.lblFeetMeters); + this.panelBottom.Controls.Add(this.label52); + this.panelBottom.Controls.Add(this.lblSecTotalWidthInches); + this.panelBottom.Controls.Add(this.lblSecTotalWidthFeet); + this.panelBottom.Controls.Add(this.btnOK); + this.panelBottom.Controls.Add(this.lblInchesCm); + this.panelBottom.Controls.Add(this.lblSecTotalWidthMeters); + this.panelBottom.Controls.Add(this.lblCurrentVehicle); + this.panelBottom.Controls.Add(this.label22); + this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom; + this.panelBottom.ForeColor = System.Drawing.Color.Lime; + this.panelBottom.Location = new System.Drawing.Point(124, 645); + this.panelBottom.Name = "panelBottom"; + this.panelBottom.Size = new System.Drawing.Size(862, 66); + this.panelBottom.TabIndex = 112; // - // label101 + // lblFeetMeters // - this.label101.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label101.AutoSize = true; - this.label101.BackColor = System.Drawing.Color.Transparent; - this.label101.ForeColor = System.Drawing.Color.Black; - this.label101.Location = new System.Drawing.Point(459, 230); - this.label101.Name = "label101"; - this.label101.Size = new System.Drawing.Size(82, 16); - this.label101.TabIndex = 525; - this.label101.Text = "Field Texture"; + this.lblFeetMeters.AutoSize = true; + this.lblFeetMeters.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblFeetMeters.ForeColor = System.Drawing.Color.DarkGreen; + this.lblFeetMeters.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.lblFeetMeters.Location = new System.Drawing.Point(455, 9); + this.lblFeetMeters.Name = "lblFeetMeters"; + this.lblFeetMeters.Size = new System.Drawing.Size(52, 25); + this.lblFeetMeters.TabIndex = 453; + this.lblFeetMeters.Text = "Feet"; // - // label43 + // label22 // - this.label43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label43.AutoSize = true; - this.label43.BackColor = System.Drawing.Color.Transparent; - this.label43.ForeColor = System.Drawing.Color.Black; - this.label43.Location = new System.Drawing.Point(93, 106); - this.label43.Name = "label43"; - this.label43.Size = new System.Drawing.Size(57, 16); - this.label43.TabIndex = 523; - this.label43.Text = "Polygons"; + this.label22.BackColor = System.Drawing.Color.Transparent; + this.label22.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label22.ForeColor = System.Drawing.Color.Black; + this.label22.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label22.Location = new System.Drawing.Point(369, 9); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(85, 25); + this.label22.TabIndex = 454; + this.label22.Text = "Units:"; + this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // - // label36 + // timer1 // - this.label36.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label36.AutoSize = true; - this.label36.BackColor = System.Drawing.Color.Transparent; - this.label36.ForeColor = System.Drawing.Color.Black; - this.label36.Location = new System.Drawing.Point(684, 106); - this.label36.Name = "label36"; - this.label36.Size = new System.Drawing.Size(60, 16); - this.label36.TabIndex = 522; - this.label36.Text = "LogNMEA"; + this.timer1.Enabled = true; + this.timer1.Interval = 1000; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // - // label33 + // btnVehicleLoad // - this.label33.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label33.AutoSize = true; - this.label33.BackColor = System.Drawing.Color.Transparent; - this.label33.ForeColor = System.Drawing.Color.Black; - this.label33.Location = new System.Drawing.Point(276, 229); - this.label33.Name = "label33"; - this.label33.Size = new System.Drawing.Size(60, 16); - this.label33.TabIndex = 521; - this.label33.Text = "Keyboard"; + this.btnVehicleLoad.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.btnVehicleLoad.BackColor = System.Drawing.Color.Transparent; + this.btnVehicleLoad.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.btnVehicleLoad.FlatAppearance.BorderSize = 0; + this.btnVehicleLoad.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; + this.btnVehicleLoad.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnVehicleLoad.Font = new System.Drawing.Font("Tahoma", 15.75F); + this.btnVehicleLoad.Image = global::AgOpenGPS.Properties.Resources.FileOpen; + this.btnVehicleLoad.Location = new System.Drawing.Point(764, 156); + this.btnVehicleLoad.Name = "btnVehicleLoad"; + this.btnVehicleLoad.Size = new System.Drawing.Size(81, 49); + this.btnVehicleLoad.TabIndex = 456; + this.btnVehicleLoad.UseVisualStyleBackColor = false; + this.btnVehicleLoad.Click += new System.EventHandler(this.btnVehicleLoad_Click); // - // label31 + // btnVehicleDelete // - this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label31.AutoSize = true; - this.label31.BackColor = System.Drawing.Color.Transparent; - this.label31.ForeColor = System.Drawing.Color.Black; - this.label31.Location = new System.Drawing.Point(94, 349); - this.label31.Name = "label31"; - this.label31.Size = new System.Drawing.Size(53, 16); - this.label31.TabIndex = 520; - this.label31.Text = "Lightbar"; + this.btnVehicleDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.btnVehicleDelete.BackColor = System.Drawing.Color.Transparent; + this.btnVehicleDelete.FlatAppearance.BorderSize = 0; + this.btnVehicleDelete.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; + this.btnVehicleDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnVehicleDelete.Font = new System.Drawing.Font("Tahoma", 15.75F); + this.btnVehicleDelete.Image = global::AgOpenGPS.Properties.Resources.Trash; + this.btnVehicleDelete.Location = new System.Drawing.Point(764, 259); + this.btnVehicleDelete.Name = "btnVehicleDelete"; + this.btnVehicleDelete.Size = new System.Drawing.Size(81, 49); + this.btnVehicleDelete.TabIndex = 455; + this.btnVehicleDelete.UseVisualStyleBackColor = false; + this.btnVehicleDelete.Click += new System.EventHandler(this.btnVehicleDelete_Click); // - // label28 + // btnVehicleSave // - this.label28.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label28.AutoSize = true; - this.label28.BackColor = System.Drawing.Color.Transparent; - this.label28.ForeColor = System.Drawing.Color.Black; - this.label28.Location = new System.Drawing.Point(272, 348); - this.label28.Name = "label28"; - this.label28.Size = new System.Drawing.Size(97, 16); - this.label28.TabIndex = 518; - this.label28.Text = "Start Fullscreen"; + this.btnVehicleSave.BackColor = System.Drawing.Color.Transparent; + this.btnVehicleSave.Enabled = false; + this.btnVehicleSave.FlatAppearance.BorderSize = 0; + this.btnVehicleSave.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Turquoise; + this.btnVehicleSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnVehicleSave.Font = new System.Drawing.Font("Tahoma", 15.75F); + this.btnVehicleSave.Image = global::AgOpenGPS.Properties.Resources.FileSaveAs; + this.btnVehicleSave.Location = new System.Drawing.Point(734, 22); + this.btnVehicleSave.Name = "btnVehicleSave"; + this.btnVehicleSave.Size = new System.Drawing.Size(52, 52); + this.btnVehicleSave.TabIndex = 457; + this.btnVehicleSave.UseVisualStyleBackColor = false; + this.btnVehicleSave.Click += new System.EventHandler(this.btnVehicleSave_Click); // - // chkSpeedo + // rbtnHarvester // - this.chkSpeedo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkSpeedo.AutoSize = true; - this.chkSpeedo.BackColor = System.Drawing.Color.Transparent; - this.chkSpeedo.ForeColor = System.Drawing.Color.Black; - this.chkSpeedo.Location = new System.Drawing.Point(93, 470); - this.chkSpeedo.Name = "chkSpeedo"; - this.chkSpeedo.Size = new System.Drawing.Size(50, 16); - this.chkSpeedo.TabIndex = 516; - this.chkSpeedo.Text = "Speedo"; + this.rbtnHarvester.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnHarvester.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageHarvester; + this.rbtnHarvester.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.rbtnHarvester.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnHarvester.FlatAppearance.BorderSize = 0; + this.rbtnHarvester.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnHarvester.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnHarvester.Location = new System.Drawing.Point(16, 27); + this.rbtnHarvester.Name = "rbtnHarvester"; + this.rbtnHarvester.Size = new System.Drawing.Size(127, 83); + this.rbtnHarvester.TabIndex = 253; + this.rbtnHarvester.UseVisualStyleBackColor = true; + this.rbtnHarvester.Click += new System.EventHandler(this.rbtnVehicleType_Click); // - // chkExtraGuides + // rbtn4WD // - this.chkExtraGuides.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkExtraGuides.AutoSize = true; - this.chkExtraGuides.BackColor = System.Drawing.Color.Transparent; - this.chkExtraGuides.ForeColor = System.Drawing.Color.Black; - this.chkExtraGuides.Location = new System.Drawing.Point(460, 348); - this.chkExtraGuides.Name = "chkExtraGuides"; - this.chkExtraGuides.Size = new System.Drawing.Size(65, 16); - this.chkExtraGuides.TabIndex = 519; - this.chkExtraGuides.Text = "Guidelines"; + this.rbtn4WD.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtn4WD.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePage4WD; + this.rbtn4WD.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.rbtn4WD.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtn4WD.FlatAppearance.BorderSize = 0; + this.rbtn4WD.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtn4WD.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtn4WD.Location = new System.Drawing.Point(366, 27); + this.rbtn4WD.Name = "rbtn4WD"; + this.rbtn4WD.Size = new System.Drawing.Size(127, 83); + this.rbtn4WD.TabIndex = 252; + this.rbtn4WD.UseVisualStyleBackColor = true; + this.rbtn4WD.Click += new System.EventHandler(this.rbtnVehicleType_Click); // - // chkGrid + // rbtnTractor // - this.chkGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkGrid.AutoSize = true; - this.chkGrid.BackColor = System.Drawing.Color.Transparent; - this.chkGrid.ForeColor = System.Drawing.Color.Black; - this.chkGrid.Location = new System.Drawing.Point(459, 106); - this.chkGrid.Name = "chkGrid"; - this.chkGrid.Size = new System.Drawing.Size(30, 16); - this.chkGrid.TabIndex = 515; - this.chkGrid.Text = "Grid"; + this.rbtnTractor.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnTractor.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageTractor; + this.rbtnTractor.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.rbtnTractor.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnTractor.Checked = true; + this.rbtnTractor.FlatAppearance.BorderSize = 0; + this.rbtnTractor.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnTractor.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnTractor.Location = new System.Drawing.Point(192, 27); + this.rbtnTractor.Name = "rbtnTractor"; + this.rbtnTractor.Size = new System.Drawing.Size(127, 83); + this.rbtnTractor.TabIndex = 112; + this.rbtnTractor.TabStop = true; + this.rbtnTractor.UseVisualStyleBackColor = true; + this.rbtnTractor.Click += new System.EventHandler(this.rbtnVehicleType_Click); // - // chkDisplayLogElevation + // rbtnBrand4WDHolder // - this.chkDisplayLogElevation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayLogElevation.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayLogElevation.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayLogElevation.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayLogElevation.FlatAppearance.BorderSize = 2; - this.chkDisplayLogElevation.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayLogElevation.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayLogElevation.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayLogElevation.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayLogElevation.Image = global::AgOpenGPS.Properties.Resources.ConD_LogNMEA; - this.chkDisplayLogElevation.Location = new System.Drawing.Point(680, 158); - this.chkDisplayLogElevation.Name = "chkDisplayLogElevation"; - this.chkDisplayLogElevation.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayLogElevation.Size = new System.Drawing.Size(100, 69); - this.chkDisplayLogElevation.TabIndex = 530; - this.chkDisplayLogElevation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayLogElevation.UseVisualStyleBackColor = false; + this.rbtnBrand4WDHolder.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDHolder.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDHolder.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDHolder.Checked = true; + this.rbtnBrand4WDHolder.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDHolder.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDHolder.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDHolder.Image = global::AgOpenGPS.Properties.Resources.Holder; + this.rbtnBrand4WDHolder.Location = new System.Drawing.Point(8, 395); + this.rbtnBrand4WDHolder.Name = "rbtnBrand4WDHolder"; + this.rbtnBrand4WDHolder.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDHolder.TabIndex = 136; + this.rbtnBrand4WDHolder.TabStop = true; + this.rbtnBrand4WDHolder.UseVisualStyleBackColor = true; + this.rbtnBrand4WDHolder.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDHolder_CheckedChanged); // - // chkSvennArrow + // rbtnBrand4WDAgOpenGPS // - this.chkSvennArrow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkSvennArrow.Appearance = System.Windows.Forms.Appearance.Button; - this.chkSvennArrow.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkSvennArrow.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkSvennArrow.FlatAppearance.BorderSize = 2; - this.chkSvennArrow.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkSvennArrow.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkSvennArrow.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkSvennArrow.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkSvennArrow.Image = global::AgOpenGPS.Properties.Resources.SvennArrow; - this.chkSvennArrow.Location = new System.Drawing.Point(273, 34); - this.chkSvennArrow.Name = "chkSvennArrow"; - this.chkSvennArrow.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkSvennArrow.Size = new System.Drawing.Size(100, 69); - this.chkSvennArrow.TabIndex = 528; - this.chkSvennArrow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkSvennArrow.UseVisualStyleBackColor = false; + this.rbtnBrand4WDAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; + this.rbtnBrand4WDAgOpenGPS.Location = new System.Drawing.Point(8, 6); + this.rbtnBrand4WDAgOpenGPS.Name = "rbtnBrand4WDAgOpenGPS"; + this.rbtnBrand4WDAgOpenGPS.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDAgOpenGPS.TabIndex = 131; + this.rbtnBrand4WDAgOpenGPS.UseVisualStyleBackColor = true; + this.rbtnBrand4WDAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDAgOpenGPS_CheckedChanged); // - // chkDisplayBrightness + // rbtnBrand4WDChallenger // - this.chkDisplayBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayBrightness.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayBrightness.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayBrightness.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayBrightness.FlatAppearance.BorderSize = 2; - this.chkDisplayBrightness.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayBrightness.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayBrightness.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayBrightness.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayBrightness.Image = global::AgOpenGPS.Properties.Resources.BrightnessUp; - this.chkDisplayBrightness.ImageAlign = System.Drawing.ContentAlignment.TopCenter; - this.chkDisplayBrightness.Location = new System.Drawing.Point(90, 155); - this.chkDisplayBrightness.Name = "chkDisplayBrightness"; - this.chkDisplayBrightness.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayBrightness.Size = new System.Drawing.Size(100, 69); - this.chkDisplayBrightness.TabIndex = 526; - this.chkDisplayBrightness.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayBrightness.UseVisualStyleBackColor = false; + this.rbtnBrand4WDChallenger.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDChallenger.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDChallenger.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDChallenger.Checked = true; + this.rbtnBrand4WDChallenger.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDChallenger.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDChallenger.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDChallenger.Image = global::AgOpenGPS.Properties.Resources.Challenger; + this.rbtnBrand4WDChallenger.Location = new System.Drawing.Point(8, 84); + this.rbtnBrand4WDChallenger.Name = "rbtnBrand4WDChallenger"; + this.rbtnBrand4WDChallenger.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDChallenger.TabIndex = 132; + this.rbtnBrand4WDChallenger.TabStop = true; + this.rbtnBrand4WDChallenger.UseVisualStyleBackColor = true; + this.rbtnBrand4WDChallenger.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDChallenger_CheckedChanged); // - // chkDisplayFloor + // rbtnBrand4WDCase // - this.chkDisplayFloor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayFloor.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayFloor.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayFloor.Checked = true; - this.chkDisplayFloor.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkDisplayFloor.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayFloor.FlatAppearance.BorderSize = 2; - this.chkDisplayFloor.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayFloor.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayFloor.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayFloor.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayFloor.Image = global::AgOpenGPS.Properties.Resources.ConD_FloorTexture; - this.chkDisplayFloor.Location = new System.Drawing.Point(456, 158); - this.chkDisplayFloor.Name = "chkDisplayFloor"; - this.chkDisplayFloor.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayFloor.Size = new System.Drawing.Size(100, 69); - this.chkDisplayFloor.TabIndex = 524; - this.chkDisplayFloor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayFloor.UseVisualStyleBackColor = false; + this.rbtnBrand4WDCase.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDCase.Checked = true; + this.rbtnBrand4WDCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDCase.Image = global::AgOpenGPS.Properties.Resources.Case; + this.rbtnBrand4WDCase.Location = new System.Drawing.Point(8, 162); + this.rbtnBrand4WDCase.Name = "rbtnBrand4WDCase"; + this.rbtnBrand4WDCase.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDCase.TabIndex = 133; + this.rbtnBrand4WDCase.TabStop = true; + this.rbtnBrand4WDCase.UseVisualStyleBackColor = true; + this.rbtnBrand4WDCase.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDCase_CheckedChanged); // - // chkDisplayLightbar + // rbtnBrand4WDNH // - this.chkDisplayLightbar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayLightbar.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayLightbar.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayLightbar.FlatAppearance.BorderSize = 2; - this.chkDisplayLightbar.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayLightbar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayLightbar.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayLightbar.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayLightbar.Image = global::AgOpenGPS.Properties.Resources.ConD_LightBar; - this.chkDisplayLightbar.Location = new System.Drawing.Point(90, 276); - this.chkDisplayLightbar.Name = "chkDisplayLightbar"; - this.chkDisplayLightbar.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayLightbar.Size = new System.Drawing.Size(100, 69); - this.chkDisplayLightbar.TabIndex = 512; - this.chkDisplayLightbar.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayLightbar.UseVisualStyleBackColor = false; + this.rbtnBrand4WDNH.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDNH.Checked = true; + this.rbtnBrand4WDNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; + this.rbtnBrand4WDNH.Location = new System.Drawing.Point(8, 318); + this.rbtnBrand4WDNH.Name = "rbtnBrand4WDNH"; + this.rbtnBrand4WDNH.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDNH.TabIndex = 135; + this.rbtnBrand4WDNH.TabStop = true; + this.rbtnBrand4WDNH.UseVisualStyleBackColor = true; + this.rbtnBrand4WDNH.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDNH_CheckedChanged); // - // chkDisplayKeyboard + // rbtnBrand4WDJDeere // - this.chkDisplayKeyboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayKeyboard.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayKeyboard.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayKeyboard.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayKeyboard.FlatAppearance.BorderSize = 2; - this.chkDisplayKeyboard.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayKeyboard.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayKeyboard.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayKeyboard.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayKeyboard.Image = global::AgOpenGPS.Properties.Resources.ConD_KeyBoard; - this.chkDisplayKeyboard.Location = new System.Drawing.Point(272, 158); - this.chkDisplayKeyboard.Name = "chkDisplayKeyboard"; - this.chkDisplayKeyboard.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayKeyboard.Size = new System.Drawing.Size(100, 69); - this.chkDisplayKeyboard.TabIndex = 511; - this.chkDisplayKeyboard.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayKeyboard.UseVisualStyleBackColor = false; + this.rbtnBrand4WDJDeere.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrand4WDJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrand4WDJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrand4WDJDeere.Checked = true; + this.rbtnBrand4WDJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrand4WDJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrand4WDJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrand4WDJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; + this.rbtnBrand4WDJDeere.Location = new System.Drawing.Point(8, 240); + this.rbtnBrand4WDJDeere.Name = "rbtnBrand4WDJDeere"; + this.rbtnBrand4WDJDeere.Size = new System.Drawing.Size(64, 64); + this.rbtnBrand4WDJDeere.TabIndex = 134; + this.rbtnBrand4WDJDeere.TabStop = true; + this.rbtnBrand4WDJDeere.UseVisualStyleBackColor = true; + this.rbtnBrand4WDJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrand4WDJDeere_CheckedChanged); // - // chkDisplayPolygons + // rbtnBrandHAgOpenGPS // - this.chkDisplayPolygons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayPolygons.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayPolygons.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayPolygons.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayPolygons.FlatAppearance.BorderSize = 2; - this.chkDisplayPolygons.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayPolygons.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayPolygons.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayPolygons.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayPolygons.Image = global::AgOpenGPS.Properties.Resources.ConD_Poligons; - this.chkDisplayPolygons.Location = new System.Drawing.Point(90, 34); - this.chkDisplayPolygons.Name = "chkDisplayPolygons"; - this.chkDisplayPolygons.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayPolygons.Size = new System.Drawing.Size(100, 69); - this.chkDisplayPolygons.TabIndex = 510; - this.chkDisplayPolygons.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayPolygons.UseVisualStyleBackColor = false; + this.rbtnBrandHAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandHAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandHAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandHAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandHAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandHAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandHAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; + this.rbtnBrandHAgOpenGPS.Location = new System.Drawing.Point(8, 6); + this.rbtnBrandHAgOpenGPS.Name = "rbtnBrandHAgOpenGPS"; + this.rbtnBrandHAgOpenGPS.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandHAgOpenGPS.TabIndex = 127; + this.rbtnBrandHAgOpenGPS.UseVisualStyleBackColor = true; + this.rbtnBrandHAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrandHAgOpenGPS_CheckedChanged); // - // chkDisplayStartFullScreen + // rbtnBrandHCase // - this.chkDisplayStartFullScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayStartFullScreen.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayStartFullScreen.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayStartFullScreen.Checked = true; - this.chkDisplayStartFullScreen.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkDisplayStartFullScreen.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayStartFullScreen.FlatAppearance.BorderSize = 2; - this.chkDisplayStartFullScreen.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayStartFullScreen.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayStartFullScreen.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayStartFullScreen.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayStartFullScreen.Image = global::AgOpenGPS.Properties.Resources.ConD_FullScreenBegin; - this.chkDisplayStartFullScreen.Location = new System.Drawing.Point(269, 276); - this.chkDisplayStartFullScreen.Name = "chkDisplayStartFullScreen"; - this.chkDisplayStartFullScreen.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayStartFullScreen.Size = new System.Drawing.Size(100, 69); - this.chkDisplayStartFullScreen.TabIndex = 509; - this.chkDisplayStartFullScreen.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayStartFullScreen.UseVisualStyleBackColor = false; + this.rbtnBrandHCase.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandHCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandHCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandHCase.Checked = true; + this.rbtnBrandHCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandHCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandHCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandHCase.Image = global::AgOpenGPS.Properties.Resources.Case; + this.rbtnBrandHCase.Location = new System.Drawing.Point(8, 102); + this.rbtnBrandHCase.Name = "rbtnBrandHCase"; + this.rbtnBrandHCase.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandHCase.TabIndex = 114; + this.rbtnBrandHCase.TabStop = true; + this.rbtnBrandHCase.UseVisualStyleBackColor = true; + this.rbtnBrandHCase.CheckedChanged += new System.EventHandler(this.rbtnBrandHCase_CheckedChanged); // - // chkDisplayLogNMEA + // rbtnBrandHClaas // - this.chkDisplayLogNMEA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayLogNMEA.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayLogNMEA.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayLogNMEA.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayLogNMEA.FlatAppearance.BorderSize = 2; - this.chkDisplayLogNMEA.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayLogNMEA.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayLogNMEA.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayLogNMEA.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayLogNMEA.Image = global::AgOpenGPS.Properties.Resources.ConD_LogNMEA; - this.chkDisplayLogNMEA.Location = new System.Drawing.Point(680, 34); - this.chkDisplayLogNMEA.Name = "chkDisplayLogNMEA"; - this.chkDisplayLogNMEA.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayLogNMEA.Size = new System.Drawing.Size(100, 69); - this.chkDisplayLogNMEA.TabIndex = 508; - this.chkDisplayLogNMEA.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayLogNMEA.UseVisualStyleBackColor = false; + this.rbtnBrandHClaas.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandHClaas.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandHClaas.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandHClaas.Checked = true; + this.rbtnBrandHClaas.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandHClaas.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandHClaas.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandHClaas.Image = global::AgOpenGPS.Properties.Resources.Claas; + this.rbtnBrandHClaas.Location = new System.Drawing.Point(8, 198); + this.rbtnBrandHClaas.Name = "rbtnBrandHClaas"; + this.rbtnBrandHClaas.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandHClaas.TabIndex = 116; + this.rbtnBrandHClaas.TabStop = true; + this.rbtnBrandHClaas.UseVisualStyleBackColor = true; + this.rbtnBrandHClaas.CheckedChanged += new System.EventHandler(this.rbtnBrandHClaas_CheckedChanged); // - // chkDisplayGrid + // rbtnBrandHJDeere // - this.chkDisplayGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayGrid.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayGrid.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayGrid.Checked = true; - this.chkDisplayGrid.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkDisplayGrid.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayGrid.FlatAppearance.BorderSize = 2; - this.chkDisplayGrid.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayGrid.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayGrid.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayGrid.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayGrid.Image = global::AgOpenGPS.Properties.Resources.ConD_Grid; - this.chkDisplayGrid.Location = new System.Drawing.Point(456, 34); - this.chkDisplayGrid.Name = "chkDisplayGrid"; - this.chkDisplayGrid.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayGrid.Size = new System.Drawing.Size(100, 69); - this.chkDisplayGrid.TabIndex = 506; - this.chkDisplayGrid.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayGrid.UseVisualStyleBackColor = false; + this.rbtnBrandHJDeere.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandHJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandHJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandHJDeere.Checked = true; + this.rbtnBrandHJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandHJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandHJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandHJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; + this.rbtnBrandHJDeere.Location = new System.Drawing.Point(8, 294); + this.rbtnBrandHJDeere.Name = "rbtnBrandHJDeere"; + this.rbtnBrandHJDeere.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandHJDeere.TabIndex = 129; + this.rbtnBrandHJDeere.TabStop = true; + this.rbtnBrandHJDeere.UseVisualStyleBackColor = true; + this.rbtnBrandHJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrandHJDeere_CheckedChanged); // - // chkDisplaySpeedo + // rbtnBrandHNH // - this.chkDisplaySpeedo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplaySpeedo.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplaySpeedo.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplaySpeedo.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplaySpeedo.FlatAppearance.BorderSize = 2; - this.chkDisplaySpeedo.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplaySpeedo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplaySpeedo.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplaySpeedo.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplaySpeedo.Image = global::AgOpenGPS.Properties.Resources.ConD_Speedometer; - this.chkDisplaySpeedo.Location = new System.Drawing.Point(90, 397); - this.chkDisplaySpeedo.Name = "chkDisplaySpeedo"; - this.chkDisplaySpeedo.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplaySpeedo.Size = new System.Drawing.Size(100, 69); - this.chkDisplaySpeedo.TabIndex = 504; - this.chkDisplaySpeedo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplaySpeedo.UseVisualStyleBackColor = false; + this.rbtnBrandHNH.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandHNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandHNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandHNH.Checked = true; + this.rbtnBrandHNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandHNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandHNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandHNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; + this.rbtnBrandHNH.Location = new System.Drawing.Point(8, 390); + this.rbtnBrandHNH.Name = "rbtnBrandHNH"; + this.rbtnBrandHNH.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandHNH.TabIndex = 130; + this.rbtnBrandHNH.TabStop = true; + this.rbtnBrandHNH.UseVisualStyleBackColor = true; + this.rbtnBrandHNH.CheckedChanged += new System.EventHandler(this.rbtnBrandHNH_CheckedChanged); // - // chkDisplayExtraGuides + // rbtnBrandTAgOpenGPS // - this.chkDisplayExtraGuides.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chkDisplayExtraGuides.Appearance = System.Windows.Forms.Appearance.Button; - this.chkDisplayExtraGuides.BackColor = System.Drawing.Color.WhiteSmoke; - this.chkDisplayExtraGuides.FlatAppearance.BorderColor = System.Drawing.Color.Black; - this.chkDisplayExtraGuides.FlatAppearance.BorderSize = 2; - this.chkDisplayExtraGuides.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; - this.chkDisplayExtraGuides.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.chkDisplayExtraGuides.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.chkDisplayExtraGuides.ForeColor = System.Drawing.SystemColors.ControlText; - this.chkDisplayExtraGuides.Image = global::AgOpenGPS.Properties.Resources.ConD_ExtraGuides; - this.chkDisplayExtraGuides.Location = new System.Drawing.Point(456, 276); - this.chkDisplayExtraGuides.Name = "chkDisplayExtraGuides"; - this.chkDisplayExtraGuides.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.chkDisplayExtraGuides.Size = new System.Drawing.Size(100, 69); - this.chkDisplayExtraGuides.TabIndex = 503; - this.chkDisplayExtraGuides.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.chkDisplayExtraGuides.UseVisualStyleBackColor = false; + this.rbtnBrandTAgOpenGPS.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTAgOpenGPS.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTAgOpenGPS.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTAgOpenGPS.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTAgOpenGPS.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTAgOpenGPS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTAgOpenGPS.Image = global::AgOpenGPS.Properties.Resources.AoG; + this.rbtnBrandTAgOpenGPS.Location = new System.Drawing.Point(112, 6); + this.rbtnBrandTAgOpenGPS.Name = "rbtnBrandTAgOpenGPS"; + this.rbtnBrandTAgOpenGPS.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTAgOpenGPS.TabIndex = 126; + this.rbtnBrandTAgOpenGPS.UseVisualStyleBackColor = true; + this.rbtnBrandTAgOpenGPS.CheckedChanged += new System.EventHandler(this.rbtnBrandTAgOpenGPS_CheckedChanged); // - // lblCurrentVehicle + // rbtnBrandTCase // - this.lblCurrentVehicle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.lblCurrentVehicle.AutoSize = true; - this.lblCurrentVehicle.BackColor = System.Drawing.Color.Transparent; - this.lblCurrentVehicle.Font = new System.Drawing.Font("Tahoma", 14.25F); - this.lblCurrentVehicle.ForeColor = System.Drawing.Color.Black; - this.lblCurrentVehicle.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblCurrentVehicle.Location = new System.Drawing.Point(18, 4); - this.lblCurrentVehicle.Name = "lblCurrentVehicle"; - this.lblCurrentVehicle.Size = new System.Drawing.Size(138, 23); - this.lblCurrentVehicle.TabIndex = 450; - this.lblCurrentVehicle.Text = "Current Vehicle"; - this.lblCurrentVehicle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.rbtnBrandTCase.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTCase.BackgroundImage = global::AgOpenGPS.Properties.Resources.Case; + this.rbtnBrandTCase.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTCase.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTCase.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTCase.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTCase.Location = new System.Drawing.Point(13, 102); + this.rbtnBrandTCase.Name = "rbtnBrandTCase"; + this.rbtnBrandTCase.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTCase.TabIndex = 114; + this.rbtnBrandTCase.UseVisualStyleBackColor = true; + this.rbtnBrandTCase.CheckedChanged += new System.EventHandler(this.rbtnBrandTCase_CheckedChanged); // - // lblInchesCm + // rbtnBrandTClaas // - this.lblInchesCm.AutoSize = true; - this.lblInchesCm.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblInchesCm.ForeColor = System.Drawing.Color.DarkGreen; - this.lblInchesCm.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblInchesCm.Location = new System.Drawing.Point(455, 37); - this.lblInchesCm.Name = "lblInchesCm"; - this.lblInchesCm.Size = new System.Drawing.Size(74, 25); - this.lblInchesCm.TabIndex = 303; - this.lblInchesCm.Text = "Inches"; + this.rbtnBrandTClaas.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTClaas.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTClaas.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTClaas.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTClaas.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTClaas.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTClaas.Image = global::AgOpenGPS.Properties.Resources.Claas; + this.rbtnBrandTClaas.Location = new System.Drawing.Point(112, 102); + this.rbtnBrandTClaas.Name = "rbtnBrandTClaas"; + this.rbtnBrandTClaas.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTClaas.TabIndex = 115; + this.rbtnBrandTClaas.UseVisualStyleBackColor = true; + this.rbtnBrandTClaas.CheckedChanged += new System.EventHandler(this.rbtnBrandTClaas_CheckedChanged); // - // lblSecTotalWidthMeters + // rbtnBrandTDeutz // - this.lblSecTotalWidthMeters.AutoSize = true; - this.lblSecTotalWidthMeters.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblSecTotalWidthMeters.ForeColor = System.Drawing.Color.Black; - this.lblSecTotalWidthMeters.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblSecTotalWidthMeters.Location = new System.Drawing.Point(632, 32); - this.lblSecTotalWidthMeters.Name = "lblSecTotalWidthMeters"; - this.lblSecTotalWidthMeters.Size = new System.Drawing.Size(32, 25); - this.lblSecTotalWidthMeters.TabIndex = 302; - this.lblSecTotalWidthMeters.Text = "II"; + this.rbtnBrandTDeutz.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTDeutz.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTDeutz.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTDeutz.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTDeutz.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTDeutz.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTDeutz.Image = global::AgOpenGPS.Properties.Resources.Deutz; + this.rbtnBrandTDeutz.Location = new System.Drawing.Point(211, 102); + this.rbtnBrandTDeutz.Name = "rbtnBrandTDeutz"; + this.rbtnBrandTDeutz.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTDeutz.TabIndex = 116; + this.rbtnBrandTDeutz.UseVisualStyleBackColor = true; + this.rbtnBrandTDeutz.CheckedChanged += new System.EventHandler(this.rbtnBrandTDeutz_CheckedChanged); // - // label52 + // rbtnBrandTFendt // - this.label52.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label52.ForeColor = System.Drawing.Color.Black; - this.label52.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label52.Location = new System.Drawing.Point(583, 4); - this.label52.Name = "label52"; - this.label52.Size = new System.Drawing.Size(128, 25); - this.label52.TabIndex = 301; - this.label52.Text = "Tool Width:"; - this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTFendt.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTFendt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTFendt.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTFendt.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTFendt.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTFendt.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTFendt.Image = global::AgOpenGPS.Properties.Resources.Fendt; + this.rbtnBrandTFendt.Location = new System.Drawing.Point(13, 390); + this.rbtnBrandTFendt.Name = "rbtnBrandTFendt"; + this.rbtnBrandTFendt.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTFendt.TabIndex = 117; + this.rbtnBrandTFendt.UseVisualStyleBackColor = true; + this.rbtnBrandTFendt.CheckedChanged += new System.EventHandler(this.rbtnBrandTFendt_CheckedChanged); + // + // rbtnBrandTJDeere + // + this.rbtnBrandTJDeere.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTJDeere.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTJDeere.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTJDeere.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTJDeere.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTJDeere.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTJDeere.Image = global::AgOpenGPS.Properties.Resources.JohnDeere; + this.rbtnBrandTJDeere.Location = new System.Drawing.Point(211, 294); + this.rbtnBrandTJDeere.Name = "rbtnBrandTJDeere"; + this.rbtnBrandTJDeere.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTJDeere.TabIndex = 118; + this.rbtnBrandTJDeere.UseVisualStyleBackColor = true; + this.rbtnBrandTJDeere.CheckedChanged += new System.EventHandler(this.rbtnBrandTJDeere_CheckedChanged); + // + // rbtnBrandTKubota + // + this.rbtnBrandTKubota.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTKubota.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTKubota.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTKubota.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTKubota.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTKubota.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTKubota.Image = global::AgOpenGPS.Properties.Resources.Kubota; + this.rbtnBrandTKubota.Location = new System.Drawing.Point(211, 390); + this.rbtnBrandTKubota.Name = "rbtnBrandTKubota"; + this.rbtnBrandTKubota.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTKubota.TabIndex = 119; + this.rbtnBrandTKubota.UseVisualStyleBackColor = true; + this.rbtnBrandTKubota.CheckedChanged += new System.EventHandler(this.rbtnBrandTKubota_CheckedChanged); + // + // rbtnBrandTMassey + // + this.rbtnBrandTMassey.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTMassey.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTMassey.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTMassey.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTMassey.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTMassey.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTMassey.Image = global::AgOpenGPS.Properties.Resources.Massey; + this.rbtnBrandTMassey.Location = new System.Drawing.Point(13, 198); + this.rbtnBrandTMassey.Name = "rbtnBrandTMassey"; + this.rbtnBrandTMassey.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTMassey.TabIndex = 120; + this.rbtnBrandTMassey.UseVisualStyleBackColor = true; + this.rbtnBrandTMassey.CheckedChanged += new System.EventHandler(this.rbtnBrandTMassey_CheckedChanged); + // + // rbtnBrandTNH + // + this.rbtnBrandTNH.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTNH.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTNH.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTNH.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTNH.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTNH.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTNH.Image = global::AgOpenGPS.Properties.Resources.NewHolland; + this.rbtnBrandTNH.Location = new System.Drawing.Point(112, 198); + this.rbtnBrandTNH.Name = "rbtnBrandTNH"; + this.rbtnBrandTNH.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTNH.TabIndex = 121; + this.rbtnBrandTNH.UseVisualStyleBackColor = true; + this.rbtnBrandTNH.CheckedChanged += new System.EventHandler(this.rbtnBrandTNH_CheckedChanged); + // + // rbtnBrandTSame + // + this.rbtnBrandTSame.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTSame.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTSame.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTSame.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTSame.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTSame.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTSame.Image = global::AgOpenGPS.Properties.Resources.Same; + this.rbtnBrandTSame.Location = new System.Drawing.Point(211, 198); + this.rbtnBrandTSame.Name = "rbtnBrandTSame"; + this.rbtnBrandTSame.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTSame.TabIndex = 122; + this.rbtnBrandTSame.UseVisualStyleBackColor = true; + this.rbtnBrandTSame.CheckedChanged += new System.EventHandler(this.rbtnBrandTSame_CheckedChanged); + // + // rbtnBrandTSteyr + // + this.rbtnBrandTSteyr.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTSteyr.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTSteyr.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTSteyr.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTSteyr.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTSteyr.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTSteyr.Image = global::AgOpenGPS.Properties.Resources.Steyr; + this.rbtnBrandTSteyr.Location = new System.Drawing.Point(112, 390); + this.rbtnBrandTSteyr.Name = "rbtnBrandTSteyr"; + this.rbtnBrandTSteyr.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTSteyr.TabIndex = 123; + this.rbtnBrandTSteyr.UseVisualStyleBackColor = true; + this.rbtnBrandTSteyr.CheckedChanged += new System.EventHandler(this.rbtnBrandTSteyr_CheckedChanged); + // + // rbtnBrandTValtra + // + this.rbtnBrandTValtra.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTValtra.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTValtra.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTValtra.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTValtra.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTValtra.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTValtra.Image = global::AgOpenGPS.Properties.Resources.Valtra; + this.rbtnBrandTValtra.Location = new System.Drawing.Point(112, 294); + this.rbtnBrandTValtra.Name = "rbtnBrandTValtra"; + this.rbtnBrandTValtra.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTValtra.TabIndex = 125; + this.rbtnBrandTValtra.UseVisualStyleBackColor = true; + this.rbtnBrandTValtra.CheckedChanged += new System.EventHandler(this.rbtnBrandTValtra_CheckedChanged); + // + // rbtnBrandTUrsus + // + this.rbtnBrandTUrsus.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnBrandTUrsus.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnBrandTUrsus.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; + this.rbtnBrandTUrsus.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.rbtnBrandTUrsus.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnBrandTUrsus.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnBrandTUrsus.Image = global::AgOpenGPS.Properties.Resources.Ursus; + this.rbtnBrandTUrsus.Location = new System.Drawing.Point(13, 294); + this.rbtnBrandTUrsus.Name = "rbtnBrandTUrsus"; + this.rbtnBrandTUrsus.Size = new System.Drawing.Size(64, 64); + this.rbtnBrandTUrsus.TabIndex = 124; + this.rbtnBrandTUrsus.UseVisualStyleBackColor = true; + this.rbtnBrandTUrsus.CheckedChanged += new System.EventHandler(this.rbtnBrandTUrsus_CheckedChanged); + // + // btnOpacityDn + // + this.btnOpacityDn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnOpacityDn.BackColor = System.Drawing.Color.Transparent; + this.btnOpacityDn.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.btnOpacityDn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOpacityDn.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; + this.btnOpacityDn.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnOpacityDn.Location = new System.Drawing.Point(555, 438); + this.btnOpacityDn.Name = "btnOpacityDn"; + this.btnOpacityDn.Size = new System.Drawing.Size(73, 72); + this.btnOpacityDn.TabIndex = 534; + this.btnOpacityDn.UseVisualStyleBackColor = false; + this.btnOpacityDn.Click += new System.EventHandler(this.btnOpacityDn_Click); + // + // panelOpacity + // + this.panelOpacity.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.panelOpacity.BackColor = System.Drawing.Color.MistyRose; + this.panelOpacity.BackgroundImage = global::AgOpenGPS.Properties.Resources.VehicleOpacity; + this.panelOpacity.Controls.Add(this.pboxAlpha); + this.panelOpacity.Location = new System.Drawing.Point(571, 144); + this.panelOpacity.Name = "panelOpacity"; + this.panelOpacity.Size = new System.Drawing.Size(256, 256); + this.panelOpacity.TabIndex = 535; + // + // pboxAlpha + // + this.pboxAlpha.BackColor = System.Drawing.Color.Transparent; + this.pboxAlpha.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_TractorDeutz; + this.pboxAlpha.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pboxAlpha.Dock = System.Windows.Forms.DockStyle.Fill; + this.pboxAlpha.Location = new System.Drawing.Point(0, 0); + this.pboxAlpha.Name = "pboxAlpha"; + this.pboxAlpha.Size = new System.Drawing.Size(256, 256); + this.pboxAlpha.TabIndex = 484; + this.pboxAlpha.TabStop = false; + // + // btnOpacityUp + // + this.btnOpacityUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnOpacityUp.BackColor = System.Drawing.Color.Transparent; + this.btnOpacityUp.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.btnOpacityUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOpacityUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; + this.btnOpacityUp.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnOpacityUp.Location = new System.Drawing.Point(773, 438); + this.btnOpacityUp.Name = "btnOpacityUp"; + this.btnOpacityUp.Size = new System.Drawing.Size(73, 72); + this.btnOpacityUp.TabIndex = 533; + this.btnOpacityUp.UseVisualStyleBackColor = false; + this.btnOpacityUp.Click += new System.EventHandler(this.btnOpacityUp_Click); + // + // cboxIsImage + // + this.cboxIsImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxIsImage.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxIsImage.BackColor = System.Drawing.Color.Transparent; + this.cboxIsImage.FlatAppearance.BorderColor = System.Drawing.Color.Silver; + this.cboxIsImage.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxIsImage.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxIsImage.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxIsImage.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxIsImage.Image = global::AgOpenGPS.Properties.Resources.TriangleVehicle; + this.cboxIsImage.Location = new System.Drawing.Point(651, 17); + this.cboxIsImage.Name = "cboxIsImage"; + this.cboxIsImage.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxIsImage.Size = new System.Drawing.Size(96, 96); + this.cboxIsImage.TabIndex = 483; + this.cboxIsImage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxIsImage.UseVisualStyleBackColor = false; + this.cboxIsImage.Click += new System.EventHandler(this.cboxIsImage_Click); + // + // pboxAntenna + // + this.pboxAntenna.BackgroundImage = global::AgOpenGPS.Properties.Resources.AntennaTractor; + this.pboxAntenna.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pboxAntenna.Location = new System.Drawing.Point(141, 106); + this.pboxAntenna.Name = "pboxAntenna"; + this.pboxAntenna.Size = new System.Drawing.Size(514, 446); + this.pboxAntenna.TabIndex = 48; + this.pboxAntenna.TabStop = false; + // + // pictureBox1 + // + this.pictureBox1.Image = global::AgOpenGPS.Properties.Resources.RadiusWheelBase; + this.pictureBox1.InitialImage = null; + this.pictureBox1.Location = new System.Drawing.Point(4, 22); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(814, 545); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBox1.TabIndex = 32; + this.pictureBox1.TabStop = false; + // + // pictureBox17 + // + this.pictureBox17.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_MinAutoSteer; + this.pictureBox17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox17.Location = new System.Drawing.Point(242, 404); + this.pictureBox17.Name = "pictureBox17"; + this.pictureBox17.Size = new System.Drawing.Size(118, 75); + this.pictureBox17.TabIndex = 490; + this.pictureBox17.TabStop = false; + // + // pictureBox16 + // + this.pictureBox16.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_MaxAutoSteer; + this.pictureBox16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox16.Location = new System.Drawing.Point(435, 404); + this.pictureBox16.Name = "pictureBox16"; + this.pictureBox16.Size = new System.Drawing.Size(118, 75); + this.pictureBox16.TabIndex = 485; + this.pictureBox16.TabStop = false; + // + // cboxSteerInReverse + // + this.cboxSteerInReverse.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxSteerInReverse.BackColor = System.Drawing.Color.AliceBlue; + this.cboxSteerInReverse.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxSteerInReverse.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxSteerInReverse.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxSteerInReverse.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxSteerInReverse.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxSteerInReverse.Image = global::AgOpenGPS.Properties.Resources.ConV_RevSteer; + this.cboxSteerInReverse.Location = new System.Drawing.Point(728, 36); + this.cboxSteerInReverse.Name = "cboxSteerInReverse"; + this.cboxSteerInReverse.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxSteerInReverse.Size = new System.Drawing.Size(90, 100); + this.cboxSteerInReverse.TabIndex = 473; + this.cboxSteerInReverse.Text = "Reverse"; + this.cboxSteerInReverse.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.cboxSteerInReverse.UseVisualStyleBackColor = false; + this.cboxSteerInReverse.Click += new System.EventHandler(this.cboxSteerInReverse_Click); + // + // pictureBox15 + // + this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox15.Image = global::AgOpenGPS.Properties.Resources.ConV_MaxAngVel; + this.pictureBox15.Location = new System.Drawing.Point(626, 404); + this.pictureBox15.Name = "pictureBox15"; + this.pictureBox15.Size = new System.Drawing.Size(118, 75); + this.pictureBox15.TabIndex = 480; + this.pictureBox15.TabStop = false; + // + // pictureBox10 + // + this.pictureBox10.BackgroundImage = global::AgOpenGPS.Properties.Resources.con_VehicleFunctionSpeedLimit; + this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox10.Location = new System.Drawing.Point(50, 404); + this.pictureBox10.Name = "pictureBox10"; + this.pictureBox10.Size = new System.Drawing.Size(118, 75); + this.pictureBox10.TabIndex = 476; + this.pictureBox10.TabStop = false; + // + // pictureBox12 + // + this.pictureBox12.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_GuidanceLookAhead; + this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox12.Location = new System.Drawing.Point(370, 191); + this.pictureBox12.Name = "pictureBox12"; + this.pictureBox12.Size = new System.Drawing.Size(118, 75); + this.pictureBox12.TabIndex = 471; + this.pictureBox12.TabStop = false; + // + // cboxAutoSteerAuto + // + this.cboxAutoSteerAuto.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxAutoSteerAuto.BackColor = System.Drawing.Color.Firebrick; + this.cboxAutoSteerAuto.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxAutoSteerAuto.FlatAppearance.CheckedBackColor = System.Drawing.Color.DarkGreen; + this.cboxAutoSteerAuto.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxAutoSteerAuto.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxAutoSteerAuto.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.cboxAutoSteerAuto.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOn; + this.cboxAutoSteerAuto.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.cboxAutoSteerAuto.Location = new System.Drawing.Point(730, 199); + this.cboxAutoSteerAuto.Name = "cboxAutoSteerAuto"; + this.cboxAutoSteerAuto.Size = new System.Drawing.Size(88, 103); + this.cboxAutoSteerAuto.TabIndex = 0; + this.cboxAutoSteerAuto.Text = "Manual"; + this.cboxAutoSteerAuto.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.cboxAutoSteerAuto.UseVisualStyleBackColor = false; + this.cboxAutoSteerAuto.Click += new System.EventHandler(this.cboxAutoSteerAuto_Click); + // + // pictureBox5 + // + this.pictureBox5.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_LineWith; + this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox5.Location = new System.Drawing.Point(33, 186); + this.pictureBox5.Name = "pictureBox5"; + this.pictureBox5.Size = new System.Drawing.Size(118, 75); + this.pictureBox5.TabIndex = 96; + this.pictureBox5.TabStop = false; + // + // pictureBox2 + // + this.pictureBox2.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConV_SnapDistance; + this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox2.Location = new System.Drawing.Point(197, 44); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(118, 75); + this.pictureBox2.TabIndex = 94; + this.pictureBox2.TabStop = false; + // + // pboxConfigHarvester + // + this.pboxConfigHarvester.BackgroundImage = global::AgOpenGPS.Properties.Resources.vehiclePageHarvester; + this.pboxConfigHarvester.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pboxConfigHarvester.Location = new System.Drawing.Point(206, 123); + this.pboxConfigHarvester.Name = "pboxConfigHarvester"; + this.pboxConfigHarvester.Size = new System.Drawing.Size(305, 206); + this.pboxConfigHarvester.TabIndex = 113; + this.pboxConfigHarvester.TabStop = false; + // + // rbtnTBT + // + this.rbtnTBT.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnTBT.BackColor = System.Drawing.Color.Transparent; + this.rbtnTBT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnTBT.FlatAppearance.BorderSize = 0; + this.rbtnTBT.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnTBT.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnTBT.Image = global::AgOpenGPS.Properties.Resources.ToolChkTBT; + this.rbtnTBT.Location = new System.Drawing.Point(394, 48); + this.rbtnTBT.Name = "rbtnTBT"; + this.rbtnTBT.Size = new System.Drawing.Size(309, 152); + this.rbtnTBT.TabIndex = 112; + this.rbtnTBT.UseVisualStyleBackColor = false; + // + // rbtnFixedRear + // + this.rbtnFixedRear.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnFixedRear.BackColor = System.Drawing.Color.Transparent; + this.rbtnFixedRear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnFixedRear.FlatAppearance.BorderSize = 0; + this.rbtnFixedRear.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnFixedRear.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnFixedRear.Image = global::AgOpenGPS.Properties.Resources.ToolChkRear; + this.rbtnFixedRear.Location = new System.Drawing.Point(16, 48); + this.rbtnFixedRear.Name = "rbtnFixedRear"; + this.rbtnFixedRear.Size = new System.Drawing.Size(309, 152); + this.rbtnFixedRear.TabIndex = 111; + this.rbtnFixedRear.UseVisualStyleBackColor = false; + // + // rbtnFront + // + this.rbtnFront.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnFront.BackColor = System.Drawing.Color.Transparent; + this.rbtnFront.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnFront.FlatAppearance.BorderSize = 0; + this.rbtnFront.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnFront.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnFront.Image = global::AgOpenGPS.Properties.Resources.ToolChkFront; + this.rbtnFront.Location = new System.Drawing.Point(16, 290); + this.rbtnFront.Name = "rbtnFront"; + this.rbtnFront.Size = new System.Drawing.Size(309, 152); + this.rbtnFront.TabIndex = 110; + this.rbtnFront.UseVisualStyleBackColor = false; + // + // rbtnTrailing + // + this.rbtnTrailing.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnTrailing.BackColor = System.Drawing.Color.Transparent; + this.rbtnTrailing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnTrailing.Checked = true; + this.rbtnTrailing.FlatAppearance.BorderSize = 0; + this.rbtnTrailing.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnTrailing.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnTrailing.Image = global::AgOpenGPS.Properties.Resources.ToolChkTrailing; + this.rbtnTrailing.Location = new System.Drawing.Point(394, 290); + this.rbtnTrailing.Name = "rbtnTrailing"; + this.rbtnTrailing.Size = new System.Drawing.Size(309, 152); + this.rbtnTrailing.TabIndex = 109; + this.rbtnTrailing.TabStop = true; + this.rbtnTrailing.UseVisualStyleBackColor = false; + // + // picboxToolHitch + // + this.picboxToolHitch.BackgroundImage = global::AgOpenGPS.Properties.Resources.ToolHitchPageFront; + this.picboxToolHitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.picboxToolHitch.Location = new System.Drawing.Point(13, 12); + this.picboxToolHitch.Name = "picboxToolHitch"; + this.picboxToolHitch.Size = new System.Drawing.Size(838, 407); + this.picboxToolHitch.TabIndex = 0; + this.picboxToolHitch.TabStop = false; + // + // btnZeroOverlap + // + this.btnZeroOverlap.BackColor = System.Drawing.Color.Transparent; + this.btnZeroOverlap.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnZeroOverlap.FlatAppearance.BorderSize = 0; + this.btnZeroOverlap.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnZeroOverlap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnZeroOverlap.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnZeroOverlap.ForeColor = System.Drawing.Color.Black; + this.btnZeroOverlap.Image = global::AgOpenGPS.Properties.Resources.SteerZero; + this.btnZeroOverlap.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnZeroOverlap.Location = new System.Drawing.Point(513, 109); + this.btnZeroOverlap.Name = "btnZeroOverlap"; + this.btnZeroOverlap.Size = new System.Drawing.Size(114, 52); + this.btnZeroOverlap.TabIndex = 489; + this.btnZeroOverlap.UseVisualStyleBackColor = false; + this.btnZeroOverlap.Click += new System.EventHandler(this.btnZeroOverlap_Click); + // + // btnZeroToolOffset + // + this.btnZeroToolOffset.BackColor = System.Drawing.Color.Transparent; + this.btnZeroToolOffset.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnZeroToolOffset.FlatAppearance.BorderSize = 0; + this.btnZeroToolOffset.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnZeroToolOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnZeroToolOffset.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnZeroToolOffset.ForeColor = System.Drawing.Color.Black; + this.btnZeroToolOffset.Image = global::AgOpenGPS.Properties.Resources.SteerZero; + this.btnZeroToolOffset.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnZeroToolOffset.Location = new System.Drawing.Point(93, 109); + this.btnZeroToolOffset.Name = "btnZeroToolOffset"; + this.btnZeroToolOffset.Size = new System.Drawing.Size(114, 52); + this.btnZeroToolOffset.TabIndex = 488; + this.btnZeroToolOffset.UseVisualStyleBackColor = false; + this.btnZeroToolOffset.Click += new System.EventHandler(this.btnZeroToolOffset_Click); + // + // rbtnToolOverlap + // + this.rbtnToolOverlap.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnToolOverlap.BackColor = System.Drawing.Color.Transparent; + this.rbtnToolOverlap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnToolOverlap.Checked = true; + this.rbtnToolOverlap.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnToolOverlap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnToolOverlap.Image = global::AgOpenGPS.Properties.Resources.ToolOverlap; + this.rbtnToolOverlap.Location = new System.Drawing.Point(23, 35); + this.rbtnToolOverlap.Name = "rbtnToolOverlap"; + this.rbtnToolOverlap.Size = new System.Drawing.Size(166, 218); + this.rbtnToolOverlap.TabIndex = 479; + this.rbtnToolOverlap.TabStop = true; + this.rbtnToolOverlap.UseVisualStyleBackColor = false; + this.rbtnToolOverlap.Click += new System.EventHandler(this.rbtnToolOverlap_Click); + // + // rbtnToolGap + // + this.rbtnToolGap.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnToolGap.BackColor = System.Drawing.Color.Transparent; + this.rbtnToolGap.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnToolGap.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnToolGap.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnToolGap.Image = global::AgOpenGPS.Properties.Resources.ToolGap; + this.rbtnToolGap.Location = new System.Drawing.Point(214, 35); + this.rbtnToolGap.Name = "rbtnToolGap"; + this.rbtnToolGap.Size = new System.Drawing.Size(166, 218); + this.rbtnToolGap.TabIndex = 478; + this.rbtnToolGap.UseVisualStyleBackColor = false; + this.rbtnToolGap.Click += new System.EventHandler(this.rbtnToolOverlap_Click); + // + // rbtnLeftNegative + // + this.rbtnLeftNegative.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnLeftNegative.BackColor = System.Drawing.Color.Transparent; + this.rbtnLeftNegative.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnLeftNegative.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnLeftNegative.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnLeftNegative.Image = global::AgOpenGPS.Properties.Resources.ToolOffsetNegativeLeft; + this.rbtnLeftNegative.Location = new System.Drawing.Point(17, 35); + this.rbtnLeftNegative.Name = "rbtnLeftNegative"; + this.rbtnLeftNegative.Size = new System.Drawing.Size(166, 218); + this.rbtnLeftNegative.TabIndex = 479; + this.rbtnLeftNegative.UseVisualStyleBackColor = false; + this.rbtnLeftNegative.Click += new System.EventHandler(this.rbtnToolRightPositive_Click); + // + // rbtnToolRightPositive + // + this.rbtnToolRightPositive.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnToolRightPositive.BackColor = System.Drawing.Color.Transparent; + this.rbtnToolRightPositive.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnToolRightPositive.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnToolRightPositive.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnToolRightPositive.Image = global::AgOpenGPS.Properties.Resources.ToolOffsetPositiveRight; + this.rbtnToolRightPositive.Location = new System.Drawing.Point(205, 35); + this.rbtnToolRightPositive.Name = "rbtnToolRightPositive"; + this.rbtnToolRightPositive.Size = new System.Drawing.Size(166, 218); + this.rbtnToolRightPositive.TabIndex = 478; + this.rbtnToolRightPositive.UseVisualStyleBackColor = false; + this.rbtnToolRightPositive.Click += new System.EventHandler(this.rbtnToolRightPositive_Click); + // + // btnPivotOffsetZero + // + this.btnPivotOffsetZero.BackColor = System.Drawing.Color.Transparent; + this.btnPivotOffsetZero.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnPivotOffsetZero.FlatAppearance.BorderSize = 0; + this.btnPivotOffsetZero.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnPivotOffsetZero.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnPivotOffsetZero.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnPivotOffsetZero.ForeColor = System.Drawing.Color.Black; + this.btnPivotOffsetZero.Image = global::AgOpenGPS.Properties.Resources.SteerZero; + this.btnPivotOffsetZero.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnPivotOffsetZero.Location = new System.Drawing.Point(368, 410); + this.btnPivotOffsetZero.Name = "btnPivotOffsetZero"; + this.btnPivotOffsetZero.Size = new System.Drawing.Size(114, 52); + this.btnPivotOffsetZero.TabIndex = 489; + this.btnPivotOffsetZero.UseVisualStyleBackColor = false; + this.btnPivotOffsetZero.Click += new System.EventHandler(this.btnPivotOffsetZero_Click); + // + // rbtnPivotBehindPos + // + this.rbtnPivotBehindPos.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnPivotBehindPos.BackColor = System.Drawing.Color.Transparent; + this.rbtnPivotBehindPos.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnPivotBehindPos.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnPivotBehindPos.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnPivotBehindPos.Image = global::AgOpenGPS.Properties.Resources.ToolHitchPivotOffsetNeg; + this.rbtnPivotBehindPos.Location = new System.Drawing.Point(577, 162); + this.rbtnPivotBehindPos.Name = "rbtnPivotBehindPos"; + this.rbtnPivotBehindPos.Size = new System.Drawing.Size(201, 300); + this.rbtnPivotBehindPos.TabIndex = 216; + this.rbtnPivotBehindPos.UseVisualStyleBackColor = false; + this.rbtnPivotBehindPos.Click += new System.EventHandler(this.rbtnPivotBehindPos_Click); + // + // rbtnPivotAheadNeg + // + this.rbtnPivotAheadNeg.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnPivotAheadNeg.BackColor = System.Drawing.Color.Transparent; + this.rbtnPivotAheadNeg.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.rbtnPivotAheadNeg.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnPivotAheadNeg.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnPivotAheadNeg.Image = global::AgOpenGPS.Properties.Resources.ToolHitchPivotOffsetPos; + this.rbtnPivotAheadNeg.Location = new System.Drawing.Point(72, 162); + this.rbtnPivotAheadNeg.Name = "rbtnPivotAheadNeg"; + this.rbtnPivotAheadNeg.Size = new System.Drawing.Size(201, 300); + this.rbtnPivotAheadNeg.TabIndex = 215; + this.rbtnPivotAheadNeg.UseVisualStyleBackColor = false; + this.rbtnPivotAheadNeg.Click += new System.EventHandler(this.rbtnPivotBehindPos_Click); + // + // cboxSectionBoundaryControl + // + this.cboxSectionBoundaryControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxSectionBoundaryControl.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxSectionBoundaryControl.BackColor = System.Drawing.Color.AliceBlue; + this.cboxSectionBoundaryControl.BackgroundImage = global::AgOpenGPS.Properties.Resources.SectionOffBoundary; + this.cboxSectionBoundaryControl.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.cboxSectionBoundaryControl.FlatAppearance.CheckedBackColor = System.Drawing.Color.Transparent; + this.cboxSectionBoundaryControl.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; + this.cboxSectionBoundaryControl.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; + this.cboxSectionBoundaryControl.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxSectionBoundaryControl.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxSectionBoundaryControl.ForeColor = System.Drawing.Color.Black; + this.cboxSectionBoundaryControl.Location = new System.Drawing.Point(473, 508); + this.cboxSectionBoundaryControl.Name = "cboxSectionBoundaryControl"; + this.cboxSectionBoundaryControl.Size = new System.Drawing.Size(104, 52); + this.cboxSectionBoundaryControl.TabIndex = 501; + this.cboxSectionBoundaryControl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxSectionBoundaryControl.UseVisualStyleBackColor = false; + this.cboxSectionBoundaryControl.Click += new System.EventHandler(this.cboxSectionBoundaryControl_Click); + // + // pictureBox11 + // + this.pictureBox11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox11.Image = global::AgOpenGPS.Properties.Resources.SectionOffBelow; + this.pictureBox11.Location = new System.Drawing.Point(657, 448); + this.pictureBox11.Name = "pictureBox11"; + this.pictureBox11.Size = new System.Drawing.Size(116, 57); + this.pictureBox11.TabIndex = 500; + this.pictureBox11.TabStop = false; + // + // cboxIsUnique + // + this.cboxIsUnique.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxIsUnique.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxIsUnique.BackColor = System.Drawing.Color.AliceBlue; + this.cboxIsUnique.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConT_Symmetric; + this.cboxIsUnique.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.cboxIsUnique.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxIsUnique.FlatAppearance.CheckedBackColor = System.Drawing.Color.AliceBlue; + this.cboxIsUnique.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; + this.cboxIsUnique.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; + this.cboxIsUnique.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxIsUnique.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxIsUnique.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxIsUnique.Location = new System.Drawing.Point(28, 464); + this.cboxIsUnique.Name = "cboxIsUnique"; + this.cboxIsUnique.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxIsUnique.Size = new System.Drawing.Size(165, 110); + this.cboxIsUnique.TabIndex = 454; + this.cboxIsUnique.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxIsUnique.UseVisualStyleBackColor = false; + this.cboxIsUnique.Click += new System.EventHandler(this.cboxIsUnique_Click); + // + // chkSetAutoSectionsSteer + // + this.chkSetAutoSectionsSteer.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSetAutoSectionsSteer.BackColor = System.Drawing.Color.AliceBlue; + this.chkSetAutoSectionsSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSetAutoSectionsSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSetAutoSectionsSteer.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSetAutoSectionsSteer.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSetAutoSectionsSteer.Image = global::AgOpenGPS.Properties.Resources.SectionMasterOff; + this.chkSetAutoSectionsSteer.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSetAutoSectionsSteer.Location = new System.Drawing.Point(44, 272); + this.chkSetAutoSectionsSteer.Name = "chkSetAutoSectionsSteer"; + this.chkSetAutoSectionsSteer.Size = new System.Drawing.Size(238, 71); + this.chkSetAutoSectionsSteer.TabIndex = 458; + this.chkSetAutoSectionsSteer.Text = " Auto Sections"; + this.chkSetAutoSectionsSteer.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSetAutoSectionsSteer.UseVisualStyleBackColor = false; + this.chkSetAutoSectionsSteer.Click += new System.EventHandler(this.chkSetAutoSectionsSteer_Click); + // + // chkSelectSteerSwitch + // + this.chkSelectSteerSwitch.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSelectSteerSwitch.BackColor = System.Drawing.Color.AliceBlue; + this.chkSelectSteerSwitch.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSelectSteerSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSelectSteerSwitch.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSelectSteerSwitch.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSelectSteerSwitch.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOff; + this.chkSelectSteerSwitch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSelectSteerSwitch.Location = new System.Drawing.Point(44, 56); + this.chkSelectSteerSwitch.Name = "chkSelectSteerSwitch"; + this.chkSelectSteerSwitch.Size = new System.Drawing.Size(238, 70); + this.chkSelectSteerSwitch.TabIndex = 2; + this.chkSelectSteerSwitch.Text = " Steer Switch"; + this.chkSelectSteerSwitch.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSelectSteerSwitch.UseVisualStyleBackColor = false; + this.chkSelectSteerSwitch.Click += new System.EventHandler(this.chkSelectSteerSwitch_Click); + // + // chkSetManualSectionsSteer + // + this.chkSetManualSectionsSteer.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSetManualSectionsSteer.BackColor = System.Drawing.Color.AliceBlue; + this.chkSetManualSectionsSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSetManualSectionsSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSetManualSectionsSteer.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSetManualSectionsSteer.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSetManualSectionsSteer.Image = global::AgOpenGPS.Properties.Resources.ManualOff; + this.chkSetManualSectionsSteer.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSetManualSectionsSteer.Location = new System.Drawing.Point(44, 172); + this.chkSetManualSectionsSteer.Name = "chkSetManualSectionsSteer"; + this.chkSetManualSectionsSteer.Size = new System.Drawing.Size(238, 71); + this.chkSetManualSectionsSteer.TabIndex = 457; + this.chkSetManualSectionsSteer.Text = " Manual Sections"; + this.chkSetManualSectionsSteer.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSetManualSectionsSteer.UseVisualStyleBackColor = false; + this.chkSetManualSectionsSteer.Click += new System.EventHandler(this.chkSetManualSectionsSteer_Click); + // + // chkSelectWorkSwitch + // + this.chkSelectWorkSwitch.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSelectWorkSwitch.BackColor = System.Drawing.Color.AliceBlue; + this.chkSelectWorkSwitch.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSelectWorkSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSelectWorkSwitch.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSelectWorkSwitch.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSelectWorkSwitch.Image = global::AgOpenGPS.Properties.Resources.HydraulicLiftOff; + this.chkSelectWorkSwitch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSelectWorkSwitch.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.chkSelectWorkSwitch.Location = new System.Drawing.Point(38, 56); + this.chkSelectWorkSwitch.Name = "chkSelectWorkSwitch"; + this.chkSelectWorkSwitch.Size = new System.Drawing.Size(238, 70); + this.chkSelectWorkSwitch.TabIndex = 1; + this.chkSelectWorkSwitch.Text = " Work Switch"; + this.chkSelectWorkSwitch.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSelectWorkSwitch.UseVisualStyleBackColor = false; + this.chkSelectWorkSwitch.Click += new System.EventHandler(this.chkSelectWorkSwitch_Click); + // + // chkSetAutoSections + // + this.chkSetAutoSections.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSetAutoSections.BackColor = System.Drawing.Color.AliceBlue; + this.chkSetAutoSections.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSetAutoSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSetAutoSections.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSetAutoSections.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSetAutoSections.Image = global::AgOpenGPS.Properties.Resources.SectionMasterOff; + this.chkSetAutoSections.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSetAutoSections.Location = new System.Drawing.Point(38, 272); + this.chkSetAutoSections.Name = "chkSetAutoSections"; + this.chkSetAutoSections.Size = new System.Drawing.Size(238, 71); + this.chkSetAutoSections.TabIndex = 456; + this.chkSetAutoSections.Text = " Auto Sections"; + this.chkSetAutoSections.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSetAutoSections.UseVisualStyleBackColor = false; + this.chkSetAutoSections.Click += new System.EventHandler(this.chkSetAutoSections_Click); + // + // chkSetManualSections + // + this.chkSetManualSections.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSetManualSections.BackColor = System.Drawing.Color.AliceBlue; + this.chkSetManualSections.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSetManualSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSetManualSections.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSetManualSections.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSetManualSections.Image = global::AgOpenGPS.Properties.Resources.ManualOff; + this.chkSetManualSections.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.chkSetManualSections.Location = new System.Drawing.Point(38, 172); + this.chkSetManualSections.Name = "chkSetManualSections"; + this.chkSetManualSections.Size = new System.Drawing.Size(238, 71); + this.chkSetManualSections.TabIndex = 0; + this.chkSetManualSections.Text = " Manual Sections"; + this.chkSetManualSections.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.chkSetManualSections.UseVisualStyleBackColor = false; + this.chkSetManualSections.Click += new System.EventHandler(this.chkSetManualSections_Click); + // + // chkWorkSwActiveLow + // + this.chkWorkSwActiveLow.Appearance = System.Windows.Forms.Appearance.Button; + this.chkWorkSwActiveLow.BackColor = System.Drawing.Color.AliceBlue; + this.chkWorkSwActiveLow.Checked = true; + this.chkWorkSwActiveLow.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkWorkSwActiveLow.FlatAppearance.CheckedBackColor = System.Drawing.Color.AliceBlue; + this.chkWorkSwActiveLow.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkWorkSwActiveLow.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkWorkSwActiveLow.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkWorkSwActiveLow.Image = global::AgOpenGPS.Properties.Resources.SwitchActiveClosed; + this.chkWorkSwActiveLow.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.chkWorkSwActiveLow.Location = new System.Drawing.Point(38, 373); + this.chkWorkSwActiveLow.Name = "chkWorkSwActiveLow"; + this.chkWorkSwActiveLow.Size = new System.Drawing.Size(238, 71); + this.chkWorkSwActiveLow.TabIndex = 0; + this.chkWorkSwActiveLow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkWorkSwActiveLow.UseVisualStyleBackColor = false; + this.chkWorkSwActiveLow.Click += new System.EventHandler(this.chkWorkSwActiveLow_Click); + // + // pictureBox18 + // + this.pictureBox18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox18.Image = global::AgOpenGPS.Properties.Resources.SectionLookAheadDelay; + this.pictureBox18.Location = new System.Drawing.Point(574, 108); + this.pictureBox18.Name = "pictureBox18"; + this.pictureBox18.Size = new System.Drawing.Size(279, 353); + this.pictureBox18.TabIndex = 133; + this.pictureBox18.TabStop = false; + // + // pictureBox4 + // + this.pictureBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox4.Image = global::AgOpenGPS.Properties.Resources.SectionLookAheadOff; + this.pictureBox4.Location = new System.Drawing.Point(287, 108); + this.pictureBox4.Name = "pictureBox4"; + this.pictureBox4.Size = new System.Drawing.Size(279, 353); + this.pictureBox4.TabIndex = 132; + this.pictureBox4.TabStop = false; + // + // pictureBox3 + // + this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox3.Image = global::AgOpenGPS.Properties.Resources.SectionOnLookAhead; + this.pictureBox3.Location = new System.Drawing.Point(0, 108); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(279, 353); + this.pictureBox3.TabIndex = 127; + this.pictureBox3.TabStop = false; + // + // pictureBox13 + // + this.pictureBox13.BackgroundImage = global::AgOpenGPS.Properties.Resources.Con_SourcesHead; + this.pictureBox13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox13.Location = new System.Drawing.Point(19, 52); + this.pictureBox13.Name = "pictureBox13"; + this.pictureBox13.Size = new System.Drawing.Size(130, 109); + this.pictureBox13.TabIndex = 471; + this.pictureBox13.TabStop = false; + // + // rbtnHeadingHDT + // + this.rbtnHeadingHDT.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnHeadingHDT.BackColor = System.Drawing.Color.AliceBlue; + this.rbtnHeadingHDT.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnHeadingHDT.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnHeadingHDT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.rbtnHeadingHDT.ForeColor = System.Drawing.Color.Black; + this.rbtnHeadingHDT.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesGPSDual; + this.rbtnHeadingHDT.Location = new System.Drawing.Point(19, 42); + this.rbtnHeadingHDT.Name = "rbtnHeadingHDT"; + this.rbtnHeadingHDT.Size = new System.Drawing.Size(117, 82); + this.rbtnHeadingHDT.TabIndex = 2; + this.rbtnHeadingHDT.Text = "Dual"; + this.rbtnHeadingHDT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.rbtnHeadingHDT.UseVisualStyleBackColor = false; + this.rbtnHeadingHDT.CheckedChanged += new System.EventHandler(this.rbtnHeadingFix_CheckedChanged); + // + // rbtnHeadingFix + // + this.rbtnHeadingFix.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnHeadingFix.BackColor = System.Drawing.Color.AliceBlue; + this.rbtnHeadingFix.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnHeadingFix.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnHeadingFix.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.rbtnHeadingFix.ForeColor = System.Drawing.Color.Black; + this.rbtnHeadingFix.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesGPSSingle; + this.rbtnHeadingFix.Location = new System.Drawing.Point(214, 42); + this.rbtnHeadingFix.Name = "rbtnHeadingFix"; + this.rbtnHeadingFix.Size = new System.Drawing.Size(117, 82); + this.rbtnHeadingFix.TabIndex = 0; + this.rbtnHeadingFix.Text = "Fix"; + this.rbtnHeadingFix.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.rbtnHeadingFix.UseVisualStyleBackColor = false; + this.rbtnHeadingFix.CheckedChanged += new System.EventHandler(this.rbtnHeadingFix_CheckedChanged); + // + // cboxIsRTK_KillAutoSteer + // + this.cboxIsRTK_KillAutoSteer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxIsRTK_KillAutoSteer.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxIsRTK_KillAutoSteer.BackColor = System.Drawing.Color.AliceBlue; + this.cboxIsRTK_KillAutoSteer.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxIsRTK_KillAutoSteer.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxIsRTK_KillAutoSteer.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxIsRTK_KillAutoSteer.ForeColor = System.Drawing.Color.Black; + this.cboxIsRTK_KillAutoSteer.Image = global::AgOpenGPS.Properties.Resources.AutoSteerOff; + this.cboxIsRTK_KillAutoSteer.Location = new System.Drawing.Point(242, 477); + this.cboxIsRTK_KillAutoSteer.Name = "cboxIsRTK_KillAutoSteer"; + this.cboxIsRTK_KillAutoSteer.Size = new System.Drawing.Size(103, 90); + this.cboxIsRTK_KillAutoSteer.TabIndex = 467; + this.cboxIsRTK_KillAutoSteer.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxIsRTK_KillAutoSteer.UseVisualStyleBackColor = false; + // + // cboxIsRTK + // + this.cboxIsRTK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxIsRTK.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxIsRTK.BackColor = System.Drawing.Color.AliceBlue; + this.cboxIsRTK.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxIsRTK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxIsRTK.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxIsRTK.ForeColor = System.Drawing.Color.Black; + this.cboxIsRTK.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesRTKAlarm; + this.cboxIsRTK.Location = new System.Drawing.Point(61, 477); + this.cboxIsRTK.Name = "cboxIsRTK"; + this.cboxIsRTK.Size = new System.Drawing.Size(103, 90); + this.cboxIsRTK.TabIndex = 309; + this.cboxIsRTK.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxIsRTK.UseVisualStyleBackColor = false; + // + // btnRollOffsetUp + // + this.btnRollOffsetUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnRollOffsetUp.FlatAppearance.BorderSize = 0; + this.btnRollOffsetUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRollOffsetUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnRollOffsetUp.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnRollOffsetUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; + this.btnRollOffsetUp.Location = new System.Drawing.Point(416, 214); + this.btnRollOffsetUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnRollOffsetUp.Name = "btnRollOffsetUp"; + this.btnRollOffsetUp.Size = new System.Drawing.Size(59, 69); + this.btnRollOffsetUp.TabIndex = 487; + this.btnRollOffsetUp.UseVisualStyleBackColor = true; + this.btnRollOffsetUp.Click += new System.EventHandler(this.btnRollOffsetUp_Click); + // + // btnRollOffsetDown + // + this.btnRollOffsetDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnRollOffsetDown.FlatAppearance.BorderSize = 0; + this.btnRollOffsetDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRollOffsetDown.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnRollOffsetDown.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnRollOffsetDown.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; + this.btnRollOffsetDown.Location = new System.Drawing.Point(342, 215); + this.btnRollOffsetDown.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnRollOffsetDown.Name = "btnRollOffsetDown"; + this.btnRollOffsetDown.Size = new System.Drawing.Size(59, 69); + this.btnRollOffsetDown.TabIndex = 486; + this.btnRollOffsetDown.UseVisualStyleBackColor = true; + this.btnRollOffsetDown.Click += new System.EventHandler(this.btnRollOffsetDown_Click); + // + // pictureBox9 + // + this.pictureBox9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox9.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConD_RollHelper; + this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.pictureBox9.Location = new System.Drawing.Point(577, 343); + this.pictureBox9.Name = "pictureBox9"; + this.pictureBox9.Size = new System.Drawing.Size(154, 217); + this.pictureBox9.TabIndex = 485; + this.pictureBox9.TabStop = false; + // + // btnResetIMU + // + this.btnResetIMU.BackColor = System.Drawing.Color.Transparent; + this.btnResetIMU.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConDa_ResetIMU; + this.btnResetIMU.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnResetIMU.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnResetIMU.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnResetIMU.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnResetIMU.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnResetIMU.ForeColor = System.Drawing.Color.Black; + this.btnResetIMU.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnResetIMU.Location = new System.Drawing.Point(593, 45); + this.btnResetIMU.Name = "btnResetIMU"; + this.btnResetIMU.Size = new System.Drawing.Size(130, 95); + this.btnResetIMU.TabIndex = 85; + this.btnResetIMU.UseVisualStyleBackColor = false; + this.btnResetIMU.Click += new System.EventHandler(this.btnResetIMU_Click); + // + // btnZeroRoll + // + this.btnZeroRoll.BackColor = System.Drawing.Color.Transparent; + this.btnZeroRoll.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnZeroRoll.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnZeroRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnZeroRoll.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnZeroRoll.ForeColor = System.Drawing.Color.Black; + this.btnZeroRoll.Image = global::AgOpenGPS.Properties.Resources.ConDa_RollSetZero; + this.btnZeroRoll.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnZeroRoll.Location = new System.Drawing.Point(86, 202); + this.btnZeroRoll.Name = "btnZeroRoll"; + this.btnZeroRoll.Size = new System.Drawing.Size(130, 95); + this.btnZeroRoll.TabIndex = 76; + this.btnZeroRoll.UseVisualStyleBackColor = false; + this.btnZeroRoll.Click += new System.EventHandler(this.btnZeroRoll_Click); + // + // btnRemoveZeroOffset + // + this.btnRemoveZeroOffset.BackColor = System.Drawing.Color.Transparent; + this.btnRemoveZeroOffset.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnRemoveZeroOffset.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnRemoveZeroOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRemoveZeroOffset.Font = new System.Drawing.Font("Tahoma", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnRemoveZeroOffset.ForeColor = System.Drawing.Color.Black; + this.btnRemoveZeroOffset.Image = global::AgOpenGPS.Properties.Resources.ConDa_RemoveOffset; + this.btnRemoveZeroOffset.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnRemoveZeroOffset.Location = new System.Drawing.Point(86, 46); + this.btnRemoveZeroOffset.Name = "btnRemoveZeroOffset"; + this.btnRemoveZeroOffset.Size = new System.Drawing.Size(130, 95); + this.btnRemoveZeroOffset.TabIndex = 76; + this.btnRemoveZeroOffset.UseVisualStyleBackColor = false; + this.btnRemoveZeroOffset.Click += new System.EventHandler(this.btnRemoveZeroOffset_Click); + // + // cboxDataInvertRoll + // + this.cboxDataInvertRoll.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxDataInvertRoll.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxDataInvertRoll.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxDataInvertRoll.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxDataInvertRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxDataInvertRoll.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxDataInvertRoll.ForeColor = System.Drawing.Color.Black; + this.cboxDataInvertRoll.Image = global::AgOpenGPS.Properties.Resources.ConDa_InvertRoll; + this.cboxDataInvertRoll.Location = new System.Drawing.Point(593, 201); + this.cboxDataInvertRoll.Name = "cboxDataInvertRoll"; + this.cboxDataInvertRoll.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxDataInvertRoll.Size = new System.Drawing.Size(130, 95); + this.cboxDataInvertRoll.TabIndex = 452; + this.cboxDataInvertRoll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxDataInvertRoll.UseVisualStyleBackColor = false; + // + // label64 + // + this.label64.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label64.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.label64.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnRadius; + this.label64.Location = new System.Drawing.Point(602, 27); + this.label64.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label64.Name = "label64"; + this.label64.Size = new System.Drawing.Size(109, 107); + this.label64.TabIndex = 470; + this.label64.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // btnTurnSmoothingUp + // + this.btnTurnSmoothingUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnTurnSmoothingUp.FlatAppearance.BorderSize = 0; + this.btnTurnSmoothingUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnTurnSmoothingUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnTurnSmoothingUp.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnTurnSmoothingUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; + this.btnTurnSmoothingUp.Location = new System.Drawing.Point(387, 317); + this.btnTurnSmoothingUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnTurnSmoothingUp.Name = "btnTurnSmoothingUp"; + this.btnTurnSmoothingUp.Size = new System.Drawing.Size(59, 69); + this.btnTurnSmoothingUp.TabIndex = 466; + this.btnTurnSmoothingUp.UseVisualStyleBackColor = true; + this.btnTurnSmoothingUp.Click += new System.EventHandler(this.btnTurnSmoothingUp_Click); + // + // btnTurnSmoothingDown + // + this.btnTurnSmoothingDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnTurnSmoothingDown.FlatAppearance.BorderSize = 0; + this.btnTurnSmoothingDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnTurnSmoothingDown.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnTurnSmoothingDown.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnTurnSmoothingDown.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; + this.btnTurnSmoothingDown.Location = new System.Drawing.Point(294, 317); + this.btnTurnSmoothingDown.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnTurnSmoothingDown.Name = "btnTurnSmoothingDown"; + this.btnTurnSmoothingDown.Size = new System.Drawing.Size(59, 69); + this.btnTurnSmoothingDown.TabIndex = 465; + this.btnTurnSmoothingDown.UseVisualStyleBackColor = true; + this.btnTurnSmoothingDown.Click += new System.EventHandler(this.btnTurnSmoothingDown_Click); + // + // label59 + // + this.label59.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label59.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.label59.Image = global::AgOpenGPS.Properties.Resources.ConU_UTurnSmooth; + this.label59.Location = new System.Drawing.Point(313, 141); + this.label59.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label59.Name = "label59"; + this.label59.Size = new System.Drawing.Size(109, 120); + this.label59.TabIndex = 467; + this.label59.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // label58 + // + this.label58.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label58.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.label58.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnDistance; + this.label58.Location = new System.Drawing.Point(602, 308); + this.label58.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label58.Name = "label58"; + this.label58.Size = new System.Drawing.Size(109, 119); + this.label58.TabIndex = 463; + this.label58.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // lblWhenTrig + // + this.lblWhenTrig.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblWhenTrig.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.lblWhenTrig.Image = global::AgOpenGPS.Properties.Resources.ConU_UturnLength; + this.lblWhenTrig.Location = new System.Drawing.Point(84, 141); + this.lblWhenTrig.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblWhenTrig.Name = "lblWhenTrig"; + this.lblWhenTrig.Size = new System.Drawing.Size(116, 133); + this.lblWhenTrig.TabIndex = 458; + this.lblWhenTrig.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // btnDistanceUp + // + this.btnDistanceUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnDistanceUp.FlatAppearance.BorderSize = 0; + this.btnDistanceUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnDistanceUp.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnDistanceUp.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnDistanceUp.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; + this.btnDistanceUp.Location = new System.Drawing.Point(160, 317); + this.btnDistanceUp.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnDistanceUp.Name = "btnDistanceUp"; + this.btnDistanceUp.Size = new System.Drawing.Size(59, 69); + this.btnDistanceUp.TabIndex = 457; + this.btnDistanceUp.UseVisualStyleBackColor = true; + this.btnDistanceUp.Click += new System.EventHandler(this.btnDistanceUp_Click); + // + // btnDistanceDn + // + this.btnDistanceDn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnDistanceDn.FlatAppearance.BorderSize = 0; + this.btnDistanceDn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnDistanceDn.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnDistanceDn.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnDistanceDn.Image = global::AgOpenGPS.Properties.Resources.DnArrow64; + this.btnDistanceDn.Location = new System.Drawing.Point(67, 317); + this.btnDistanceDn.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnDistanceDn.Name = "btnDistanceDn"; + this.btnDistanceDn.Size = new System.Drawing.Size(59, 69); + this.btnDistanceDn.TabIndex = 456; + this.btnDistanceDn.UseVisualStyleBackColor = true; + this.btnDistanceDn.Click += new System.EventHandler(this.btnDistanceDn_Click); + // + // btnRelaySetDefaultConfig + // + this.btnRelaySetDefaultConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnRelaySetDefaultConfig.BackColor = System.Drawing.Color.Transparent; + this.btnRelaySetDefaultConfig.FlatAppearance.BorderSize = 0; + this.btnRelaySetDefaultConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRelaySetDefaultConfig.Image = global::AgOpenGPS.Properties.Resources.UpArrow64; + this.btnRelaySetDefaultConfig.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnRelaySetDefaultConfig.Location = new System.Drawing.Point(148, 500); + this.btnRelaySetDefaultConfig.Name = "btnRelaySetDefaultConfig"; + this.btnRelaySetDefaultConfig.Size = new System.Drawing.Size(133, 85); + this.btnRelaySetDefaultConfig.TabIndex = 532; + this.btnRelaySetDefaultConfig.UseVisualStyleBackColor = false; + this.btnRelaySetDefaultConfig.Click += new System.EventHandler(this.btnRelaySetDefaultConfig_Click); + // + // btnRelayResetConfigToNone + // + this.btnRelayResetConfigToNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnRelayResetConfigToNone.BackColor = System.Drawing.Color.Transparent; + this.btnRelayResetConfigToNone.FlatAppearance.BorderSize = 0; + this.btnRelayResetConfigToNone.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRelayResetConfigToNone.Image = global::AgOpenGPS.Properties.Resources.back_button; + this.btnRelayResetConfigToNone.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnRelayResetConfigToNone.Location = new System.Drawing.Point(0, 502); + this.btnRelayResetConfigToNone.Name = "btnRelayResetConfigToNone"; + this.btnRelayResetConfigToNone.Size = new System.Drawing.Size(133, 85); + this.btnRelayResetConfigToNone.TabIndex = 531; + this.btnRelayResetConfigToNone.UseVisualStyleBackColor = false; + this.btnRelayResetConfigToNone.Click += new System.EventHandler(this.btnRelayResetConfigToNone_Click); + // + // pboxSendRelay + // + this.pboxSendRelay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.pboxSendRelay.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConSt_Mandatory1; + this.pboxSendRelay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.pboxSendRelay.Location = new System.Drawing.Point(751, 494); + this.pboxSendRelay.Name = "pboxSendRelay"; + this.pboxSendRelay.Size = new System.Drawing.Size(93, 85); + this.pboxSendRelay.TabIndex = 487; + this.pboxSendRelay.TabStop = false; + this.pboxSendRelay.Visible = false; + // + // btnSendRelayConfigPGN + // + this.btnSendRelayConfigPGN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnSendRelayConfigPGN.BackColor = System.Drawing.Color.Transparent; + this.btnSendRelayConfigPGN.FlatAppearance.BorderSize = 0; + this.btnSendRelayConfigPGN.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSendRelayConfigPGN.Image = global::AgOpenGPS.Properties.Resources.ToolAcceptChange; + this.btnSendRelayConfigPGN.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnSendRelayConfigPGN.Location = new System.Drawing.Point(616, 507); + this.btnSendRelayConfigPGN.Name = "btnSendRelayConfigPGN"; + this.btnSendRelayConfigPGN.Size = new System.Drawing.Size(133, 62); + this.btnSendRelayConfigPGN.TabIndex = 485; + this.btnSendRelayConfigPGN.UseVisualStyleBackColor = false; + this.btnSendRelayConfigPGN.Click += new System.EventHandler(this.btnSendRelayConfigPGN_Click); + // + // pictureBox6 + // + this.pictureBox6.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConMa_LiftLowerTime; + this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox6.Location = new System.Drawing.Point(352, 226); + this.pictureBox6.Name = "pictureBox6"; + this.pictureBox6.Size = new System.Drawing.Size(177, 154); + this.pictureBox6.TabIndex = 456; + this.pictureBox6.TabStop = false; + // + // pictureBox7 + // + this.pictureBox7.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConMa_LiftRaiseTime; + this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox7.Location = new System.Drawing.Point(352, 26); + this.pictureBox7.Name = "pictureBox7"; + this.pictureBox7.Size = new System.Drawing.Size(177, 154); + this.pictureBox7.TabIndex = 457; + this.pictureBox7.TabStop = false; + // + // pboxSendMachine + // + this.pboxSendMachine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pboxSendMachine.BackgroundImage = global::AgOpenGPS.Properties.Resources.ConSt_Mandatory1; + this.pboxSendMachine.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.pboxSendMachine.Location = new System.Drawing.Point(712, 412); + this.pboxSendMachine.Name = "pboxSendMachine"; + this.pboxSendMachine.Size = new System.Drawing.Size(88, 79); + this.pboxSendMachine.TabIndex = 483; + this.pboxSendMachine.TabStop = false; + this.pboxSendMachine.Visible = false; + // + // cboxMachInvertRelays + // + this.cboxMachInvertRelays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxMachInvertRelays.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxMachInvertRelays.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxMachInvertRelays.Checked = true; + this.cboxMachInvertRelays.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxMachInvertRelays.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxMachInvertRelays.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxMachInvertRelays.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxMachInvertRelays.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxMachInvertRelays.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxMachInvertRelays.Image = global::AgOpenGPS.Properties.Resources.ConSt_InvertRelay; + this.cboxMachInvertRelays.Location = new System.Drawing.Point(116, 462); + this.cboxMachInvertRelays.Name = "cboxMachInvertRelays"; + this.cboxMachInvertRelays.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxMachInvertRelays.Size = new System.Drawing.Size(192, 98); + this.cboxMachInvertRelays.TabIndex = 2; + this.cboxMachInvertRelays.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxMachInvertRelays.UseVisualStyleBackColor = false; + this.cboxMachInvertRelays.Click += new System.EventHandler(this.Enable_AlertM_Click); + // + // btnSendMachinePGN + // + this.btnSendMachinePGN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.btnSendMachinePGN.BackColor = System.Drawing.Color.Transparent; + this.btnSendMachinePGN.FlatAppearance.BorderSize = 0; + this.btnSendMachinePGN.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSendMachinePGN.Image = global::AgOpenGPS.Properties.Resources.ToolAcceptChange; + this.btnSendMachinePGN.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnSendMachinePGN.Location = new System.Drawing.Point(704, 494); + this.btnSendMachinePGN.Name = "btnSendMachinePGN"; + this.btnSendMachinePGN.Size = new System.Drawing.Size(103, 62); + this.btnSendMachinePGN.TabIndex = 1; + this.btnSendMachinePGN.UseVisualStyleBackColor = false; + this.btnSendMachinePGN.Click += new System.EventHandler(this.btnSendMachinePGN_Click); + // + // chkBoxOverrideTramControlPos + // + this.chkBoxOverrideTramControlPos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkBoxOverrideTramControlPos.Appearance = System.Windows.Forms.Appearance.Button; + this.chkBoxOverrideTramControlPos.BackColor = System.Drawing.Color.Transparent; + this.chkBoxOverrideTramControlPos.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkBoxOverrideTramControlPos.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkBoxOverrideTramControlPos.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkBoxOverrideTramControlPos.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkBoxOverrideTramControlPos.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.chkBoxOverrideTramControlPos.Image = global::AgOpenGPS.Properties.Resources.ConT_TramOverride; + this.chkBoxOverrideTramControlPos.Location = new System.Drawing.Point(172, 306); + this.chkBoxOverrideTramControlPos.Name = "chkBoxOverrideTramControlPos"; + this.chkBoxOverrideTramControlPos.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkBoxOverrideTramControlPos.Size = new System.Drawing.Size(282, 232); + this.chkBoxOverrideTramControlPos.TabIndex = 484; + this.chkBoxOverrideTramControlPos.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkBoxOverrideTramControlPos.UseVisualStyleBackColor = false; + // + // pictureBox8 + // + this.pictureBox8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox8.Image = global::AgOpenGPS.Properties.Resources.ConT_TramSpacing; + this.pictureBox8.Location = new System.Drawing.Point(172, 31); + this.pictureBox8.Name = "pictureBox8"; + this.pictureBox8.Size = new System.Drawing.Size(179, 195); + this.pictureBox8.TabIndex = 119; + this.pictureBox8.TabStop = false; + // + // cboxSectionsSound + // + this.cboxSectionsSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxSectionsSound.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxSectionsSound.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxSectionsSound.Checked = true; + this.cboxSectionsSound.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxSectionsSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxSectionsSound.FlatAppearance.BorderSize = 2; + this.cboxSectionsSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxSectionsSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxSectionsSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxSectionsSound.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxSectionsSound.Image = global::AgOpenGPS.Properties.Resources.ConF_SoundSections; + this.cboxSectionsSound.Location = new System.Drawing.Point(719, 404); + this.cboxSectionsSound.Name = "cboxSectionsSound"; + this.cboxSectionsSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxSectionsSound.Size = new System.Drawing.Size(77, 77); + this.cboxSectionsSound.TabIndex = 525; + this.cboxSectionsSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxSectionsSound.UseVisualStyleBackColor = false; + // + // cboxFeatureNudge + // + this.cboxFeatureNudge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureNudge.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureNudge.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureNudge.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.cboxFeatureNudge.Checked = true; + this.cboxFeatureNudge.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureNudge.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureNudge.FlatAppearance.BorderSize = 2; + this.cboxFeatureNudge.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureNudge.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureNudge.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureNudge.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureNudge.Image = global::AgOpenGPS.Properties.Resources.SnapToPivot; + this.cboxFeatureNudge.Location = new System.Drawing.Point(424, 237); + this.cboxFeatureNudge.Name = "cboxFeatureNudge"; + this.cboxFeatureNudge.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureNudge.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureNudge.TabIndex = 522; + this.cboxFeatureNudge.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureNudge.UseVisualStyleBackColor = false; + // + // btnRightMenuOrder + // + this.btnRightMenuOrder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.btnRightMenuOrder.BackColor = System.Drawing.Color.Transparent; + this.btnRightMenuOrder.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.btnRightMenuOrder.FlatAppearance.CheckedBackColor = System.Drawing.Color.Teal; + this.btnRightMenuOrder.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnRightMenuOrder.Font = new System.Drawing.Font("Tahoma", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnRightMenuOrder.ForeColor = System.Drawing.Color.Black; + this.btnRightMenuOrder.Image = global::AgOpenGPS.Properties.Resources.Con_RightMenuEdit; + this.btnRightMenuOrder.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.btnRightMenuOrder.Location = new System.Drawing.Point(415, 404); + this.btnRightMenuOrder.Name = "btnRightMenuOrder"; + this.btnRightMenuOrder.Size = new System.Drawing.Size(99, 95); + this.btnRightMenuOrder.TabIndex = 520; + this.btnRightMenuOrder.UseVisualStyleBackColor = false; + this.btnRightMenuOrder.Click += new System.EventHandler(this.btnRightMenuOrder_Click); + // + // cboxAutoStartAgIO + // + this.cboxAutoStartAgIO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxAutoStartAgIO.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxAutoStartAgIO.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxAutoStartAgIO.Checked = true; + this.cboxAutoStartAgIO.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxAutoStartAgIO.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxAutoStartAgIO.FlatAppearance.BorderSize = 2; + this.cboxAutoStartAgIO.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxAutoStartAgIO.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxAutoStartAgIO.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxAutoStartAgIO.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxAutoStartAgIO.Image = global::AgOpenGPS.Properties.Resources.AgIO; + this.cboxAutoStartAgIO.Location = new System.Drawing.Point(33, 504); + this.cboxAutoStartAgIO.Name = "cboxAutoStartAgIO"; + this.cboxAutoStartAgIO.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxAutoStartAgIO.Size = new System.Drawing.Size(77, 77); + this.cboxAutoStartAgIO.TabIndex = 517; + this.cboxAutoStartAgIO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxAutoStartAgIO.UseVisualStyleBackColor = false; + // + // cboxHydLiftSound + // + this.cboxHydLiftSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxHydLiftSound.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxHydLiftSound.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxHydLiftSound.Checked = true; + this.cboxHydLiftSound.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxHydLiftSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxHydLiftSound.FlatAppearance.BorderSize = 2; + this.cboxHydLiftSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxHydLiftSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxHydLiftSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxHydLiftSound.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxHydLiftSound.Image = global::AgOpenGPS.Properties.Resources.ConF_HydLiftSound; + this.cboxHydLiftSound.Location = new System.Drawing.Point(719, 289); + this.cboxHydLiftSound.Name = "cboxHydLiftSound"; + this.cboxHydLiftSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxHydLiftSound.Size = new System.Drawing.Size(77, 77); + this.cboxHydLiftSound.TabIndex = 515; + this.cboxHydLiftSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxHydLiftSound.UseVisualStyleBackColor = false; + // + // cboxTurnSound + // + this.cboxTurnSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxTurnSound.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxTurnSound.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxTurnSound.Checked = true; + this.cboxTurnSound.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxTurnSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxTurnSound.FlatAppearance.BorderSize = 2; + this.cboxTurnSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxTurnSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxTurnSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxTurnSound.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxTurnSound.Image = global::AgOpenGPS.Properties.Resources.ConF_TurnSound; + this.cboxTurnSound.Location = new System.Drawing.Point(719, 174); + this.cboxTurnSound.Name = "cboxTurnSound"; + this.cboxTurnSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxTurnSound.Size = new System.Drawing.Size(77, 77); + this.cboxTurnSound.TabIndex = 511; + this.cboxTurnSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxTurnSound.UseVisualStyleBackColor = false; + // + // cboxSteerSound + // + this.cboxSteerSound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxSteerSound.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxSteerSound.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxSteerSound.Checked = true; + this.cboxSteerSound.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxSteerSound.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxSteerSound.FlatAppearance.BorderSize = 2; + this.cboxSteerSound.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxSteerSound.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxSteerSound.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxSteerSound.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxSteerSound.Image = global::AgOpenGPS.Properties.Resources.ConF_SteerSound; + this.cboxSteerSound.Location = new System.Drawing.Point(719, 59); + this.cboxSteerSound.Name = "cboxSteerSound"; + this.cboxSteerSound.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxSteerSound.Size = new System.Drawing.Size(77, 77); + this.cboxSteerSound.TabIndex = 510; + this.cboxSteerSound.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxSteerSound.UseVisualStyleBackColor = false; + // + // cboxFeatureLateral + // + this.cboxFeatureLateral.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureLateral.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureLateral.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureLateral.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_LateralManual; + this.cboxFeatureLateral.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.cboxFeatureLateral.Checked = true; + this.cboxFeatureLateral.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureLateral.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureLateral.FlatAppearance.BorderSize = 2; + this.cboxFeatureLateral.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureLateral.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureLateral.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureLateral.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureLateral.Location = new System.Drawing.Point(476, 59); + this.cboxFeatureLateral.Name = "cboxFeatureLateral"; + this.cboxFeatureLateral.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureLateral.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureLateral.TabIndex = 507; + this.cboxFeatureLateral.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureLateral.UseVisualStyleBackColor = false; + // + // cboxFeatureUTurn + // + this.cboxFeatureUTurn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureUTurn.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureUTurn.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureUTurn.BackgroundImage = global::AgOpenGPS.Properties.Resources.z_TurnManual; + this.cboxFeatureUTurn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.cboxFeatureUTurn.Checked = true; + this.cboxFeatureUTurn.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureUTurn.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureUTurn.FlatAppearance.BorderSize = 2; + this.cboxFeatureUTurn.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureUTurn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureUTurn.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureUTurn.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureUTurn.Location = new System.Drawing.Point(368, 59); + this.cboxFeatureUTurn.Name = "cboxFeatureUTurn"; + this.cboxFeatureUTurn.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureUTurn.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureUTurn.TabIndex = 506; + this.cboxFeatureUTurn.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureUTurn.UseVisualStyleBackColor = false; + // + // cboxFeatureOffsetFix + // + this.cboxFeatureOffsetFix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureOffsetFix.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureOffsetFix.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureOffsetFix.Checked = true; + this.cboxFeatureOffsetFix.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureOffsetFix.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureOffsetFix.FlatAppearance.BorderSize = 2; + this.cboxFeatureOffsetFix.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureOffsetFix.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureOffsetFix.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureOffsetFix.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureOffsetFix.Image = global::AgOpenGPS.Properties.Resources.YouTurnReverse; + this.cboxFeatureOffsetFix.Location = new System.Drawing.Point(174, 371); + this.cboxFeatureOffsetFix.Name = "cboxFeatureOffsetFix"; + this.cboxFeatureOffsetFix.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureOffsetFix.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureOffsetFix.TabIndex = 472; + this.cboxFeatureOffsetFix.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureOffsetFix.UseVisualStyleBackColor = false; + // + // cboxFeatureWebcam + // + this.cboxFeatureWebcam.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureWebcam.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureWebcam.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureWebcam.Checked = true; + this.cboxFeatureWebcam.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureWebcam.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureWebcam.FlatAppearance.BorderSize = 2; + this.cboxFeatureWebcam.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureWebcam.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureWebcam.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureWebcam.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureWebcam.Image = global::AgOpenGPS.Properties.Resources.Webcam; + this.cboxFeatureWebcam.Location = new System.Drawing.Point(174, 267); + this.cboxFeatureWebcam.Name = "cboxFeatureWebcam"; + this.cboxFeatureWebcam.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureWebcam.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureWebcam.TabIndex = 471; + this.cboxFeatureWebcam.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureWebcam.UseVisualStyleBackColor = false; + // + // cboxFeatureHideContour + // + this.cboxFeatureHideContour.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureHideContour.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureHideContour.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureHideContour.Checked = true; + this.cboxFeatureHideContour.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureHideContour.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureHideContour.FlatAppearance.BorderSize = 2; + this.cboxFeatureHideContour.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureHideContour.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureHideContour.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureHideContour.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureHideContour.Image = global::AgOpenGPS.Properties.Resources.Trash; + this.cboxFeatureHideContour.Location = new System.Drawing.Point(174, 163); + this.cboxFeatureHideContour.Name = "cboxFeatureHideContour"; + this.cboxFeatureHideContour.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureHideContour.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureHideContour.TabIndex = 470; + this.cboxFeatureHideContour.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureHideContour.UseVisualStyleBackColor = false; + // + // cboxFeatureABSmooth + // + this.cboxFeatureABSmooth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureABSmooth.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureABSmooth.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureABSmooth.Checked = true; + this.cboxFeatureABSmooth.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureABSmooth.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureABSmooth.FlatAppearance.BorderSize = 2; + this.cboxFeatureABSmooth.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureABSmooth.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureABSmooth.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureABSmooth.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureABSmooth.Image = global::AgOpenGPS.Properties.Resources.ABSmooth; + this.cboxFeatureABSmooth.Location = new System.Drawing.Point(174, 59); + this.cboxFeatureABSmooth.Name = "cboxFeatureABSmooth"; + this.cboxFeatureABSmooth.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureABSmooth.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureABSmooth.TabIndex = 469; + this.cboxFeatureABSmooth.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureABSmooth.UseVisualStyleBackColor = false; + // + // cboxFeatureRecPath + // + this.cboxFeatureRecPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureRecPath.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureRecPath.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureRecPath.Checked = true; + this.cboxFeatureRecPath.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureRecPath.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureRecPath.FlatAppearance.BorderSize = 2; + this.cboxFeatureRecPath.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureRecPath.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureRecPath.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureRecPath.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureRecPath.Image = global::AgOpenGPS.Properties.Resources.RecPath; + this.cboxFeatureRecPath.Location = new System.Drawing.Point(33, 371); + this.cboxFeatureRecPath.Name = "cboxFeatureRecPath"; + this.cboxFeatureRecPath.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureRecPath.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureRecPath.TabIndex = 467; + this.cboxFeatureRecPath.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureRecPath.UseVisualStyleBackColor = false; + // + // cboxFeatureBoundary + // + this.cboxFeatureBoundary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureBoundary.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureBoundary.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureBoundary.Checked = true; + this.cboxFeatureBoundary.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureBoundary.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureBoundary.FlatAppearance.BorderSize = 2; + this.cboxFeatureBoundary.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureBoundary.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureBoundary.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureBoundary.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureBoundary.Image = global::AgOpenGPS.Properties.Resources.Boundary; + this.cboxFeatureBoundary.Location = new System.Drawing.Point(33, 267); + this.cboxFeatureBoundary.Name = "cboxFeatureBoundary"; + this.cboxFeatureBoundary.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureBoundary.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureBoundary.TabIndex = 465; + this.cboxFeatureBoundary.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureBoundary.UseVisualStyleBackColor = false; + // + // cboxFeatureHeadland + // + this.cboxFeatureHeadland.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureHeadland.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureHeadland.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureHeadland.Checked = true; + this.cboxFeatureHeadland.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureHeadland.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureHeadland.FlatAppearance.BorderSize = 2; + this.cboxFeatureHeadland.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureHeadland.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureHeadland.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureHeadland.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureHeadland.Image = global::AgOpenGPS.Properties.Resources.HeadlandOn; + this.cboxFeatureHeadland.Location = new System.Drawing.Point(33, 163); + this.cboxFeatureHeadland.Name = "cboxFeatureHeadland"; + this.cboxFeatureHeadland.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureHeadland.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureHeadland.TabIndex = 464; + this.cboxFeatureHeadland.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureHeadland.UseVisualStyleBackColor = false; + // + // cboxFeatureTram + // + this.cboxFeatureTram.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxFeatureTram.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxFeatureTram.BackColor = System.Drawing.Color.WhiteSmoke; + this.cboxFeatureTram.Checked = true; + this.cboxFeatureTram.CheckState = System.Windows.Forms.CheckState.Checked; + this.cboxFeatureTram.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxFeatureTram.FlatAppearance.BorderSize = 2; + this.cboxFeatureTram.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxFeatureTram.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxFeatureTram.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxFeatureTram.ForeColor = System.Drawing.SystemColors.ControlText; + this.cboxFeatureTram.Image = global::AgOpenGPS.Properties.Resources.TramAll; + this.cboxFeatureTram.Location = new System.Drawing.Point(33, 59); + this.cboxFeatureTram.Name = "cboxFeatureTram"; + this.cboxFeatureTram.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxFeatureTram.Size = new System.Drawing.Size(77, 77); + this.cboxFeatureTram.TabIndex = 463; + this.cboxFeatureTram.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxFeatureTram.UseVisualStyleBackColor = false; + // + // rbtnDisplayImperial + // + this.rbtnDisplayImperial.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnDisplayImperial.BackColor = System.Drawing.Color.WhiteSmoke; + this.rbtnDisplayImperial.Checked = true; + this.rbtnDisplayImperial.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.rbtnDisplayImperial.FlatAppearance.BorderSize = 2; + this.rbtnDisplayImperial.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnDisplayImperial.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnDisplayImperial.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.rbtnDisplayImperial.ForeColor = System.Drawing.SystemColors.ControlText; + this.rbtnDisplayImperial.Image = global::AgOpenGPS.Properties.Resources.ConD_Imperial; + this.rbtnDisplayImperial.Location = new System.Drawing.Point(130, 37); + this.rbtnDisplayImperial.Name = "rbtnDisplayImperial"; + this.rbtnDisplayImperial.Size = new System.Drawing.Size(112, 64); + this.rbtnDisplayImperial.TabIndex = 469; + this.rbtnDisplayImperial.TabStop = true; + this.rbtnDisplayImperial.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.rbtnDisplayImperial.UseVisualStyleBackColor = false; + this.rbtnDisplayImperial.Click += new System.EventHandler(this.rbtnDisplayImperial_Click); + // + // rbtnDisplayMetric + // + this.rbtnDisplayMetric.Appearance = System.Windows.Forms.Appearance.Button; + this.rbtnDisplayMetric.BackColor = System.Drawing.Color.WhiteSmoke; + this.rbtnDisplayMetric.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.rbtnDisplayMetric.FlatAppearance.BorderSize = 2; + this.rbtnDisplayMetric.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.rbtnDisplayMetric.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.rbtnDisplayMetric.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.rbtnDisplayMetric.ForeColor = System.Drawing.SystemColors.ControlText; + this.rbtnDisplayMetric.Image = global::AgOpenGPS.Properties.Resources.ConD_Metric; + this.rbtnDisplayMetric.Location = new System.Drawing.Point(8, 37); + this.rbtnDisplayMetric.Name = "rbtnDisplayMetric"; + this.rbtnDisplayMetric.Size = new System.Drawing.Size(112, 64); + this.rbtnDisplayMetric.TabIndex = 468; + this.rbtnDisplayMetric.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.rbtnDisplayMetric.UseVisualStyleBackColor = false; + this.rbtnDisplayMetric.Click += new System.EventHandler(this.rbtnDisplayMetric_Click); + // + // chkDisplayLogElevation + // + this.chkDisplayLogElevation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayLogElevation.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayLogElevation.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayLogElevation.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayLogElevation.FlatAppearance.BorderSize = 2; + this.chkDisplayLogElevation.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayLogElevation.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayLogElevation.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayLogElevation.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayLogElevation.Image = global::AgOpenGPS.Properties.Resources.ConD_LogElevation; + this.chkDisplayLogElevation.Location = new System.Drawing.Point(680, 158); + this.chkDisplayLogElevation.Name = "chkDisplayLogElevation"; + this.chkDisplayLogElevation.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayLogElevation.Size = new System.Drawing.Size(100, 69); + this.chkDisplayLogElevation.TabIndex = 530; + this.chkDisplayLogElevation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayLogElevation.UseVisualStyleBackColor = false; + // + // chkSvennArrow + // + this.chkSvennArrow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkSvennArrow.Appearance = System.Windows.Forms.Appearance.Button; + this.chkSvennArrow.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkSvennArrow.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkSvennArrow.FlatAppearance.BorderSize = 2; + this.chkSvennArrow.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkSvennArrow.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkSvennArrow.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkSvennArrow.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkSvennArrow.Image = global::AgOpenGPS.Properties.Resources.SvennArrow; + this.chkSvennArrow.Location = new System.Drawing.Point(273, 34); + this.chkSvennArrow.Name = "chkSvennArrow"; + this.chkSvennArrow.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkSvennArrow.Size = new System.Drawing.Size(100, 69); + this.chkSvennArrow.TabIndex = 528; + this.chkSvennArrow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkSvennArrow.UseVisualStyleBackColor = false; + // + // chkDisplayBrightness + // + this.chkDisplayBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayBrightness.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayBrightness.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayBrightness.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayBrightness.FlatAppearance.BorderSize = 2; + this.chkDisplayBrightness.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayBrightness.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayBrightness.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayBrightness.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayBrightness.Image = global::AgOpenGPS.Properties.Resources.BrightnessUp; + this.chkDisplayBrightness.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.chkDisplayBrightness.Location = new System.Drawing.Point(90, 155); + this.chkDisplayBrightness.Name = "chkDisplayBrightness"; + this.chkDisplayBrightness.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayBrightness.Size = new System.Drawing.Size(100, 69); + this.chkDisplayBrightness.TabIndex = 526; + this.chkDisplayBrightness.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayBrightness.UseVisualStyleBackColor = false; + // + // chkDisplayFloor + // + this.chkDisplayFloor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayFloor.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayFloor.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayFloor.Checked = true; + this.chkDisplayFloor.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkDisplayFloor.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayFloor.FlatAppearance.BorderSize = 2; + this.chkDisplayFloor.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayFloor.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayFloor.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayFloor.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayFloor.Image = global::AgOpenGPS.Properties.Resources.ConD_FloorTexture; + this.chkDisplayFloor.Location = new System.Drawing.Point(456, 158); + this.chkDisplayFloor.Name = "chkDisplayFloor"; + this.chkDisplayFloor.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayFloor.Size = new System.Drawing.Size(100, 69); + this.chkDisplayFloor.TabIndex = 524; + this.chkDisplayFloor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayFloor.UseVisualStyleBackColor = false; + // + // chkDisplayLightbar + // + this.chkDisplayLightbar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayLightbar.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayLightbar.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayLightbar.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayLightbar.FlatAppearance.BorderSize = 2; + this.chkDisplayLightbar.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayLightbar.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayLightbar.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayLightbar.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayLightbar.Image = global::AgOpenGPS.Properties.Resources.ConD_LightBar; + this.chkDisplayLightbar.Location = new System.Drawing.Point(90, 276); + this.chkDisplayLightbar.Name = "chkDisplayLightbar"; + this.chkDisplayLightbar.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayLightbar.Size = new System.Drawing.Size(100, 69); + this.chkDisplayLightbar.TabIndex = 512; + this.chkDisplayLightbar.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayLightbar.UseVisualStyleBackColor = false; + // + // chkDisplayKeyboard + // + this.chkDisplayKeyboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayKeyboard.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayKeyboard.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayKeyboard.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayKeyboard.FlatAppearance.BorderSize = 2; + this.chkDisplayKeyboard.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayKeyboard.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayKeyboard.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayKeyboard.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayKeyboard.Image = global::AgOpenGPS.Properties.Resources.ConD_KeyBoard; + this.chkDisplayKeyboard.Location = new System.Drawing.Point(272, 158); + this.chkDisplayKeyboard.Name = "chkDisplayKeyboard"; + this.chkDisplayKeyboard.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayKeyboard.Size = new System.Drawing.Size(100, 69); + this.chkDisplayKeyboard.TabIndex = 511; + this.chkDisplayKeyboard.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayKeyboard.UseVisualStyleBackColor = false; + // + // chkDisplayPolygons + // + this.chkDisplayPolygons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayPolygons.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayPolygons.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayPolygons.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayPolygons.FlatAppearance.BorderSize = 2; + this.chkDisplayPolygons.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayPolygons.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayPolygons.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayPolygons.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayPolygons.Image = global::AgOpenGPS.Properties.Resources.ConD_Poligons; + this.chkDisplayPolygons.Location = new System.Drawing.Point(90, 34); + this.chkDisplayPolygons.Name = "chkDisplayPolygons"; + this.chkDisplayPolygons.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayPolygons.Size = new System.Drawing.Size(100, 69); + this.chkDisplayPolygons.TabIndex = 510; + this.chkDisplayPolygons.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayPolygons.UseVisualStyleBackColor = false; + // + // chkDisplayStartFullScreen + // + this.chkDisplayStartFullScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayStartFullScreen.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayStartFullScreen.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayStartFullScreen.Checked = true; + this.chkDisplayStartFullScreen.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkDisplayStartFullScreen.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayStartFullScreen.FlatAppearance.BorderSize = 2; + this.chkDisplayStartFullScreen.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayStartFullScreen.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayStartFullScreen.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayStartFullScreen.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayStartFullScreen.Image = global::AgOpenGPS.Properties.Resources.ConD_FullScreenBegin; + this.chkDisplayStartFullScreen.Location = new System.Drawing.Point(269, 276); + this.chkDisplayStartFullScreen.Name = "chkDisplayStartFullScreen"; + this.chkDisplayStartFullScreen.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayStartFullScreen.Size = new System.Drawing.Size(100, 69); + this.chkDisplayStartFullScreen.TabIndex = 509; + this.chkDisplayStartFullScreen.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayStartFullScreen.UseVisualStyleBackColor = false; + // + // chkDisplayLogNMEA + // + this.chkDisplayLogNMEA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayLogNMEA.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayLogNMEA.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayLogNMEA.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayLogNMEA.FlatAppearance.BorderSize = 2; + this.chkDisplayLogNMEA.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayLogNMEA.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayLogNMEA.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayLogNMEA.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayLogNMEA.Image = global::AgOpenGPS.Properties.Resources.ConD_LogNMEA; + this.chkDisplayLogNMEA.Location = new System.Drawing.Point(680, 34); + this.chkDisplayLogNMEA.Name = "chkDisplayLogNMEA"; + this.chkDisplayLogNMEA.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayLogNMEA.Size = new System.Drawing.Size(100, 69); + this.chkDisplayLogNMEA.TabIndex = 508; + this.chkDisplayLogNMEA.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayLogNMEA.UseVisualStyleBackColor = false; + // + // chkDisplayGrid + // + this.chkDisplayGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayGrid.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayGrid.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayGrid.Checked = true; + this.chkDisplayGrid.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkDisplayGrid.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayGrid.FlatAppearance.BorderSize = 2; + this.chkDisplayGrid.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayGrid.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayGrid.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayGrid.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayGrid.Image = global::AgOpenGPS.Properties.Resources.ConD_Grid; + this.chkDisplayGrid.Location = new System.Drawing.Point(456, 34); + this.chkDisplayGrid.Name = "chkDisplayGrid"; + this.chkDisplayGrid.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayGrid.Size = new System.Drawing.Size(100, 69); + this.chkDisplayGrid.TabIndex = 506; + this.chkDisplayGrid.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayGrid.UseVisualStyleBackColor = false; + // + // chkDisplaySpeedo + // + this.chkDisplaySpeedo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplaySpeedo.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplaySpeedo.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplaySpeedo.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplaySpeedo.FlatAppearance.BorderSize = 2; + this.chkDisplaySpeedo.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplaySpeedo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplaySpeedo.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplaySpeedo.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplaySpeedo.Image = global::AgOpenGPS.Properties.Resources.ConD_Speedometer; + this.chkDisplaySpeedo.Location = new System.Drawing.Point(90, 397); + this.chkDisplaySpeedo.Name = "chkDisplaySpeedo"; + this.chkDisplaySpeedo.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplaySpeedo.Size = new System.Drawing.Size(100, 69); + this.chkDisplaySpeedo.TabIndex = 504; + this.chkDisplaySpeedo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplaySpeedo.UseVisualStyleBackColor = false; + // + // chkDisplayExtraGuides + // + this.chkDisplayExtraGuides.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chkDisplayExtraGuides.Appearance = System.Windows.Forms.Appearance.Button; + this.chkDisplayExtraGuides.BackColor = System.Drawing.Color.WhiteSmoke; + this.chkDisplayExtraGuides.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.chkDisplayExtraGuides.FlatAppearance.BorderSize = 2; + this.chkDisplayExtraGuides.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.chkDisplayExtraGuides.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.chkDisplayExtraGuides.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkDisplayExtraGuides.ForeColor = System.Drawing.SystemColors.ControlText; + this.chkDisplayExtraGuides.Image = global::AgOpenGPS.Properties.Resources.ConD_ExtraGuides; + this.chkDisplayExtraGuides.Location = new System.Drawing.Point(456, 276); + this.chkDisplayExtraGuides.Name = "chkDisplayExtraGuides"; + this.chkDisplayExtraGuides.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.chkDisplayExtraGuides.Size = new System.Drawing.Size(100, 69); + this.chkDisplayExtraGuides.TabIndex = 503; + this.chkDisplayExtraGuides.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.chkDisplayExtraGuides.UseVisualStyleBackColor = false; + // + // btnOK + // + this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnOK.FlatAppearance.BorderSize = 0; + this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOK.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnOK.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnOK.Image = global::AgOpenGPS.Properties.Resources.OK64; + this.btnOK.Location = new System.Drawing.Point(777, 1); + this.btnOK.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.btnOK.Name = "btnOK"; + this.btnOK.Size = new System.Drawing.Size(80, 62); + this.btnOK.TabIndex = 452; + this.btnOK.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.btnOK.UseVisualStyleBackColor = true; + this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + // + // btnFeatureHides + // + this.btnFeatureHides.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnFeatureHides.Dock = System.Windows.Forms.DockStyle.Top; + this.btnFeatureHides.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnFeatureHides.FlatAppearance.BorderSize = 0; + this.btnFeatureHides.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnFeatureHides.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnFeatureHides.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnFeatureHides.Image = global::AgOpenGPS.Properties.Resources.Con_FeatureMenu; + this.btnFeatureHides.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnFeatureHides.Location = new System.Drawing.Point(0, 1669); + this.btnFeatureHides.Name = "btnFeatureHides"; + this.btnFeatureHides.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnFeatureHides.Size = new System.Drawing.Size(120, 80); + this.btnFeatureHides.TabIndex = 4; + this.btnFeatureHides.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnFeatureHides.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnFeatureHides.UseVisualStyleBackColor = false; + this.btnFeatureHides.Click += new System.EventHandler(this.btnFeatureHides_Click); + // + // btnDisplay + // + this.btnDisplay.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnDisplay.Dock = System.Windows.Forms.DockStyle.Top; + this.btnDisplay.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnDisplay.FlatAppearance.BorderSize = 0; + this.btnDisplay.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnDisplay.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnDisplay.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnDisplay.Image = global::AgOpenGPS.Properties.Resources.Con_Display; + this.btnDisplay.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnDisplay.Location = new System.Drawing.Point(0, 1589); + this.btnDisplay.Name = "btnDisplay"; + this.btnDisplay.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnDisplay.Size = new System.Drawing.Size(120, 80); + this.btnDisplay.TabIndex = 2; + this.btnDisplay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnDisplay.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnDisplay.UseVisualStyleBackColor = false; + this.btnDisplay.Click += new System.EventHandler(this.btnDisplay_Click); + // + // btnTram + // + this.btnTram.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnTram.Dock = System.Windows.Forms.DockStyle.Top; + this.btnTram.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnTram.FlatAppearance.BorderSize = 0; + this.btnTram.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnTram.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnTram.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnTram.Image = global::AgOpenGPS.Properties.Resources.Con_TramMenu; + this.btnTram.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnTram.Location = new System.Drawing.Point(0, 1509); + this.btnTram.Name = "btnTram"; + this.btnTram.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnTram.Size = new System.Drawing.Size(120, 80); + this.btnTram.TabIndex = 3; + this.btnTram.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnTram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnTram.UseVisualStyleBackColor = false; + this.btnTram.Click += new System.EventHandler(this.btnTram_Click); + // + // btnMachineRelay + // + this.btnMachineRelay.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnMachineRelay.Dock = System.Windows.Forms.DockStyle.Top; + this.btnMachineRelay.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnMachineRelay.FlatAppearance.BorderSize = 0; + this.btnMachineRelay.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnMachineRelay.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnMachineRelay.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnMachineRelay.Image = global::AgOpenGPS.Properties.Resources.ConS_Pins; + this.btnMachineRelay.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnMachineRelay.Location = new System.Drawing.Point(0, 80); + this.btnMachineRelay.Name = "btnMachineRelay"; + this.btnMachineRelay.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnMachineRelay.Size = new System.Drawing.Size(120, 80); + this.btnMachineRelay.TabIndex = 3; + this.btnMachineRelay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnMachineRelay.UseVisualStyleBackColor = false; + this.btnMachineRelay.Click += new System.EventHandler(this.btnMachineRelay_Click); + // + // btnMachineModule + // + this.btnMachineModule.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnMachineModule.Dock = System.Windows.Forms.DockStyle.Top; + this.btnMachineModule.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnMachineModule.FlatAppearance.BorderSize = 0; + this.btnMachineModule.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnMachineModule.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnMachineModule.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnMachineModule.Image = global::AgOpenGPS.Properties.Resources.ConS_ModulesMachine; + this.btnMachineModule.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnMachineModule.Location = new System.Drawing.Point(0, 0); + this.btnMachineModule.Name = "btnMachineModule"; + this.btnMachineModule.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnMachineModule.Size = new System.Drawing.Size(120, 80); + this.btnMachineModule.TabIndex = 1; + this.btnMachineModule.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnMachineModule.UseVisualStyleBackColor = false; + this.btnMachineModule.Click += new System.EventHandler(this.btnMachineModule_Click); + // + // btnArduino + // + this.btnArduino.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnArduino.Dock = System.Windows.Forms.DockStyle.Top; + this.btnArduino.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnArduino.FlatAppearance.BorderSize = 0; + this.btnArduino.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnArduino.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnArduino.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnArduino.Image = global::AgOpenGPS.Properties.Resources.Con_ModulesMenu; + this.btnArduino.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnArduino.Location = new System.Drawing.Point(0, 1269); + this.btnArduino.Name = "btnArduino"; + this.btnArduino.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnArduino.Size = new System.Drawing.Size(120, 80); + this.btnArduino.TabIndex = 115; + this.btnArduino.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnArduino.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnArduino.UseVisualStyleBackColor = false; + this.btnArduino.Click += new System.EventHandler(this.btnArduino_Click); + // + // btnUTurn + // + this.btnUTurn.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnUTurn.Dock = System.Windows.Forms.DockStyle.Top; + this.btnUTurn.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnUTurn.FlatAppearance.BorderSize = 0; + this.btnUTurn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnUTurn.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnUTurn.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnUTurn.Image = global::AgOpenGPS.Properties.Resources.Con_UTurnMenu; + this.btnUTurn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnUTurn.Location = new System.Drawing.Point(0, 1194); + this.btnUTurn.Name = "btnUTurn"; + this.btnUTurn.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnUTurn.Size = new System.Drawing.Size(120, 75); + this.btnUTurn.TabIndex = 116; + this.btnUTurn.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnUTurn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnUTurn.UseVisualStyleBackColor = false; + this.btnUTurn.Click += new System.EventHandler(this.btnUTurn_Click); + // + // btnSubRoll + // + this.btnSubRoll.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubRoll.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubRoll.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubRoll.FlatAppearance.BorderSize = 0; + this.btnSubRoll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubRoll.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubRoll.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubRoll.Image = global::AgOpenGPS.Properties.Resources.ConS_SourcesRoll; + this.btnSubRoll.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubRoll.Location = new System.Drawing.Point(0, 80); + this.btnSubRoll.Name = "btnSubRoll"; + this.btnSubRoll.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubRoll.Size = new System.Drawing.Size(120, 80); + this.btnSubRoll.TabIndex = 0; + this.btnSubRoll.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubRoll.UseVisualStyleBackColor = false; + this.btnSubRoll.Click += new System.EventHandler(this.btnSubRoll_Click); + // + // btnSubHeading + // + this.btnSubHeading.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubHeading.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubHeading.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubHeading.FlatAppearance.BorderSize = 0; + this.btnSubHeading.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubHeading.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubHeading.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubHeading.Image = global::AgOpenGPS.Properties.Resources.ConS_SourcesHeading; + this.btnSubHeading.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubHeading.Location = new System.Drawing.Point(0, 0); + this.btnSubHeading.Name = "btnSubHeading"; + this.btnSubHeading.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnSubHeading.Size = new System.Drawing.Size(120, 80); + this.btnSubHeading.TabIndex = 1; + this.btnSubHeading.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubHeading.UseVisualStyleBackColor = false; + this.btnSubHeading.Click += new System.EventHandler(this.btnSubHeading_Click); + // + // btnDataSources + // + this.btnDataSources.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnDataSources.Dock = System.Windows.Forms.DockStyle.Top; + this.btnDataSources.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnDataSources.FlatAppearance.BorderSize = 0; + this.btnDataSources.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnDataSources.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnDataSources.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnDataSources.Image = global::AgOpenGPS.Properties.Resources.Con_SourcesMenu; + this.btnDataSources.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnDataSources.Location = new System.Drawing.Point(0, 954); + this.btnDataSources.Name = "btnDataSources"; + this.btnDataSources.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0); + this.btnDataSources.Size = new System.Drawing.Size(120, 80); + this.btnDataSources.TabIndex = 114; + this.btnDataSources.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnDataSources.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnDataSources.UseVisualStyleBackColor = false; + this.btnDataSources.Click += new System.EventHandler(this.btnDataSources_Click); + // + // btnSubSwitches + // + this.btnSubSwitches.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubSwitches.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubSwitches.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubSwitches.FlatAppearance.BorderSize = 0; + this.btnSubSwitches.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubSwitches.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubSwitches.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubSwitches.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSwitch; + this.btnSubSwitches.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubSwitches.Location = new System.Drawing.Point(0, 432); + this.btnSubSwitches.Name = "btnSubSwitches"; + this.btnSubSwitches.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubSwitches.Size = new System.Drawing.Size(120, 72); + this.btnSubSwitches.TabIndex = 1; + this.btnSubSwitches.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubSwitches.UseVisualStyleBackColor = false; + this.btnSubSwitches.Click += new System.EventHandler(this.btnSubSwitches_Click); + // + // btnSubToolSettings + // + this.btnSubToolSettings.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubToolSettings.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubToolSettings.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubToolSettings.FlatAppearance.BorderSize = 0; + this.btnSubToolSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubToolSettings.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubToolSettings.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubToolSettings.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSettings; + this.btnSubToolSettings.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubToolSettings.Location = new System.Drawing.Point(0, 360); + this.btnSubToolSettings.Name = "btnSubToolSettings"; + this.btnSubToolSettings.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnSubToolSettings.Size = new System.Drawing.Size(120, 72); + this.btnSubToolSettings.TabIndex = 4; + this.btnSubToolSettings.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubToolSettings.UseVisualStyleBackColor = false; + this.btnSubToolSettings.Click += new System.EventHandler(this.btnSubToolSettings_Click); + // + // btnSubSections + // + this.btnSubSections.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubSections.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubSections.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubSections.FlatAppearance.BorderSize = 0; + this.btnSubSections.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubSections.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubSections.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubSections.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementSection; + this.btnSubSections.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubSections.Location = new System.Drawing.Point(0, 288); + this.btnSubSections.Name = "btnSubSections"; + this.btnSubSections.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubSections.Size = new System.Drawing.Size(120, 72); + this.btnSubSections.TabIndex = 0; + this.btnSubSections.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubSections.UseVisualStyleBackColor = false; + this.btnSubSections.Click += new System.EventHandler(this.btnSubSections_Click); + // + // btnSubToolOffset + // + this.btnSubToolOffset.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubToolOffset.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubToolOffset.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubToolOffset.FlatAppearance.BorderSize = 0; + this.btnSubToolOffset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubToolOffset.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubToolOffset.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubToolOffset.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementOffset; + this.btnSubToolOffset.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubToolOffset.Location = new System.Drawing.Point(0, 216); + this.btnSubToolOffset.Name = "btnSubToolOffset"; + this.btnSubToolOffset.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubToolOffset.Size = new System.Drawing.Size(120, 72); + this.btnSubToolOffset.TabIndex = 1; + this.btnSubToolOffset.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubToolOffset.UseVisualStyleBackColor = false; + this.btnSubToolOffset.Click += new System.EventHandler(this.btnSubToolOffset_Click); + // + // btnSubPivot + // + this.btnSubPivot.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubPivot.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubPivot.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubPivot.FlatAppearance.BorderSize = 0; + this.btnSubPivot.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubPivot.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubPivot.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubPivot.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementPivot; + this.btnSubPivot.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubPivot.Location = new System.Drawing.Point(0, 144); + this.btnSubPivot.Name = "btnSubPivot"; + this.btnSubPivot.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubPivot.Size = new System.Drawing.Size(120, 72); + this.btnSubPivot.TabIndex = 217; + this.btnSubPivot.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubPivot.UseVisualStyleBackColor = false; + this.btnSubPivot.Click += new System.EventHandler(this.btnSubPivot_Click); + // + // btnSubHitch + // + this.btnSubHitch.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubHitch.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubHitch.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubHitch.FlatAppearance.BorderSize = 0; + this.btnSubHitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubHitch.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubHitch.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubHitch.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementHitch; + this.btnSubHitch.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubHitch.Location = new System.Drawing.Point(0, 72); + this.btnSubHitch.Name = "btnSubHitch"; + this.btnSubHitch.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnSubHitch.Size = new System.Drawing.Size(120, 72); + this.btnSubHitch.TabIndex = 5; + this.btnSubHitch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubHitch.UseVisualStyleBackColor = false; + this.btnSubHitch.Click += new System.EventHandler(this.btnSubHitch_Click); // - // lblSecTotalWidthFeet + // btnSubToolType // - this.lblSecTotalWidthFeet.AutoSize = true; - this.lblSecTotalWidthFeet.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblSecTotalWidthFeet.ForeColor = System.Drawing.Color.Black; - this.lblSecTotalWidthFeet.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblSecTotalWidthFeet.Location = new System.Drawing.Point(620, 32); - this.lblSecTotalWidthFeet.Name = "lblSecTotalWidthFeet"; - this.lblSecTotalWidthFeet.Size = new System.Drawing.Size(36, 25); - this.lblSecTotalWidthFeet.TabIndex = 298; - this.lblSecTotalWidthFeet.Text = "FF"; + this.btnSubToolType.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubToolType.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubToolType.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubToolType.FlatAppearance.BorderSize = 0; + this.btnSubToolType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubToolType.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubToolType.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubToolType.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementConfig; + this.btnSubToolType.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubToolType.Location = new System.Drawing.Point(0, 0); + this.btnSubToolType.Name = "btnSubToolType"; + this.btnSubToolType.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubToolType.Size = new System.Drawing.Size(120, 72); + this.btnSubToolType.TabIndex = 6; + this.btnSubToolType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubToolType.UseVisualStyleBackColor = false; + this.btnSubToolType.Click += new System.EventHandler(this.btnSubToolType_Click); // - // lblSecTotalWidthInches + // btnTool // - this.lblSecTotalWidthInches.AutoSize = true; - this.lblSecTotalWidthInches.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblSecTotalWidthInches.ForeColor = System.Drawing.Color.Black; - this.lblSecTotalWidthInches.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblSecTotalWidthInches.Location = new System.Drawing.Point(679, 32); - this.lblSecTotalWidthInches.Name = "lblSecTotalWidthInches"; - this.lblSecTotalWidthInches.Size = new System.Drawing.Size(32, 25); - this.lblSecTotalWidthInches.TabIndex = 300; - this.lblSecTotalWidthInches.Text = "II"; + this.btnTool.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnTool.Dock = System.Windows.Forms.DockStyle.Top; + this.btnTool.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnTool.FlatAppearance.BorderSize = 0; + this.btnTool.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnTool.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnTool.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnTool.Image = global::AgOpenGPS.Properties.Resources.Con_ImplementMenu; + this.btnTool.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnTool.Location = new System.Drawing.Point(0, 368); + this.btnTool.Name = "btnTool"; + this.btnTool.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0); + this.btnTool.Size = new System.Drawing.Size(120, 80); + this.btnTool.TabIndex = 3; + this.btnTool.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnTool.UseVisualStyleBackColor = false; + this.btnTool.Click += new System.EventHandler(this.btnTool_Click); // - // panelBottom + // btnSubGuidance // - this.panelBottom.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; - this.panelBottom.Controls.Add(this.lblFeetMeters); - this.panelBottom.Controls.Add(this.label52); - this.panelBottom.Controls.Add(this.lblSecTotalWidthInches); - this.panelBottom.Controls.Add(this.lblSecTotalWidthFeet); - this.panelBottom.Controls.Add(this.btnOK); - this.panelBottom.Controls.Add(this.lblInchesCm); - this.panelBottom.Controls.Add(this.lblSecTotalWidthMeters); - this.panelBottom.Controls.Add(this.lblCurrentVehicle); - this.panelBottom.Controls.Add(this.label22); - this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panelBottom.ForeColor = System.Drawing.Color.Lime; - this.panelBottom.Location = new System.Drawing.Point(124, 645); - this.panelBottom.Name = "panelBottom"; - this.panelBottom.Size = new System.Drawing.Size(862, 66); - this.panelBottom.TabIndex = 112; + this.btnSubGuidance.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubGuidance.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubGuidance.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubGuidance.FlatAppearance.BorderSize = 0; + this.btnSubGuidance.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubGuidance.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubGuidance.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubGuidance.Image = global::AgOpenGPS.Properties.Resources.ConS_ModulesSteer; + this.btnSubGuidance.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubGuidance.Location = new System.Drawing.Point(0, 216); + this.btnSubGuidance.Name = "btnSubGuidance"; + this.btnSubGuidance.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnSubGuidance.Size = new System.Drawing.Size(120, 72); + this.btnSubGuidance.TabIndex = 3; + this.btnSubGuidance.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubGuidance.UseVisualStyleBackColor = false; + this.btnSubGuidance.Click += new System.EventHandler(this.btnSubGuidance_Click); // - // lblFeetMeters + // btnSubAntenna // - this.lblFeetMeters.AutoSize = true; - this.lblFeetMeters.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblFeetMeters.ForeColor = System.Drawing.Color.DarkGreen; - this.lblFeetMeters.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblFeetMeters.Location = new System.Drawing.Point(455, 9); - this.lblFeetMeters.Name = "lblFeetMeters"; - this.lblFeetMeters.Size = new System.Drawing.Size(52, 25); - this.lblFeetMeters.TabIndex = 453; - this.lblFeetMeters.Text = "Feet"; + this.btnSubAntenna.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubAntenna.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubAntenna.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubAntenna.FlatAppearance.BorderSize = 0; + this.btnSubAntenna.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubAntenna.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubAntenna.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubAntenna.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementAntenna; + this.btnSubAntenna.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubAntenna.Location = new System.Drawing.Point(0, 144); + this.btnSubAntenna.Name = "btnSubAntenna"; + this.btnSubAntenna.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubAntenna.Size = new System.Drawing.Size(120, 72); + this.btnSubAntenna.TabIndex = 2; + this.btnSubAntenna.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubAntenna.UseVisualStyleBackColor = false; + this.btnSubAntenna.Click += new System.EventHandler(this.btnSubAntenna_Click); // - // btnOK + // btnSubDimensions // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.btnOK.FlatAppearance.BorderSize = 0; - this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnOK.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.btnOK.ForeColor = System.Drawing.SystemColors.ButtonFace; - this.btnOK.Image = global::AgOpenGPS.Properties.Resources.OK64; - this.btnOK.Location = new System.Drawing.Point(777, 1); - this.btnOK.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(80, 62); - this.btnOK.TabIndex = 452; - this.btnOK.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + this.btnSubDimensions.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubDimensions.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubDimensions.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubDimensions.FlatAppearance.BorderSize = 0; + this.btnSubDimensions.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubDimensions.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubDimensions.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubDimensions.Image = global::AgOpenGPS.Properties.Resources.ConS_ImplementHitch; + this.btnSubDimensions.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubDimensions.Location = new System.Drawing.Point(0, 72); + this.btnSubDimensions.Name = "btnSubDimensions"; + this.btnSubDimensions.Padding = new System.Windows.Forms.Padding(25, 0, 0, 0); + this.btnSubDimensions.Size = new System.Drawing.Size(120, 72); + this.btnSubDimensions.TabIndex = 1; + this.btnSubDimensions.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubDimensions.UseVisualStyleBackColor = false; + this.btnSubDimensions.Click += new System.EventHandler(this.btnSubDimensions_Click); // - // label22 + // btnSubVehicleType // - this.label22.BackColor = System.Drawing.Color.Transparent; - this.label22.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label22.ForeColor = System.Drawing.Color.Black; - this.label22.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label22.Location = new System.Drawing.Point(369, 9); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(85, 25); - this.label22.TabIndex = 454; - this.label22.Text = "Units:"; - this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubVehicleType.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnSubVehicleType.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSubVehicleType.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnSubVehicleType.FlatAppearance.BorderSize = 0; + this.btnSubVehicleType.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSubVehicleType.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSubVehicleType.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnSubVehicleType.Image = global::AgOpenGPS.Properties.Resources.ConS_VehicleConfig; + this.btnSubVehicleType.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; + this.btnSubVehicleType.Location = new System.Drawing.Point(0, 0); + this.btnSubVehicleType.Name = "btnSubVehicleType"; + this.btnSubVehicleType.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0); + this.btnSubVehicleType.Size = new System.Drawing.Size(120, 72); + this.btnSubVehicleType.TabIndex = 0; + this.btnSubVehicleType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSubVehicleType.UseVisualStyleBackColor = false; + this.btnSubVehicleType.Click += new System.EventHandler(this.btnSubVehicleType_Click); // - // timer1 + // btnVehicle // - this.timer1.Enabled = true; - this.timer1.Interval = 1000; - this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + this.btnVehicle.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; + this.btnVehicle.Dock = System.Windows.Forms.DockStyle.Top; + this.btnVehicle.FlatAppearance.BorderColor = System.Drawing.Color.Gray; + this.btnVehicle.FlatAppearance.BorderSize = 0; + this.btnVehicle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnVehicle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnVehicle.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.btnVehicle.Image = global::AgOpenGPS.Properties.Resources.Con_VehicleMenu; + this.btnVehicle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnVehicle.Location = new System.Drawing.Point(0, 0); + this.btnVehicle.Name = "btnVehicle"; + this.btnVehicle.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0); + this.btnVehicle.Size = new System.Drawing.Size(120, 80); + this.btnVehicle.TabIndex = 113; + this.btnVehicle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnVehicle.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.btnVehicle.UseVisualStyleBackColor = false; + this.btnVehicle.Click += new System.EventHandler(this.btnVehicle_Click); // // FormConfig // @@ -9899,21 +9894,17 @@ private void InitializeComponent() this.panel4WdBrands.ResumeLayout(false); this.panelHarvesterBrands.ResumeLayout(false); this.panelTractorBrands.ResumeLayout(false); - this.panelOpacity.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pboxAlpha)).EndInit(); this.tabVAntenna.ResumeLayout(false); this.tabVAntenna.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudAntennaHeight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudAntennaPivot)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudAntennaOffset)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pboxAntenna)).EndInit(); this.tabVDimensions.ResumeLayout(false); this.tabVDimensions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudTractorHitchLength)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudVehicleTrack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudWheelbase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudMinTurnRadius)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.tabVGuidance.ResumeLayout(false); this.tabVGuidance.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudMinSteerSpeed)).EndInit(); @@ -9923,22 +9914,13 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudGuidanceLookAhead)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSnapDistance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLineWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.tabTConfig.ResumeLayout(false); this.gboxAttachment.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pboxConfigHarvester)).EndInit(); this.tabTHitch.ResumeLayout(false); this.tabTHitch.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudTrailingHitchLength)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDrawbarLength)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTankHitch)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.picboxToolHitch)).EndInit(); this.tabToolOffset.ResumeLayout(false); this.tabToolOffset.PerformLayout(); this.groupBox3.ResumeLayout(false); @@ -9982,7 +9964,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudSection02)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSection01)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfSections)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); this.tabTSwitches.ResumeLayout(false); this.grpControls.ResumeLayout(false); this.grpSwitch.ResumeLayout(false); @@ -9990,46 +9971,36 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudLookAheadOff)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTurnOffDelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLookAhead)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); this.tabDHeading.ResumeLayout(false); this.tabDHeading.PerformLayout(); this.gboxDual.ResumeLayout(false); this.gboxDual.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudDualReverseDistance)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDualHeadingOffset)).EndInit(); this.gboxSingle.ResumeLayout(false); this.gboxSingle.PerformLayout(); this.headingGroupBox.ResumeLayout(false); this.tabDRoll.ResumeLayout(false); this.tabDRoll.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); this.tabUTurn.ResumeLayout(false); this.tabUTurn.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudYouTurnRadius)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTurnDistanceFromBoundary)).EndInit(); this.tabRelay.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pboxSendRelay)).EndInit(); this.tabAMachine.ResumeLayout(false); this.tabAMachine.PerformLayout(); this.groupBox4.ResumeLayout(false); this.groupBox4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudHydLiftLookAhead)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLowerTime)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudRaiseTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudUser1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pboxSendMachine)).EndInit(); this.tabTram.ResumeLayout(false); this.tabTram.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudTramWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); this.tabBtns.ResumeLayout(false); this.tabBtns.PerformLayout(); this.tabDisplay.ResumeLayout(false); @@ -10037,6 +10008,30 @@ private void InitializeComponent() this.unitsGroupBox.ResumeLayout(false); this.panelBottom.ResumeLayout(false); this.panelBottom.PerformLayout(); + this.panelOpacity.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pboxAlpha)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxAntenna)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxConfigHarvester)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.picboxToolHitch)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxSendRelay)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pboxSendMachine)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); this.ResumeLayout(false); } diff --git a/SourceCode/GPS/Forms/Settings/FormConfig.cs b/SourceCode/GPS/Forms/Settings/FormConfig.cs index e53768aa4..69ea1f676 100644 --- a/SourceCode/GPS/Forms/Settings/FormConfig.cs +++ b/SourceCode/GPS/Forms/Settings/FormConfig.cs @@ -304,6 +304,5 @@ private void rbtnDisplayMetric_Click(object sender, EventArgs e) Close(); //FormConfig_Load(this, e); } - } } \ No newline at end of file diff --git a/SourceCode/GPS/Properties/Resources.Designer.cs b/SourceCode/GPS/Properties/Resources.Designer.cs index 16d130728..e67df1297 100644 --- a/SourceCode/GPS/Properties/Resources.Designer.cs +++ b/SourceCode/GPS/Properties/Resources.Designer.cs @@ -999,6 +999,16 @@ internal static System.Drawing.Bitmap ConD_LightBar { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ConD_LogElevation { + get { + object obj = ResourceManager.GetObject("ConD_LogElevation", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/SourceCode/GPS/Properties/Resources.resx b/SourceCode/GPS/Properties/Resources.resx index 253382305..fc7527607 100644 --- a/SourceCode/GPS/Properties/Resources.resx +++ b/SourceCode/GPS/Properties/Resources.resx @@ -121,12 +121,6 @@ ..\btnImages\AntennaHarvester.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_Grid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\ImplementSettings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\BoundaryRecord.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -145,8 +139,11 @@ ..\btnImages\Config\ConS_VehicleLines.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_ImplementOffset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\APlusPlusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\SemiCircle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -184,9 +181,6 @@ ..\btnImages\Config\ConS_Respnse.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\HeadlandBuild.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\FieldStats.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -241,8 +235,11 @@ ..\btnImages\MappingOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ColorUnlocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\WizSteerDot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\Config\ConV_GuidanceLookAhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_Compass.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -274,14 +271,11 @@ ..\btnImages\Config\SectionOnLookAhead.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ToolChkFront.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\RadiusWheelBase4WD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ABPivot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_SpeedoNeedle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionOffBoundary.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\ManualOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -292,6 +286,12 @@ ..\btnImages\Config\Tractor\z_TractorValtra.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ColorUnlocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\Config\Harvester\z_HarvesterNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConD_LightBar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -307,12 +307,12 @@ ..\btnImages\Config\ConS_Pins.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\APlusMinusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ToolOffsetNegativeLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Con_SourcesHead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\SteerDriveOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -385,15 +385,9 @@ ..\btnImages\PointDelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\HeadlandSectionOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\DnArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SwitchActiveClosed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\TiltDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -409,15 +403,15 @@ ..\btnImages\FlagDelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\4WD\z_4WDFrontAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConF_HydLiftSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramAll.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConV_MaxAngVel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\ColourPick.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -427,8 +421,8 @@ ..\btnImages\Config\ConSt_InvertDirection.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\YouSkipOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ToolHitchPageRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConS_ImplementConfig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -442,26 +436,23 @@ ..\btnImages\ZoomOut48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConS_Brand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Steer\Sf_SteerTab.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\HelpSmall.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ABPivot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\Config\ConD_Imperial.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Images\VehicleOpacity.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\FilePrevious.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionsExample.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Brand\Holder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConV_ABLineLength.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -496,12 +487,18 @@ ..\btnImages\Config\ConS_SourceFix.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ABLineCycleBk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ToolHitchPivotOffsetNeg.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\AutoSteerConf.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\con_VehicleFunctionSpeedLimit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\4WD\z_4WDFrontChallenger.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -514,8 +511,8 @@ ..\btnImages\FileNew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_ImplementSection.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\AutoSteerOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\FileSaveAs.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -535,6 +532,9 @@ ..\btnImages\Config\ConS_ImplementSwitch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConU_UTurnSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\Brand\Deutz.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -556,15 +556,9 @@ ..\btnImages\Images\z_RateMap1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ToolHitchPageRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\TracksInvisible.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\UpArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\boundaryPause.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -598,12 +592,21 @@ ..\btnImages\Images\z_Lift.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Brand\Holder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\WindowDayMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\Config\ConS_VehicleConfig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ToolGap.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Camera3D64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\FlagYel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConS_ImplementHitch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -619,23 +622,20 @@ ..\btnImages\Config\SectionLookAheadDelay.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\APlusPlusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConV_MaxAutoSteer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_FrontWheels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\HydDown.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ..\btnImages\Config\ConDa_ResetIMU.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Harvester\z_HarvesterClaas.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionOffBoundary.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\YouSkipOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramOuter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -646,9 +646,6 @@ ..\btnimages\config\const_turnsensorpressure.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\BoundaryReduce.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\FileEditName.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -664,8 +661,8 @@ ..\btnImages\Images\z_Floor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionOffBelow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Sort.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\AgIO.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -682,17 +679,14 @@ ..\btnImages\Config\Con_UTurnMenu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_Tractor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConSt_TurnSensor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\SectionWidth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_AutoDayNight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\HydDown.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\btnImages\Images\z_Harvester.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -766,8 +760,8 @@ ..\btnImages\ABSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SemiCircle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Con_SourcesHead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\BoundaryLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -802,8 +796,8 @@ ..\btnImages\ABLatLonLatLon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_FloorTexture.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\MapGray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\ColorLocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -829,9 +823,6 @@ ..\btnImages\HeadlandSlice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\LetterBBlue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConU_UturnLength.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -847,12 +838,6 @@ ..\btnImages\Images\z_NoGPS.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\SectionOn.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ..\btnImages\Config\ConV_GuidanceLookAhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\Brand\Massey.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -904,8 +889,8 @@ ..\btnImages\Config\Tractor\z_TractorClaas.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_Brand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_FloorTexture.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TrackOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -925,14 +910,11 @@ ..\Resources\rtk_lost.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\btnImages\Config\ConF_SteerSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\ABTrackCurve.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Brand\NewHolland.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_SpeedoNeedle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Con_RightMenuEdit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -949,23 +931,20 @@ ..\btnImages\Pan.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\JobNameTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\WindowMinimize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\FlagGrn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\con_VehicleFunctionSpeedLimit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_Grid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Brand\Claas.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionMapping.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_Imperial.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Con_SourcesGPSDual.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -973,8 +952,11 @@ ..\btnImages\ToolAcceptChange.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionsExample.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\ABShrinkGrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Tractor\z_TractorNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -991,8 +973,8 @@ ..\btnImages\ABTracks.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\WizSteerDot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionOffBelow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\WindowNightMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1006,8 +988,8 @@ ..\btnImages\Config\tractor-raise.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConSt_Mandatory.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Brand\NewHolland.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ToolOffsetPositiveRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1024,14 +1006,14 @@ ..\btnImages\BoundaryLoadMultiFromGE.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\APlusMinusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\BoundaryReduce.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConD_FullScreenBegin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConV_MaxAutoSteer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Brand\Fendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\SectionLookAheadOff.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1042,6 +1024,9 @@ ..\btnImages\JobActive.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SnapRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\AutoTrack.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1051,6 +1036,9 @@ ..\btnImages\HeadlandDeletePoints.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_4WDRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\Tractor\z_TractorAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1084,8 +1072,8 @@ ..\btnImages\TrackOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\4WD\z_4WDFrontAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ImplementSettings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConD_Poligons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1120,8 +1108,11 @@ ..\btnImages\SectionMasterOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Brand\Fendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_Turn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\Config\ConV_MaxAngVel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\WizWasZeroReset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1129,26 +1120,32 @@ ..\btnImages\WindowClose.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\AutoSteerOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_AutoDayNight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\4WD\z_4WDRearCase.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConS_ImplementOffset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\YouTurnU.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ABLineCycleBk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\UpArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\ModePurePursuit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Harvester\z_HarvesterJD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConD_ExtraGuides.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Harvester\z_HarvesterJD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\SectionOn.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\btnImages\TramLines.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1186,6 +1183,12 @@ ..\btnImages\Config\Brand\Same.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConF_SoundSections.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\VideoLink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\OK64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1201,23 +1204,23 @@ ..\btnImages\Config\ConSt_Danfoss.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_Turn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConSt_Mandatory.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConD_Sky.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConU_UTurnSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\HeadlandBuild.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConMa_LiftLowerTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\MapGray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\JobNameTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\WindowDayMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\LetterBBlue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_TurnCancel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1252,21 +1255,18 @@ ..\btnImages\Config\ConS_ModulesMachine.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\FlagYel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ToolChkFront.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Next.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Sort.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionMapping.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Cancel64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_VehicleConfig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\TrackLine.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1294,8 +1294,8 @@ ..\btnImages\ABTrackAB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Harvester\z_HarvesterNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SwitchActiveClosed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Steer\Sf_Stanley.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1303,23 +1303,26 @@ ..\btnImages\Config\Tractor\z_TractorCase.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\VideoLink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConF_SteerSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\TF012.WAV;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\btnImages\YouTurnH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\HeadlandSectionOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\YouSkipOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ABShrinkGrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_Tractor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Camera3D64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\YouTurnH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\Config\ConS_ImplementSection.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TiltUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1327,14 +1330,14 @@ ..\btnImages\Images\z_Speedo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_4WDRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\RadiusWheelBase4WD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Tractor\z_TractorFendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SnapRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\pathResumeClose.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1342,7 +1345,7 @@ ..\btnImages\pathResumeStart.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConF_SoundSections.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_LogElevation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/SourceCode/GPS/btnImages/Config/ConD_LogElevation.png b/SourceCode/GPS/btnImages/Config/ConD_LogElevation.png new file mode 100644 index 0000000000000000000000000000000000000000..37f39efed1673ca0ca308bd0f905c92a1c60891a GIT binary patch literal 3036 zcmV<23nTQ2P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!T|za=Cg2O%UOLKYIr1O)GmfLCG!K|%3?(s-3;yzwXzL@h;2@q)5Ez%vxy;sJP2 z3X0+p!4eFI8U+%_1~xI98?rG8gz^9D?QiR)>6x9Lot~LZy7+vXSB!{KvR2JTHoh@Ox=VV*DoOmAe;T*E*qB?L4VQy5267}07J|; z-1^g1n=;LI$Y@_lS8ek;d&j^w`)Imq>O=pkkHWPNq5 z8X4`6>FN+TIr2)+S08$2Bef5r7g~eR3k90Rux9PJ-&U?&X)j7wO^!;h`nq#f+ZIvF z(qh9%6Q@|uT{qiHSU>nsyIaGEz6q0UbERU-HQe}*iVF`RAR4d+Sp#M{;uu?{rtsR( zSXok|KI5q4>=HL%9*4}f%QvjCvx^!rHlaC8TD16}bg?GmC)zFPSpOJt{r84e;wX65s*uQ)1o(=atoEA6CJp0%d8R#_imxr*vbHFB|PlHsBYfH%s&*BkfD_oC(fAuSXbq(Kc#HI* zWNmMLE4^F7!26;Rxvu-99m(1#g>3gG$!p>z5*NifdY=^OP)LNXl-yWfmEdI(#-xm9 zv}%wz(mp0gzmwc}Ojn@HIbZVc)=N*6A{_(~emBr<(xFn8Z%Mw*-z9?2!!b{Kz4WAH zEm8{ak=!uo4-(Di1=16wv!riGKa>bK`*sA3YdL1eO1%=>Zk1|f8X^tydZfUU~7u%Reg(2YEK8@A+>CL){y!e?$riKF*6)tV&qO39m%UD69B2!{x_N_EZ26gGVEQ^v%-!ia`lQrW7_0fopnph@lALZSbR_7%fLh`g z!jnlVr6?bie81@X63yr5rPCyW?9Y}yCsF=&DcqiTYqL31;$bE*&5JAtN<7#cj~0kA z>N6$0aK^UPhC?j@&oFN+m%Jw@Xdc3joPj!h9v5|zM5N@?($EW&1;9xO2lrX=P>^HW z8ISWy!fY`|(ZG{&Yxe0!Q zel7uhQeKV3^TVBopGsbSlT_F2=m2gA!w=sF!w;HD9t5WI(KO@TE|u6n4;FnZLaLN`CP-OG6V^1x-@ew2=mSg9M+DyqrFu>iY;)pt<>p zvycch*UMp;-?v9FHM}6QPsi`kGV} zZnjUiK#fkXVD_BvgPKPTgx5-5&NV$xY8D+~KpX@TseX|}I~XE7U82v!rDuG@(7@Lj zE@X!pI2A=R0tAGKclthXP8x;b3qu*-*DoddLim*A<;>A+R;;q^2FwPa$s`Qt`eP&y zRlQU4-{Qs}FVzbVN$67-`BxQ}QF`^A%WaJD@CgFI?95<&yEd>Fxhq4b&_w-V4LQ+nUH9uspny$rui#)#B!U_-#Trp zf#l^p+JQU(T@M6w!?7Sv2<|(z$jdI2s*&{!X@<*!zX9QaWAZSOA|P|($Hu8)`bVR* z#eh7Oq2tgWXY?vOl*n@zgz_19G;LjOwo$B#{x1c;k@E)S7>E=o(Cm^Vp& zvdwfH__qf3Ns5O-Gfy|Q%a29+i3o_V6Z~%V#2<2Zeti00CQ|`7JaozkB^IG&HIP|h zgvI8 zamA0rGK4e6c)FWC-YW`D4WTqYClb?67?C0t%q;NXD7^-T4h4V4#(1qPsOjNrWW3o6 zVeRA`*sh(NDiOHge5f^KLLeIxW&(2F47iX|Yhc)MGwmR6Mp?6={|h4>-rt4ev1_Gv z|6xKn+~ItE!ZG8)a1LtT8^s~SZawEn4dgwE!sIE6Qc-xAM&m*X|b2`|z%}b07fq|L1PR))) eB9TZlG5bGCX_co4LIEfM0000 Date: Tue, 2 Apr 2024 11:48:59 -0600 Subject: [PATCH 03/19] no gps fix --- SourceCode/GPS/Forms/Controls.Designer.cs | 10 +++++++++- SourceCode/GPS/btnImages/Images/z_NoGPS.png | Bin 9949 -> 14440 bytes 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/SourceCode/GPS/Forms/Controls.Designer.cs b/SourceCode/GPS/Forms/Controls.Designer.cs index 394232af9..baa3c5122 100644 --- a/SourceCode/GPS/Forms/Controls.Designer.cs +++ b/SourceCode/GPS/Forms/Controls.Designer.cs @@ -421,7 +421,15 @@ private void btnJobMenu_Click(object sender, EventArgs e) { if (!isFirstFixPositionSet || sentenceCounter > 299) { - TimedMessageBox(2500, "No GPS", "You are lost with no GPS, Fix that First"); + if (isJobStarted) + { + FileSaveEverythingBeforeClosingField(); + TimedMessageBox(2500, gStr.gsField, "Field is now closed"); + } + else + { + TimedMessageBox(2500, "No GPS", "No GPS Position Found"); + } return; } diff --git a/SourceCode/GPS/btnImages/Images/z_NoGPS.png b/SourceCode/GPS/btnImages/Images/z_NoGPS.png index 5578d16f141692ec1cfab8ee0d9ee36c6f2e366d..29335a7a4a4e79a433b7a3793c864ab5bb4ab0ac 100644 GIT binary patch literal 14440 zcmb8W^;=Z$7cRVKV218)kPZO>0m%VrQ4o;s6s4q_p;HgT9N8+6!EaBu>kZo>US)*1OSl-WjPrwPvgT3 ztnWthDM)UE&LjUNWp*>H0ds}E&@}0vR)mI1aZyi3( zIoqk&{aTP?O?)y$tCwArONuom>UJeEO`xFBTa_$}QLb-Z7Rwkd<|nxT_6Y|qRSy+B zCYwV--`$tm$i1Xn<41wU{*VKXEvYGwdYYv`7aoX}5@JIr5F`k2%3u>fOyqWDRot)% z8ZJpVf81wM_*%fiKnmUJ6Q;OFx%KmX#FIT#Ky-vDU9vxC0d*?<&}VJhp-kO zi%Pm)<<526Y2CIJ01eagB`rQ1aX4`J*xQDAU7&bg

DxK()bzB&FNP1@?aaIhPm9#+Q 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 Ope+AJu2R-C=>Gt{S#9M2 literal 9949 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 S;O_8hfR>uRYORWG)c*mAG54nc From 933369712a273ba8aa62f485e20377b1a2c0cc70 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Wed, 3 Apr 2024 12:23:19 -0600 Subject: [PATCH 04/19] Linux Loopback Names --- SourceCode/AgIO/Source/Forms/FormEthernet.designer.cs | 7 +++---- SourceCode/AgIO/Source/Forms/FormLoop.Designer.cs | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/SourceCode/AgIO/Source/Forms/FormEthernet.designer.cs b/SourceCode/AgIO/Source/Forms/FormEthernet.designer.cs index ba0f69017..21ddc72c7 100644 --- a/SourceCode/AgIO/Source/Forms/FormEthernet.designer.cs +++ b/SourceCode/AgIO/Source/Forms/FormEthernet.designer.cs @@ -65,14 +65,13 @@ private void InitializeComponent() // // label13 // - this.label13.AutoSize = true; this.label13.BackColor = System.Drawing.Color.White; this.label13.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label13.Location = new System.Drawing.Point(2, 23); + this.label13.Location = new System.Drawing.Point(2, 7); this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(161, 46); + this.label13.Size = new System.Drawing.Size(161, 77); this.label13.TabIndex = 518; - this.label13.Text = "Loopback Address\r\n(Don\'t Change)"; + this.label13.Text = "Loopback Address\r\n(Don\'t Change For Windows)"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // cboxIsSendNMEAToUDP diff --git a/SourceCode/AgIO/Source/Forms/FormLoop.Designer.cs b/SourceCode/AgIO/Source/Forms/FormLoop.Designer.cs index cee322ff2..d6b7af495 100644 --- a/SourceCode/AgIO/Source/Forms/FormLoop.Designer.cs +++ b/SourceCode/AgIO/Source/Forms/FormLoop.Designer.cs @@ -329,7 +329,7 @@ private void InitializeComponent() this.toolStripEthernet.Image = global::AgIO.Properties.Resources.EthernetSetup; this.toolStripEthernet.Name = "toolStripEthernet"; this.toolStripEthernet.Size = new System.Drawing.Size(296, 70); - this.toolStripEthernet.Text = "Ethernet Setup"; + this.toolStripEthernet.Text = "Linux Users"; this.toolStripEthernet.Click += new System.EventHandler(this.toolStripEthernet_Click); // // deviceManagerToolStripMenuItem From 408fb048b1d165eeb3d753b193209a52a050cd06 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Wed, 3 Apr 2024 13:43:12 -0600 Subject: [PATCH 05/19] Add tram control display on off --- SourceCode/GPS/AgOpenGPS.csproj | 1 + SourceCode/GPS/Classes/CTool.cs | 6 +- SourceCode/GPS/Forms/OpenGL.Designer.cs | 4 +- .../Forms/Settings/ConfigModule.Designer.cs | 4 + .../GPS/Forms/Settings/FormConfig.Designer.cs | 52 +++- .../GPS/Properties/Resources.Designer.cs | 10 + SourceCode/GPS/Properties/Resources.resx | 251 +++++++++--------- .../GPS/Properties/Settings.Designer.cs | 12 + SourceCode/GPS/Properties/Settings.settings | 3 + SourceCode/GPS/app.config | 3 + .../Config/ConT_TramOverrideDisplay.png | Bin 0 -> 13066 bytes 11 files changed, 213 insertions(+), 133 deletions(-) create mode 100644 SourceCode/GPS/btnImages/Config/ConT_TramOverrideDisplay.png diff --git a/SourceCode/GPS/AgOpenGPS.csproj b/SourceCode/GPS/AgOpenGPS.csproj index 553309c46..71cea6e58 100644 --- a/SourceCode/GPS/AgOpenGPS.csproj +++ b/SourceCode/GPS/AgOpenGPS.csproj @@ -941,6 +941,7 @@ + diff --git a/SourceCode/GPS/Classes/CTool.cs b/SourceCode/GPS/Classes/CTool.cs index 81040b094..38b66a69b 100644 --- a/SourceCode/GPS/Classes/CTool.cs +++ b/SourceCode/GPS/Classes/CTool.cs @@ -54,6 +54,8 @@ public class CTool public int zones; public int[] zoneRanges = new int[9]; + public bool isDisplayTramControl; + //Constructor called by FormGPS public CTool(FormGPS _f) { @@ -116,6 +118,8 @@ public CTool(FormGPS _f) { zoneRanges[i] = int.Parse(words[i]); } + + isDisplayTramControl = Properties.Settings.Default.setTool_isDisplayTramControl; } public void DrawTool() @@ -371,7 +375,7 @@ public void DrawTool() } //tram Dots - if (mf.tram.displayMode != 0) + if (isDisplayTramControl && mf.tram.displayMode != 0) { if (mf.camera.camSetDistance > -300) { diff --git a/SourceCode/GPS/Forms/OpenGL.Designer.cs b/SourceCode/GPS/Forms/OpenGL.Designer.cs index f4873d374..8d7e57deb 100644 --- a/SourceCode/GPS/Forms/OpenGL.Designer.cs +++ b/SourceCode/GPS/Forms/OpenGL.Designer.cs @@ -377,7 +377,7 @@ private void oglMain_Paint(object sender, PaintEventArgs e) DrawSteerCircle(); - if (tram.displayMode != 0) { DrawTramMarkers(); } + if (tool.isDisplayTramControl && tram.displayMode != 0) { DrawTramMarkers(); } if (vehicle.isHydLiftOn) DrawLiftIndicator(); @@ -643,7 +643,7 @@ private void oglBack_Paint(object sender, PaintEventArgs e) //draw 245 green for the tram tracks - if (tram.displayMode != 0 && (trk.idx > -1)) + if (tool.isDisplayTramControl && tram.displayMode != 0 && (trk.idx > -1)) { GL.Color3((byte)0, (byte)245, (byte)0); GL.LineWidth(8); diff --git a/SourceCode/GPS/Forms/Settings/ConfigModule.Designer.cs b/SourceCode/GPS/Forms/Settings/ConfigModule.Designer.cs index 406ee6573..49bb40d30 100644 --- a/SourceCode/GPS/Forms/Settings/ConfigModule.Designer.cs +++ b/SourceCode/GPS/Forms/Settings/ConfigModule.Designer.cs @@ -555,12 +555,16 @@ private void tabTram_Enter(object sender, EventArgs e) nudTramWidth.Value = (int)(Math.Abs(Properties.Settings.Default.setTram_tramWidth) * mf.m2InchOrCm); chkBoxOverrideTramControlPos.Checked = Properties.Settings.Default.setTool_isTramOuterInverted; + cboxDisplayTramControl.Checked = Properties.Settings.Default.setTool_isDisplayTramControl; } private void tabTram_Leave(object sender, EventArgs e) { Properties.Settings.Default.setTool_isTramOuterInverted = chkBoxOverrideTramControlPos.Checked; + Properties.Settings.Default.setTool_isDisplayTramControl = cboxDisplayTramControl.Checked; + mf.tool.isDisplayTramControl = cboxDisplayTramControl.Checked; + mf.tram.IsTramOuterOrInner(); Properties.Settings.Default.Save(); diff --git a/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs b/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs index 09b804e02..85cf34140 100644 --- a/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs +++ b/SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs @@ -498,6 +498,7 @@ private void InitializeComponent() this.pboxSendMachine = new System.Windows.Forms.PictureBox(); this.cboxMachInvertRelays = new System.Windows.Forms.CheckBox(); this.btnSendMachinePGN = new System.Windows.Forms.Button(); + this.cboxDisplayTramControl = new System.Windows.Forms.CheckBox(); this.chkBoxOverrideTramControlPos = new System.Windows.Forms.CheckBox(); this.pictureBox8 = new System.Windows.Forms.PictureBox(); this.cboxSectionsSound = new System.Windows.Forms.CheckBox(); @@ -555,6 +556,7 @@ private void InitializeComponent() this.btnSubDimensions = new System.Windows.Forms.Button(); this.btnSubVehicleType = new System.Windows.Forms.Button(); this.btnVehicle = new System.Windows.Forms.Button(); + this.label111 = new System.Windows.Forms.Label(); this.panelLeftSideMenu.SuspendLayout(); this.panelArduinoSubMenu.SuspendLayout(); this.panelDataSourcesSubMenu.SuspendLayout(); @@ -6353,6 +6355,8 @@ private void InitializeComponent() // tabTram // this.tabTram.BackColor = System.Drawing.Color.WhiteSmoke; + this.tabTram.Controls.Add(this.label111); + this.tabTram.Controls.Add(this.cboxDisplayTramControl); this.tabTram.Controls.Add(this.chkBoxOverrideTramControlPos); this.tabTram.Controls.Add(this.label85); this.tabTram.Controls.Add(this.lblTramWidthUnits); @@ -6376,7 +6380,7 @@ private void InitializeComponent() this.label85.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label85.ForeColor = System.Drawing.Color.Black; this.label85.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label85.Location = new System.Drawing.Point(278, 287); + this.label85.Location = new System.Drawing.Point(407, 286); this.label85.Name = "label85"; this.label85.Size = new System.Drawing.Size(51, 16); this.label85.TabIndex = 483; @@ -6390,7 +6394,7 @@ private void InitializeComponent() this.lblTramWidthUnits.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTramWidthUnits.ForeColor = System.Drawing.Color.Black; this.lblTramWidthUnits.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.lblTramWidthUnits.Location = new System.Drawing.Point(517, 120); + this.lblTramWidthUnits.Location = new System.Drawing.Point(452, 120); this.lblTramWidthUnits.Name = "lblTramWidthUnits"; this.lblTramWidthUnits.Size = new System.Drawing.Size(30, 19); this.lblTramWidthUnits.TabIndex = 478; @@ -6402,7 +6406,7 @@ private void InitializeComponent() this.label75.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label75.AutoSize = true; this.label75.ForeColor = System.Drawing.Color.Black; - this.label75.Location = new System.Drawing.Point(391, 85); + this.label75.Location = new System.Drawing.Point(326, 85); this.label75.Name = "label75"; this.label75.Size = new System.Drawing.Size(75, 16); this.label75.TabIndex = 477; @@ -6415,7 +6419,7 @@ private void InitializeComponent() this.nudTramWidth.Cursor = System.Windows.Forms.Cursors.IBeam; this.nudTramWidth.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.nudTramWidth.InterceptArrowKeys = false; - this.nudTramWidth.Location = new System.Drawing.Point(356, 105); + this.nudTramWidth.Location = new System.Drawing.Point(291, 105); this.nudTramWidth.Maximum = new decimal(new int[] { 5000, 0, @@ -8682,6 +8686,25 @@ private void InitializeComponent() this.btnSendMachinePGN.UseVisualStyleBackColor = false; this.btnSendMachinePGN.Click += new System.EventHandler(this.btnSendMachinePGN_Click); // + // cboxDisplayTramControl + // + this.cboxDisplayTramControl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.cboxDisplayTramControl.Appearance = System.Windows.Forms.Appearance.Button; + this.cboxDisplayTramControl.BackColor = System.Drawing.Color.Transparent; + this.cboxDisplayTramControl.FlatAppearance.BorderColor = System.Drawing.Color.Black; + this.cboxDisplayTramControl.FlatAppearance.CheckedBackColor = System.Drawing.Color.LightGreen; + this.cboxDisplayTramControl.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.cboxDisplayTramControl.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cboxDisplayTramControl.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.cboxDisplayTramControl.Image = global::AgOpenGPS.Properties.Resources.ConT_TramOverrideDisplay; + this.cboxDisplayTramControl.Location = new System.Drawing.Point(594, 31); + this.cboxDisplayTramControl.Name = "cboxDisplayTramControl"; + this.cboxDisplayTramControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.cboxDisplayTramControl.Size = new System.Drawing.Size(179, 195); + this.cboxDisplayTramControl.TabIndex = 485; + this.cboxDisplayTramControl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.cboxDisplayTramControl.UseVisualStyleBackColor = false; + // // chkBoxOverrideTramControlPos // this.chkBoxOverrideTramControlPos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -8693,7 +8716,7 @@ private void InitializeComponent() this.chkBoxOverrideTramControlPos.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkBoxOverrideTramControlPos.ForeColor = System.Drawing.SystemColors.ButtonFace; this.chkBoxOverrideTramControlPos.Image = global::AgOpenGPS.Properties.Resources.ConT_TramOverride; - this.chkBoxOverrideTramControlPos.Location = new System.Drawing.Point(172, 306); + this.chkBoxOverrideTramControlPos.Location = new System.Drawing.Point(301, 305); this.chkBoxOverrideTramControlPos.Name = "chkBoxOverrideTramControlPos"; this.chkBoxOverrideTramControlPos.RightToLeft = System.Windows.Forms.RightToLeft.Yes; this.chkBoxOverrideTramControlPos.Size = new System.Drawing.Size(282, 232); @@ -8705,7 +8728,7 @@ private void InitializeComponent() // this.pictureBox8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.pictureBox8.Image = global::AgOpenGPS.Properties.Resources.ConT_TramSpacing; - this.pictureBox8.Location = new System.Drawing.Point(172, 31); + this.pictureBox8.Location = new System.Drawing.Point(107, 31); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new System.Drawing.Size(179, 195); this.pictureBox8.TabIndex = 119; @@ -9857,6 +9880,21 @@ private void InitializeComponent() this.btnVehicle.UseVisualStyleBackColor = false; this.btnVehicle.Click += new System.EventHandler(this.btnVehicle_Click); // + // label111 + // + this.label111.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label111.AutoSize = true; + this.label111.BackColor = System.Drawing.Color.Transparent; + this.label111.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label111.ForeColor = System.Drawing.Color.Black; + this.label111.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label111.Location = new System.Drawing.Point(655, 13); + this.label111.Name = "label111"; + this.label111.Size = new System.Drawing.Size(53, 16); + this.label111.TabIndex = 486; + this.label111.Text = "Display?"; + this.label111.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // // FormConfig // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -10560,5 +10598,7 @@ private void InitializeComponent() private System.Windows.Forms.CheckBox cboxSectionsSound; private System.Windows.Forms.Label label102; private NudlessNumericUpDown nudDualReverseDistance; + private System.Windows.Forms.CheckBox cboxDisplayTramControl; + private System.Windows.Forms.Label label111; } } \ No newline at end of file diff --git a/SourceCode/GPS/Properties/Resources.Designer.cs b/SourceCode/GPS/Properties/Resources.Designer.cs index e67df1297..39f7aaeda 100644 --- a/SourceCode/GPS/Properties/Resources.Designer.cs +++ b/SourceCode/GPS/Properties/Resources.Designer.cs @@ -1459,6 +1459,16 @@ internal static System.Drawing.Bitmap ConT_TramOverride { } } + ///

+ /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ConT_TramOverrideDisplay { + get { + object obj = ResourceManager.GetObject("ConT_TramOverrideDisplay", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/SourceCode/GPS/Properties/Resources.resx b/SourceCode/GPS/Properties/Resources.resx index fc7527607..1ff494360 100644 --- a/SourceCode/GPS/Properties/Resources.resx +++ b/SourceCode/GPS/Properties/Resources.resx @@ -121,6 +121,12 @@ ..\btnImages\AntennaHarvester.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_Grid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\ImplementSettings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\BoundaryRecord.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -139,11 +145,8 @@ ..\btnImages\Config\ConS_VehicleLines.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\APlusPlusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\SemiCircle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConS_ImplementOffset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -181,6 +184,9 @@ ..\btnImages\Config\ConS_Respnse.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\HeadlandBuild.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\FieldStats.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -235,11 +241,8 @@ ..\btnImages\MappingOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\WizSteerDot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\Config\ConV_GuidanceLookAhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ColorUnlocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_Compass.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -271,9 +274,15 @@ ..\btnImages\Config\SectionOnLookAhead.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ToolChkFront.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\ABPivot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_AutoDayNight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\SectionOffBoundary.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -286,12 +295,6 @@ ..\btnImages\Config\Tractor\z_TractorValtra.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ColorUnlocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\Config\Harvester\z_HarvesterNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConD_LightBar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -313,8 +316,8 @@ ..\btnImages\Config\ToolOffsetNegativeLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SteerDriveOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Con_SourcesHead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConT_TramOverride.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -325,6 +328,9 @@ ..\btnImages\FileClose.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConSt_Mandatory.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\Tractor\z_TractorKubota.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -376,6 +382,9 @@ ..\btnImages\Config\ConSt_InvertRelay.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\RadiusWheelBase4WD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\Brand\TriangleVehicle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -385,9 +394,15 @@ ..\btnImages\PointDelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_Tractor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\DnArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SwitchActiveClosed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\TiltDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -403,15 +418,15 @@ ..\btnImages\FlagDelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\4WD\z_4WDFrontAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConF_HydLiftSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramAll.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConV_MaxAngVel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\ColourPick.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -451,8 +466,11 @@ ..\btnImages\FilePrevious.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Brand\Holder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConD_LogElevation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\SectionsExample.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConV_ABLineLength.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -466,6 +484,9 @@ ..\btnImages\FileDelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\HeadlandSlice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConT_Symmetric.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -487,18 +508,12 @@ ..\btnImages\Config\ConS_SourceFix.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ABLineCycleBk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ToolHitchPivotOffsetNeg.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\AutoSteerConf.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\con_VehicleFunctionSpeedLimit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\4WD\z_4WDFrontChallenger.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -511,8 +526,8 @@ ..\btnImages\FileNew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\AutoSteerOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConS_ImplementSection.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\FileSaveAs.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -532,9 +547,6 @@ ..\btnImages\Config\ConS_ImplementSwitch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConU_UTurnSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\Brand\Deutz.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -556,9 +568,15 @@ ..\btnImages\Images\z_RateMap1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionMapping.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\TracksInvisible.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\UpArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\boundaryPause.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -592,21 +610,12 @@ ..\btnImages\Images\z_Lift.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\WindowDayMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\Config\ConS_VehicleConfig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Brand\Holder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ToolGap.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Camera3D64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\FlagYel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConS_ImplementHitch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -622,8 +631,8 @@ ..\btnImages\Config\SectionLookAheadDelay.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConV_MaxAutoSteer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\APlusPlusB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_FrontWheels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -661,9 +670,6 @@ ..\btnImages\Images\z_Floor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Sort.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\AgIO.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -700,6 +706,9 @@ ..\btnImages\SnapToPivot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SwitchOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\ConS_SourcesRoll.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -760,8 +769,8 @@ ..\btnImages\ABSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Con_SourcesHead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SemiCircle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\BoundaryLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -796,9 +805,6 @@ ..\btnImages\ABLatLonLatLon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\MapGray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\ColorLocked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -820,8 +826,11 @@ ..\btnImages\Config\ConD_KeyBoard.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\HeadlandSlice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SectionOffBelow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\btnImages\LetterBBlue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConU_UturnLength.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -838,6 +847,12 @@ ..\btnImages\Images\z_NoGPS.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\SectionOn.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\btnImages\Config\ConV_GuidanceLookAhead.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\Config\Brand\Massey.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -856,8 +871,8 @@ ..\btnImages\LetterABlue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SwitchOn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SteerDriveOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Con_SourcesRTKAlarm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -910,6 +925,9 @@ ..\Resources\rtk_lost.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\btnImages\Config\ConF_SteerSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\ABTrackCurve.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -931,14 +949,17 @@ ..\btnImages\Pan.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\JobNameTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\WindowMinimize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\FlagGrn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_Grid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\con_VehicleFunctionSpeedLimit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Brand\Claas.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -952,11 +973,8 @@ ..\btnImages\ToolAcceptChange.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionsExample.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\ABShrinkGrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Tractor\z_TractorNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -973,8 +991,8 @@ ..\btnImages\ABTracks.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionOffBelow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\WizSteerDot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\WindowNightMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1012,8 +1030,8 @@ ..\btnImages\Config\ConD_FullScreenBegin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Brand\Fendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConV_MaxAutoSteer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\SectionLookAheadOff.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1024,9 +1042,6 @@ ..\btnImages\JobActive.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SnapRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\AutoTrack.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1036,9 +1051,6 @@ ..\btnImages\HeadlandDeletePoints.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_4WDRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\Tractor\z_TractorAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1072,8 +1084,8 @@ ..\btnImages\TrackOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ImplementSettings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\4WD\z_4WDFrontAoG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConD_Poligons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1108,11 +1120,8 @@ ..\btnImages\SectionMasterOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_Turn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\btnImages\Config\ConV_MaxAngVel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Brand\Fendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\WizWasZeroReset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1120,32 +1129,26 @@ ..\btnImages\WindowClose.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_AutoDayNight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\AutoSteerOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\4WD\z_4WDRearCase.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_ImplementOffset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\YouTurnU.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\UpArrow64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ABLineCycleBk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\ModePurePursuit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\Harvester\z_HarvesterJD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\Config\ConD_ExtraGuides.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\SectionOn.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\btnImages\Config\Harvester\z_HarvesterJD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TramLines.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1186,9 +1189,6 @@ ..\btnImages\Config\ConF_SoundSections.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\VideoLink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\btnImages\OK64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1204,23 +1204,23 @@ ..\btnImages\Config\ConSt_Danfoss.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConSt_Mandatory.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_Turn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConD_Sky.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\HeadlandBuild.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConU_UTurnSmooth.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\ConMa_LiftLowerTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\JobNameTime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\MapGray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\LetterBBlue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\WindowDayMode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Images\z_TurnCancel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1255,18 +1255,21 @@ ..\btnImages\Config\ConS_ModulesMachine.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\ToolChkFront.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\FlagYel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Next.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SectionMapping.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Sort.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Cancel64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConS_VehicleConfig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\btnImages\TrackLine.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1294,8 +1297,8 @@ ..\btnImages\ABTrackAB.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\SwitchActiveClosed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\Harvester\z_HarvesterNH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Steer\Sf_Stanley.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1303,8 +1306,8 @@ ..\btnImages\Config\Tractor\z_TractorCase.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConF_SteerSound.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\VideoLink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\TF012.WAV;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1315,14 +1318,14 @@ ..\btnImages\YouSkipOff.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Images\z_Tractor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\ABShrinkGrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\YouTurnH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConS_ImplementSection.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Camera3D64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\TiltUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1330,14 +1333,14 @@ ..\btnImages\Images\z_Speedo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\RadiusWheelBase4WD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Images\z_4WDRear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\Config\Tractor\z_TractorFendt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\SnapRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\btnImages\pathResumeClose.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1345,7 +1348,7 @@ ..\btnImages\pathResumeStart.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\btnImages\Config\ConD_LogElevation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\btnImages\Config\ConT_TramOverrideDisplay.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/SourceCode/GPS/Properties/Settings.Designer.cs b/SourceCode/GPS/Properties/Settings.Designer.cs index 67e7f332a..7a03f3f9f 100644 --- a/SourceCode/GPS/Properties/Settings.Designer.cs +++ b/SourceCode/GPS/Properties/Settings.Designer.cs @@ -2915,5 +2915,17 @@ public double setGPS_dualReverseDetectionDistance { this["setGPS_dualReverseDetectionDistance"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool setTool_isDisplayTramControl { + get { + return ((bool)(this["setTool_isDisplayTramControl"])); + } + set { + this["setTool_isDisplayTramControl"] = value; + } + } } } diff --git a/SourceCode/GPS/Properties/Settings.settings b/SourceCode/GPS/Properties/Settings.settings index 42320d74c..b8b217c38 100644 --- a/SourceCode/GPS/Properties/Settings.settings +++ b/SourceCode/GPS/Properties/Settings.settings @@ -725,5 +725,8 @@ 0.25 + + True + \ No newline at end of file diff --git a/SourceCode/GPS/app.config b/SourceCode/GPS/app.config index c2ef8fee9..d5c23f2f9 100644 --- a/SourceCode/GPS/app.config +++ b/SourceCode/GPS/app.config @@ -727,6 +727,9 @@ 0.25 + + True + diff --git a/SourceCode/GPS/btnImages/Config/ConT_TramOverrideDisplay.png b/SourceCode/GPS/btnImages/Config/ConT_TramOverrideDisplay.png new file mode 100644 index 0000000000000000000000000000000000000000..15ed35685ba6ed29b5fd9815afd0f31e213ca5eb GIT binary patch literal 13066 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 a&+zEs*}vs|`oH=WfP#$5ry41f;Qs@X5L`C^ literal 0 HcmV?d00001 From 4302664f8391ec018dd2a44c24988d7826bcc3df Mon Sep 17 00:00:00 2001 From: BrianTee Date: Wed, 3 Apr 2024 14:11:31 -0600 Subject: [PATCH 06/19] tram hidden remove touch detect --- SourceCode/GPS/Forms/GUI.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceCode/GPS/Forms/GUI.Designer.cs b/SourceCode/GPS/Forms/GUI.Designer.cs index d94b3935e..8c3a306c3 100644 --- a/SourceCode/GPS/Forms/GUI.Designer.cs +++ b/SourceCode/GPS/Forms/GUI.Designer.cs @@ -1306,7 +1306,7 @@ private void oglMain_MouseDown(object sender, MouseEventArgs e) } //tram override - if (point.Y > 68 && point.Y < 120) + if (tool.isDisplayTramControl && (point.Y > 68 && point.Y < 120)) { if (point.X > centerX - 100 && point.X < centerX - 40) { From 04d45b66bc27f78d9be3aa5b34ff336bd3382e80 Mon Sep 17 00:00:00 2001 From: Brian Tischler Date: Thu, 4 Apr 2024 13:30:09 -0600 Subject: [PATCH 07/19] no uturn for stanley --- SourceCode/GPS/Forms/GUI.Designer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SourceCode/GPS/Forms/GUI.Designer.cs b/SourceCode/GPS/Forms/GUI.Designer.cs index 8c3a306c3..4e2ca398c 100644 --- a/SourceCode/GPS/Forms/GUI.Designer.cs +++ b/SourceCode/GPS/Forms/GUI.Designer.cs @@ -758,12 +758,12 @@ public void PanelUpdateRightAndBottom() btnAutoSteer.Enabled = false; } - btnAutoYouTurn.Visible = trk.idx > -1 && !ct.isContourBtnOn && isBnd; + btnAutoYouTurn.Visible = trk.idx > -1 && !ct.isContourBtnOn && isBnd && !isStanleyUsed; btnCycleLines.Visible = tracksVisible > 1 && trk.idx > -1 && !ct.isContourBtnOn; btnCycleLinesBk.Visible = tracksVisible > 1 && trk.idx > -1 && !ct.isContourBtnOn; - cboxpRowWidth.Visible = trk.idx > -1; - btnYouSkipEnable.Visible = trk.idx > -1; + cboxpRowWidth.Visible = trk.idx > -1 && !isStanleyUsed; + btnYouSkipEnable.Visible = trk.idx > -1 && !isStanleyUsed; btnSnapToPivot.Visible = trk.idx > -1 && isNudgeOn; btnAdjLeft.Visible = trk.idx > -1 && isNudgeOn; From 400efbd482def987eed1665d1c00351d449a3fe8 Mon Sep 17 00:00:00 2001 From: Brian Tischler Date: Thu, 4 Apr 2024 15:09:32 -0600 Subject: [PATCH 08/19] extend curve +4 on each end --- SourceCode/GPS/Classes/CABCurve.cs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/SourceCode/GPS/Classes/CABCurve.cs b/SourceCode/GPS/Classes/CABCurve.cs index 969cced7a..700730ff3 100644 --- a/SourceCode/GPS/Classes/CABCurve.cs +++ b/SourceCode/GPS/Classes/CABCurve.cs @@ -337,9 +337,11 @@ public void BuildCurveCurrentList(vec3 pivot) { int ptCnt = curList.Count - 1; + bool isAdding = false; //end while (mf.bnd.bndList[0].fenceLineEar.IsPointInPolygon(curList[curList.Count - 1])) { + isAdding = true; for (int i = 1; i < 10; i++) { vec3 pt = new vec3(curList[ptCnt]); @@ -350,11 +352,25 @@ public void BuildCurveCurrentList(vec3 pivot) ptCnt = curList.Count - 1; } + if (isAdding) + { + vec3 pt = new vec3(curList[curList.Count - 1]); + for (int i = 1; i < 5; i++) + { + pt.easting += (Math.Sin(pt.heading) * 2); + pt.northing += (Math.Cos(pt.heading) * 2); + curList.Add(pt); + } + } + + isAdding = false; + //and the beginning pt33 = new vec3(curList[0]); while (mf.bnd.bndList[0].fenceLineEar.IsPointInPolygon(curList[0])) { + isAdding = true; pt33 = new vec3(curList[0]); for (int i = 1; i < 10; i++) @@ -365,6 +381,18 @@ public void BuildCurveCurrentList(vec3 pivot) curList.Insert(0, pt); } } + + if (isAdding) + { + vec3 pt = new vec3(curList[0]); + for (int i = 1; i < 5; i++) + { + pt.easting -= (Math.Sin(pt.heading) * 2); + pt.northing -= (Math.Cos(pt.heading) * 2); + curList.Insert(0, pt); + } + } + } } } From 535da2c4516a234f21a2d4a7951e60719b95b327 Mon Sep 17 00:00:00 2001 From: Brian Tischler Date: Thu, 4 Apr 2024 18:56:36 -0600 Subject: [PATCH 09/19] uturn compensation --- SourceCode/GPS/Classes/CGuidance.cs | 10 +- SourceCode/GPS/Classes/CVehicle.cs | 4 +- SourceCode/GPS/Classes/CYouTurn.cs | 22 +++-- SourceCode/GPS/Forms/GUI.Designer.cs | 6 +- .../GPS/Forms/Settings/FormSteer.Designer.cs | 96 +++++++++++++++++-- SourceCode/GPS/Forms/Settings/FormSteer.cs | 13 +++ SourceCode/GPS/Forms/Settings/FormSteer.resx | 4 +- .../GPS/Properties/Settings.Designer.cs | 12 +++ SourceCode/GPS/Properties/Settings.settings | 3 + SourceCode/GPS/app.config | 12 +-- 10 files changed, 144 insertions(+), 38 deletions(-) diff --git a/SourceCode/GPS/Classes/CGuidance.cs b/SourceCode/GPS/Classes/CGuidance.cs index a160401e6..c01eceb0f 100644 --- a/SourceCode/GPS/Classes/CGuidance.cs +++ b/SourceCode/GPS/Classes/CGuidance.cs @@ -277,8 +277,8 @@ public void StanleyGuidanceCurve(vec3 pivot, vec3 steer, ref List curList) //find the closest 2 points of pivot back from steer for (int j = cc; j < dd; j++) { - double dist = ((pivot.easting - curList[j].easting) * (pivot.easting - curList[j].easting)) - + ((pivot.northing - curList[j].northing) * (pivot.northing - curList[j].northing)); + double dist = ((steer.easting - curList[j].easting) * (steer.easting - curList[j].easting)) + + ((steer.northing - curList[j].northing) * (steer.northing - curList[j].northing)); if (dist < minDistA) { minDistB = minDistA; @@ -323,13 +323,13 @@ public void StanleyGuidanceCurve(vec3 pivot, vec3 steer, ref List curList) if (Math.Abs(dx) < Double.Epsilon && Math.Abs(dz) < Double.Epsilon) return; //how far from current AB Line is fix - distanceFromCurrentLinePivot = ((dz * pivot.easting) - (dx * pivot.northing) + (pivB.easting + distanceFromCurrentLinePivot = ((dz * steer.easting) - (dx * steer.northing) + (pivB.easting * pivA.northing) - (pivB.northing * pivA.easting)) / Math.Sqrt((dz * dz) + (dx * dx)); mf.curve.distanceFromCurrentLinePivot = distanceFromCurrentLinePivot; - double U = (((pivot.easting - pivA.easting) * dx) - + ((pivot.northing - pivA.northing) * dz)) + double U = (((steer.easting - pivA.easting) * dx) + + ((steer.northing - pivA.northing) * dz)) / ((dx * dx) + (dz * dz)); rEastPivot = pivA.easting + (U * dx); diff --git a/SourceCode/GPS/Classes/CVehicle.cs b/SourceCode/GPS/Classes/CVehicle.cs index 275a984a7..7f32ac2d8 100644 --- a/SourceCode/GPS/Classes/CVehicle.cs +++ b/SourceCode/GPS/Classes/CVehicle.cs @@ -23,7 +23,7 @@ public class CVehicle public double slowSpeedCutoff = 0; //autosteer values - public double goalPointLookAhead, goalPointLookAheadHold, goalPointLookAheadMult; + public double goalPointLookAhead, goalPointLookAheadHold, goalPointLookAheadMult, uturnCompensation; public double stanleyDistanceErrorGain, stanleyHeadingErrorGain; public double minLookAheadDistance = 2.0; @@ -97,6 +97,8 @@ public CVehicle(FormGPS _f) functionSpeedLimit = Properties.Settings.Default.setAS_functionSpeedLimit; maxSteerSpeed = Properties.Settings.Default.setAS_maxSteerSpeed; minSteerSpeed = Properties.Settings.Default.setAS_minSteerSpeed; + + uturnCompensation = Properties.Settings.Default.setAS_uTurnCompensation; } public int modeTimeCounter = 0; diff --git a/SourceCode/GPS/Classes/CYouTurn.cs b/SourceCode/GPS/Classes/CYouTurn.cs index 3581f61f7..edbc1cfc6 100644 --- a/SourceCode/GPS/Classes/CYouTurn.cs +++ b/SourceCode/GPS/Classes/CYouTurn.cs @@ -231,11 +231,6 @@ private bool CreateCurveOmegaTurn(bool isTurnLeft, vec3 pivotPos) //creates half a circle starting at the crossing point ytList.Clear(); - if (curveIndex >= mf.curve.curList.Count - 3 || curveIndex < 3) - { - FailCreate(); - return false; - } curveIndex += count; @@ -2762,7 +2757,6 @@ public bool DistanceFromYouTurnLine() //} //feed backward to turn slower to keep pivot on - A -= 7; if (A < 0) { A = 0; @@ -2770,12 +2764,18 @@ public bool DistanceFromYouTurnLine() B = A + 1; //return and reset if too far away or end of the line - if (B >= ptCount - 8) + if (B >= ptCount - 1) { CompleteYouTurn(); return false; } + if (uTurnStyle == 1 && pt3Phase == 0 && mf.isReverse) + { + CompleteYouTurn(); + return true; + } + //get the distance from currently active AB line, precalc the norm of line double dx = ytList[B].easting - ytList[A].easting; double dz = ytList[B].northing - ytList[A].northing; @@ -2820,7 +2820,7 @@ public bool DistanceFromYouTurnLine() if (steerAngleYT < -0.74) steerAngleYT = -0.74; //add them up and clamp to max in vehicle settings - steerAngleYT = glm.toDegrees((steerAngleYT + abFixHeadingDelta) * -1.0); + steerAngleYT = glm.toDegrees((steerAngleYT + abFixHeadingDelta * mf.vehicle.uturnCompensation) * -1.0); if (steerAngleYT < -mf.vehicle.maxSteerAngle) steerAngleYT = -mf.vehicle.maxSteerAngle; if (steerAngleYT > mf.vehicle.maxSteerAngle) steerAngleYT = mf.vehicle.maxSteerAngle; } @@ -2883,7 +2883,9 @@ public bool DistanceFromYouTurnLine() //sharp turns on you turn. //update base on autosteer settings and distance from line - double goalPointDistance = 0.8 * mf.vehicle.UpdateGoalPointDistance(); + double goalPointDistance = mf.vehicle.UpdateGoalPointDistance(); + + //goalPointDistance *= mf.vehicle.uturnCompensation; isHeadingSameWay = true; bool ReverseHeading = !mf.isReverse; @@ -2933,6 +2935,8 @@ public bool DistanceFromYouTurnLine() steerAngleYT = glm.toDegrees(Math.Atan(2 * (((goalPointYT.easting - pivot.easting) * Math.Cos(localHeading)) + ((goalPointYT.northing - pivot.northing) * Math.Sin(localHeading))) * mf.vehicle.wheelbase / goalPointDistanceSquared)); + steerAngleYT *= mf.vehicle.uturnCompensation; + if (steerAngleYT < -mf.vehicle.maxSteerAngle) steerAngleYT = -mf.vehicle.maxSteerAngle; if (steerAngleYT > mf.vehicle.maxSteerAngle) steerAngleYT = mf.vehicle.maxSteerAngle; diff --git a/SourceCode/GPS/Forms/GUI.Designer.cs b/SourceCode/GPS/Forms/GUI.Designer.cs index 4e2ca398c..8c3a306c3 100644 --- a/SourceCode/GPS/Forms/GUI.Designer.cs +++ b/SourceCode/GPS/Forms/GUI.Designer.cs @@ -758,12 +758,12 @@ public void PanelUpdateRightAndBottom() btnAutoSteer.Enabled = false; } - btnAutoYouTurn.Visible = trk.idx > -1 && !ct.isContourBtnOn && isBnd && !isStanleyUsed; + btnAutoYouTurn.Visible = trk.idx > -1 && !ct.isContourBtnOn && isBnd; btnCycleLines.Visible = tracksVisible > 1 && trk.idx > -1 && !ct.isContourBtnOn; btnCycleLinesBk.Visible = tracksVisible > 1 && trk.idx > -1 && !ct.isContourBtnOn; - cboxpRowWidth.Visible = trk.idx > -1 && !isStanleyUsed; - btnYouSkipEnable.Visible = trk.idx > -1 && !isStanleyUsed; + cboxpRowWidth.Visible = trk.idx > -1; + btnYouSkipEnable.Visible = trk.idx > -1; btnSnapToPivot.Visible = trk.idx > -1 && isNudgeOn; btnAdjLeft.Visible = trk.idx > -1 && isNudgeOn; diff --git a/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs b/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs index ea4813fae..bf8718461 100644 --- a/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs +++ b/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs @@ -159,9 +159,14 @@ private void InitializeComponent() this.tabSensors = new System.Windows.Forms.TabPage(); this.tabConfig = new System.Windows.Forms.TabPage(); this.tabSettings = new System.Windows.Forms.TabPage(); + this.hsbarUTurnCompensation = new System.Windows.Forms.HScrollBar(); + this.lblUTurnCompensation = new System.Windows.Forms.Label(); + this.label40 = new System.Windows.Forms.Label(); this.imageList2 = new System.Windows.Forms.ImageList(this.components); this.btnSteerWizard = new System.Windows.Forms.Button(); this.label35 = new System.Windows.Forms.Label(); + this.label39 = new System.Windows.Forms.Label(); + this.label41 = new System.Windows.Forms.Label(); this.tabControl1.SuspendLayout(); this.tabSteer.SuspendLayout(); this.tabGain.SuspendLayout(); @@ -1152,7 +1157,7 @@ private void InitializeComponent() // this.lblSideHillComp.Font = new System.Drawing.Font("Tahoma", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSideHillComp.ForeColor = System.Drawing.Color.Black; - this.lblSideHillComp.Location = new System.Drawing.Point(52, 337); + this.lblSideHillComp.Location = new System.Drawing.Point(46, 378); this.lblSideHillComp.Name = "lblSideHillComp"; this.lblSideHillComp.Size = new System.Drawing.Size(88, 35); this.lblSideHillComp.TabIndex = 353; @@ -1162,7 +1167,7 @@ private void InitializeComponent() // hsbarSideHillComp // this.hsbarSideHillComp.LargeChange = 1; - this.hsbarSideHillComp.Location = new System.Drawing.Point(143, 327); + this.hsbarSideHillComp.Location = new System.Drawing.Point(137, 368); this.hsbarSideHillComp.Name = "hsbarSideHillComp"; this.hsbarSideHillComp.Size = new System.Drawing.Size(339, 53); this.hsbarSideHillComp.TabIndex = 352; @@ -1173,7 +1178,7 @@ private void InitializeComponent() // this.label22.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label22.ForeColor = System.Drawing.Color.Black; - this.label22.Location = new System.Drawing.Point(157, 306); + this.label22.Location = new System.Drawing.Point(151, 347); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(210, 19); this.label22.TabIndex = 351; @@ -1571,7 +1576,7 @@ private void InitializeComponent() this.label16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.ForeColor = System.Drawing.Color.Black; this.label16.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label16.Location = new System.Drawing.Point(151, 108); + this.label16.Location = new System.Drawing.Point(146, 161); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(112, 22); this.label16.TabIndex = 520; @@ -1583,7 +1588,7 @@ private void InitializeComponent() this.nudPanicStopSpeed.BackColor = System.Drawing.Color.AliceBlue; this.nudPanicStopSpeed.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.nudPanicStopSpeed.InterceptArrowKeys = false; - this.nudPanicStopSpeed.Location = new System.Drawing.Point(156, 133); + this.nudPanicStopSpeed.Location = new System.Drawing.Point(151, 186); this.nudPanicStopSpeed.Maximum = new decimal(new int[] { 99, 0, @@ -1608,7 +1613,7 @@ private void InitializeComponent() this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label31.ForeColor = System.Drawing.Color.Black; this.label31.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label31.Location = new System.Drawing.Point(181, 188); + this.label31.Location = new System.Drawing.Point(176, 241); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(48, 16); this.label31.TabIndex = 521; @@ -1840,7 +1845,7 @@ private void InitializeComponent() this.label34.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label34.ForeColor = System.Drawing.Color.Black; this.label34.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label34.Location = new System.Drawing.Point(332, 93); + this.label34.Location = new System.Drawing.Point(327, 146); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(112, 32); this.label34.TabIndex = 527; @@ -1857,7 +1862,7 @@ private void InitializeComponent() this.btnStanleyPure.ForeColor = System.Drawing.Color.Black; this.btnStanleyPure.Image = global::AgOpenGPS.Properties.Resources.ModeStanley; this.btnStanleyPure.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnStanleyPure.Location = new System.Drawing.Point(354, 131); + this.btnStanleyPure.Location = new System.Drawing.Point(349, 184); this.btnStanleyPure.Margin = new System.Windows.Forms.Padding(0); this.btnStanleyPure.Name = "btnStanleyPure"; this.btnStanleyPure.RightToLeft = System.Windows.Forms.RightToLeft.No; @@ -1936,6 +1941,11 @@ private void InitializeComponent() // tabSettings // this.tabSettings.BackColor = System.Drawing.Color.LightGray; + this.tabSettings.Controls.Add(this.label41); + this.tabSettings.Controls.Add(this.label39); + this.tabSettings.Controls.Add(this.hsbarUTurnCompensation); + this.tabSettings.Controls.Add(this.lblUTurnCompensation); + this.tabSettings.Controls.Add(this.label40); this.tabSettings.Controls.Add(this.hsbarSideHillComp); this.tabSettings.Controls.Add(this.label34); this.tabSettings.Controls.Add(this.lblSideHillComp); @@ -1952,6 +1962,41 @@ private void InitializeComponent() this.tabSettings.TabIndex = 2; this.tabSettings.Text = "Settings"; // + // hsbarUTurnCompensation + // + this.hsbarUTurnCompensation.LargeChange = 1; + this.hsbarUTurnCompensation.Location = new System.Drawing.Point(137, 61); + this.hsbarUTurnCompensation.Maximum = 20; + this.hsbarUTurnCompensation.Minimum = 2; + this.hsbarUTurnCompensation.Name = "hsbarUTurnCompensation"; + this.hsbarUTurnCompensation.Size = new System.Drawing.Size(339, 53); + this.hsbarUTurnCompensation.TabIndex = 529; + this.hsbarUTurnCompensation.Value = 5; + this.hsbarUTurnCompensation.ValueChanged += new System.EventHandler(this.hsbarUTurnCompensation_ValueChanged); + // + // lblUTurnCompensation + // + this.lblUTurnCompensation.Font = new System.Drawing.Font("Tahoma", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblUTurnCompensation.ForeColor = System.Drawing.Color.Black; + this.lblUTurnCompensation.Location = new System.Drawing.Point(46, 71); + this.lblUTurnCompensation.Name = "lblUTurnCompensation"; + this.lblUTurnCompensation.Size = new System.Drawing.Size(88, 35); + this.lblUTurnCompensation.TabIndex = 530; + this.lblUTurnCompensation.Text = "888"; + this.lblUTurnCompensation.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label40 + // + this.label40.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label40.ForeColor = System.Drawing.Color.Black; + this.label40.Location = new System.Drawing.Point(151, 40); + this.label40.Name = "label40"; + this.label40.Size = new System.Drawing.Size(210, 19); + this.label40.TabIndex = 528; + this.label40.Text = "UTurn Compensation"; + this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.label40.UseCompatibleTextRendering = true; + // // imageList2 // this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream"))); @@ -1989,12 +2034,40 @@ private void InitializeComponent() this.label35.Text = "Wizard"; this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // + // label39 + // + this.label39.AutoSize = true; + this.label39.BackColor = System.Drawing.Color.Transparent; + this.label39.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label39.ForeColor = System.Drawing.Color.Black; + this.label39.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label39.Location = new System.Drawing.Point(140, 118); + this.label39.Name = "label39"; + this.label39.Size = new System.Drawing.Size(27, 16); + this.label39.TabIndex = 531; + this.label39.Text = "Out"; + this.label39.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // label41 + // + this.label41.AutoSize = true; + this.label41.BackColor = System.Drawing.Color.Transparent; + this.label41.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label41.ForeColor = System.Drawing.Color.Black; + this.label41.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label41.Location = new System.Drawing.Point(454, 118); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(18, 16); + this.label41.TabIndex = 532; + this.label41.Text = "In"; + this.label41.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // // FormSteer // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.WhiteSmoke; - this.ClientSize = new System.Drawing.Size(944, 680); + this.ClientSize = new System.Drawing.Size(940, 675); this.Controls.Add(this.label35); this.Controls.Add(this.btnSteerWizard); this.Controls.Add(this.tabSteerSettings); @@ -2175,5 +2248,10 @@ private void InitializeComponent() private System.Windows.Forms.ImageList imageList2; private System.Windows.Forms.Button btnSteerWizard; private System.Windows.Forms.Label label35; + private System.Windows.Forms.HScrollBar hsbarUTurnCompensation; + private System.Windows.Forms.Label lblUTurnCompensation; + private System.Windows.Forms.Label label40; + private System.Windows.Forms.Label label41; + private System.Windows.Forms.Label label39; } } \ No newline at end of file diff --git a/SourceCode/GPS/Forms/Settings/FormSteer.cs b/SourceCode/GPS/Forms/Settings/FormSteer.cs index 3a8b941d2..2ce198c7d 100644 --- a/SourceCode/GPS/Forms/Settings/FormSteer.cs +++ b/SourceCode/GPS/Forms/Settings/FormSteer.cs @@ -110,6 +110,9 @@ private void FormSteer_Load(object sender, EventArgs e) hsbarLookAheadMult.Value = (Int16)(Properties.Settings.Default.setVehicle_goalPointLookAheadMult * 10); lblLookAheadMult.Text = mf.vehicle.goalPointLookAheadMult.ToString(); + hsbarUTurnCompensation.Value = (Int16)(mf.vehicle.uturnCompensation * 10); + lblUTurnCompensation.Text = (hsbarUTurnCompensation.Value - 10).ToString(); + //make sure free drive is off btnFreeDrive.Image = Properties.Resources.SteerDriveOff; mf.vehicle.isInFreeDriveMode = false; @@ -351,6 +354,8 @@ private void FormSteer_FormClosing(object sender, FormClosingEventArgs e) Properties.Settings.Default.setWindow_steerSettingsLocation = Location; + Properties.Settings.Default.setAS_uTurnCompensation = mf.vehicle.uturnCompensation; + Properties.Settings.Default.Save(); //save current vehicle @@ -401,6 +406,8 @@ private void btnVehicleReset_Click(object sender, EventArgs e) Properties.Settings.Default.setAS_sideHillComp = 0; + Properties.Settings.Default.setAS_uTurnCompensation = 1; + //Properties.Settings.Default.setVehicle_wheelbase = 2.8; //Properties.Settings.Default.setVehicle_trackWidth = 1.9; @@ -555,6 +562,12 @@ private void hsbarIntegral_ValueChanged(object sender, EventArgs e) #endregion + private void hsbarUTurnCompensation_ValueChanged(object sender, EventArgs e) + { + mf.vehicle.uturnCompensation = hsbarUTurnCompensation.Value * 0.1; + lblUTurnCompensation.Text = (hsbarUTurnCompensation.Value - 10).ToString(); + } + #region Pure private void hsbarIntegralPurePursuit_ValueChanged(object sender, EventArgs e) diff --git a/SourceCode/GPS/Forms/Settings/FormSteer.resx b/SourceCode/GPS/Forms/Settings/FormSteer.resx index 005e7e675..4710d8cfa 100644 --- a/SourceCode/GPS/Forms/Settings/FormSteer.resx +++ b/SourceCode/GPS/Forms/Settings/FormSteer.resx @@ -128,7 +128,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABq - KAAAAk1TRnQBSQFMAgEBBQEAAcgBAgHIAQIBQgEAASwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + KAAAAk1TRnQBSQFMAgEBBQEAAeABAgHgAQIBQgEAASwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABCAEBAgABWAMAAQEBAAEIBQABwAFaGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHA AdwBwAEAAfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANC AQADOQEAAYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ @@ -311,7 +311,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACs - HwAAAk1TRnQBSQFMAgEBAwEAATABAAEwAQABMAEAATABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + HwAAAk1TRnQBSQFMAgEBAwEAAUgBAAFIAQABMAEAATABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABwAMAATADAAEBAQABCAYAASQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA diff --git a/SourceCode/GPS/Properties/Settings.Designer.cs b/SourceCode/GPS/Properties/Settings.Designer.cs index 7a03f3f9f..d2666e5be 100644 --- a/SourceCode/GPS/Properties/Settings.Designer.cs +++ b/SourceCode/GPS/Properties/Settings.Designer.cs @@ -2927,5 +2927,17 @@ public bool setTool_isDisplayTramControl { this["setTool_isDisplayTramControl"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("1")] + public double setAS_uTurnCompensation { + get { + return ((double)(this["setAS_uTurnCompensation"])); + } + set { + this["setAS_uTurnCompensation"] = value; + } + } } } diff --git a/SourceCode/GPS/Properties/Settings.settings b/SourceCode/GPS/Properties/Settings.settings index b8b217c38..18e67e897 100644 --- a/SourceCode/GPS/Properties/Settings.settings +++ b/SourceCode/GPS/Properties/Settings.settings @@ -728,5 +728,8 @@ True + + 1 + \ No newline at end of file diff --git a/SourceCode/GPS/app.config b/SourceCode/GPS/app.config index d5c23f2f9..b2cf826f2 100644 --- a/SourceCode/GPS/app.config +++ b/SourceCode/GPS/app.config @@ -316,9 +316,6 @@ -62208,-12299010,-16190712,-1505559,-3621034,-16712458,-7330570,-1546731,-24406,-3289866,-2756674,-538377,-134768,-4457734,-1848839,-530985 - - AGOpenGPS - True @@ -646,12 +643,6 @@ 0 - - AgOpenGPS - - - AgOpenGPS - 0.06 @@ -730,6 +721,9 @@ True + + 1 + From 7e833320f91f35bc0554ca2bc32be00ae9b5a59d Mon Sep 17 00:00:00 2001 From: Brian Tischler Date: Thu, 4 Apr 2024 19:03:19 -0600 Subject: [PATCH 10/19] stanley ab line from piv to steer --- SourceCode/GPS/Classes/CGuidance.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SourceCode/GPS/Classes/CGuidance.cs b/SourceCode/GPS/Classes/CGuidance.cs index c01eceb0f..9080baea8 100644 --- a/SourceCode/GPS/Classes/CGuidance.cs +++ b/SourceCode/GPS/Classes/CGuidance.cs @@ -119,7 +119,7 @@ private void DoSteerAngleCalc() /// public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 steer) { - //get the pivot distance from currently active AB segment /////////// Pivot //////////// + //get the steer distance from currently active AB segment /////////// steer //////////// double dx = curPtB.easting - curPtA.easting; double dy = curPtB.northing - curPtA.northing; if (Math.Abs(dx) < Double.Epsilon && Math.Abs(dy) < Double.Epsilon) return; @@ -128,7 +128,7 @@ public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 ste mf.yt.dxAB = dx; mf.yt.dyAB = dy; //how far from current AB Line is fix - distanceFromCurrentLinePivot = ((dy * pivot.easting) - (dx * pivot.northing) + (curPtB.easting + distanceFromCurrentLinePivot = ((dy * steer.easting) - (dx * steer.northing) + (curPtB.easting * curPtA.northing) - (curPtB.northing * curPtA.easting)) / Math.Sqrt((dy * dy) + (dx * dx)); @@ -136,8 +136,8 @@ public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 ste distanceFromCurrentLinePivot *= -1.0; mf.ABLine.distanceFromCurrentLinePivot = distanceFromCurrentLinePivot; - double U = (((pivot.easting - curPtA.easting) * dx) - + ((pivot.northing - curPtA.northing) * dy)) + double U = (((steer.easting - curPtA.easting) * dx) + + ((steer.northing - curPtA.northing) * dy)) / ((dx * dx) + (dy * dy)); rEastPivot = curPtA.easting + (U * dx); From 5780ef3f098e58b8d665641939ee9fdc8d0ed0ea Mon Sep 17 00:00:00 2001 From: Brian Tischler Date: Thu, 4 Apr 2024 19:25:38 -0600 Subject: [PATCH 11/19] fix stanley ab --- SourceCode/GPS/Classes/CGuidance.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SourceCode/GPS/Classes/CGuidance.cs b/SourceCode/GPS/Classes/CGuidance.cs index 9080baea8..c01eceb0f 100644 --- a/SourceCode/GPS/Classes/CGuidance.cs +++ b/SourceCode/GPS/Classes/CGuidance.cs @@ -119,7 +119,7 @@ private void DoSteerAngleCalc() /// public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 steer) { - //get the steer distance from currently active AB segment /////////// steer //////////// + //get the pivot distance from currently active AB segment /////////// Pivot //////////// double dx = curPtB.easting - curPtA.easting; double dy = curPtB.northing - curPtA.northing; if (Math.Abs(dx) < Double.Epsilon && Math.Abs(dy) < Double.Epsilon) return; @@ -128,7 +128,7 @@ public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 ste mf.yt.dxAB = dx; mf.yt.dyAB = dy; //how far from current AB Line is fix - distanceFromCurrentLinePivot = ((dy * steer.easting) - (dx * steer.northing) + (curPtB.easting + distanceFromCurrentLinePivot = ((dy * pivot.easting) - (dx * pivot.northing) + (curPtB.easting * curPtA.northing) - (curPtB.northing * curPtA.easting)) / Math.Sqrt((dy * dy) + (dx * dx)); @@ -136,8 +136,8 @@ public void StanleyGuidanceABLine(vec3 curPtA, vec3 curPtB, vec3 pivot, vec3 ste distanceFromCurrentLinePivot *= -1.0; mf.ABLine.distanceFromCurrentLinePivot = distanceFromCurrentLinePivot; - double U = (((steer.easting - curPtA.easting) * dx) - + ((steer.northing - curPtA.northing) * dy)) + double U = (((pivot.easting - curPtA.easting) * dx) + + ((pivot.northing - curPtA.northing) * dy)) / ((dx * dx) + (dy * dy)); rEastPivot = curPtA.easting + (U * dx); From 51476ed4ef75cabfe8f11622b7aacd0a53393eb8 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Fri, 5 Apr 2024 06:50:46 -0600 Subject: [PATCH 12/19] Flow thru on Bnd Tool --- .../GPS/Forms/Field/FormBndTool.Designer.cs | 3 +- SourceCode/GPS/Forms/Field/FormBndTool.cs | 72 ++++++++++++------- 2 files changed, 49 insertions(+), 26 deletions(-) diff --git a/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs b/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs index 66dcf1fac..ff3c0253d 100644 --- a/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs +++ b/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs @@ -139,6 +139,7 @@ private void InitializeComponent() this.cboxSmooth.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cboxSmooth.FormattingEnabled = true; this.cboxSmooth.Items.AddRange(new object[] { + "0", "4", "8", "16", @@ -430,7 +431,7 @@ private void InitializeComponent() this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.LightGray; - this.ClientSize = new System.Drawing.Size(1006, 704); + this.ClientSize = new System.Drawing.Size(1006, 726); this.ControlBox = false; this.Controls.Add(this.tlp1); this.Controls.Add(this.oglSelf); diff --git a/SourceCode/GPS/Forms/Field/FormBndTool.cs b/SourceCode/GPS/Forms/Field/FormBndTool.cs index 02b5d4137..7acfb2099 100644 --- a/SourceCode/GPS/Forms/Field/FormBndTool.cs +++ b/SourceCode/GPS/Forms/Field/FormBndTool.cs @@ -452,11 +452,20 @@ private void btnMakeBoundary_Click(object sender, EventArgs e) private void cboxSmooth_SelectedIndexChanged(object sender, EventArgs e) { - smPtsChoose = cboxSmooth.SelectedIndex + 1; - smPts = 2; - for (int i = 1; i <= smPtsChoose; i++) - smPts *= 2; - cboxSmooth.Text = smPts.ToString(); + smPtsChoose = cboxSmooth.SelectedIndex; + + if (smPtsChoose == 0) + { + smPts = 0; + cboxSmooth.Text = smPts.ToString(); + } + else + { + smPts = 2; + for (int i = 1; i <= smPtsChoose; i++) + smPts *= 2; + cboxSmooth.Text = smPts.ToString(); + } SmoothList(); } @@ -464,6 +473,7 @@ private void cboxPointDistance_SelectedIndexChanged(object sender, EventArgs e) { timer1.Interval = 500; isStep = false; + cboxPointDistance.Enabled = false; minDistDisp = (double)(cboxPointDistance.SelectedIndex + 1); minDistSq = minDistDisp * minDistDisp; @@ -565,6 +575,7 @@ private void cboxIsZoom_CheckedChanged(object sender, EventArgs e) private void btnStartStop_Click(object sender, EventArgs e) { + btnStartStop.Enabled = false; if (secList.Count < 20) { mf.YesMessageBox("Not enough points to make a boundary"); @@ -615,32 +626,43 @@ private void SmoothList() //the temp array vec3[] arr = new vec3[cnt]; - //read the points before and after the setpoint - for (int s = 0; s < smPts / 2; s++) + if (smPts != 0) { - arr[s].easting = bndList[s].easting; - arr[s].northing = bndList[s].northing; - arr[s].heading = bndList[s].heading; - } - for (int s = cnt - (smPts / 2); s < cnt; s++) - { - arr[s].easting = bndList[s].easting; - arr[s].northing = bndList[s].northing; - arr[s].heading = bndList[s].heading; - } + //read the points before and after the setpoint + for (int s = 0; s < smPts / 2; s++) + { + arr[s].easting = bndList[s].easting; + arr[s].northing = bndList[s].northing; + arr[s].heading = bndList[s].heading; + } + + for (int s = cnt - (smPts / 2); s < cnt; s++) + { + arr[s].easting = bndList[s].easting; + arr[s].northing = bndList[s].northing; + arr[s].heading = bndList[s].heading; + } - //average them - center weighted average - for (int i = smPts / 2; i < cnt - (smPts / 2); i++) + //average them - center weighted average + for (int i = smPts / 2; i < cnt - (smPts / 2); i++) + { + for (int j = -smPts / 2; j < smPts / 2; j++) + { + arr[i].easting += bndList[j + i].easting; + arr[i].northing += bndList[j + i].northing; + } + arr[i].easting /= smPts; + arr[i].northing /= smPts; + arr[i].heading = bndList[i].heading; + } + } + else { - for (int j = -smPts / 2; j < smPts / 2; j++) + for (int i = 0; i < bndList.Count; i++) { - arr[i].easting += bndList[j + i].easting; - arr[i].northing += bndList[j + i].northing; + arr[i] = bndList[i]; } - arr[i].easting /= smPts; - arr[i].northing /= smPts; - arr[i].heading = bndList[i].heading; } //make a list to draw From 81e5ade51a3b1039377428054ece3262e2a27619 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Fri, 5 Apr 2024 07:24:32 -0600 Subject: [PATCH 13/19] bnd tool start icon --- SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs b/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs index ff3c0253d..63bcad263 100644 --- a/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs +++ b/SourceCode/GPS/Forms/Field/FormBndTool.Designer.cs @@ -283,12 +283,12 @@ private void InitializeComponent() // this.btnResetReduce.Anchor = System.Windows.Forms.AnchorStyles.None; this.btnResetReduce.BackColor = System.Drawing.Color.WhiteSmoke; - this.btnResetReduce.BackgroundImage = global::AgOpenGPS.Properties.Resources.Play; this.btnResetReduce.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.tlp1.SetColumnSpan(this.btnResetReduce, 3); this.btnResetReduce.FlatAppearance.BorderColor = System.Drawing.Color.Black; this.btnResetReduce.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnResetReduce.Font = new System.Drawing.Font("Tahoma", 14.25F); + this.btnResetReduce.Image = global::AgOpenGPS.Properties.Resources.SwitchOn; this.btnResetReduce.ImeMode = System.Windows.Forms.ImeMode.NoControl; this.btnResetReduce.Location = new System.Drawing.Point(20, 20); this.btnResetReduce.Name = "btnResetReduce"; From 1af85d8d1e4fe03fd7a95b27ec69d06849c6069e Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sat, 6 Apr 2024 12:24:06 -0600 Subject: [PATCH 14/19] uturn fixes --- SourceCode/GPS/Classes/CYouTurn.cs | 2 +- SourceCode/GPS/Forms/GUI.Designer.cs | 63 ++++++++++++----------- SourceCode/GPS/Forms/OpenGL.Designer.cs | 16 +++--- SourceCode/GPS/Forms/Position.designer.cs | 2 +- 4 files changed, 44 insertions(+), 39 deletions(-) diff --git a/SourceCode/GPS/Classes/CYouTurn.cs b/SourceCode/GPS/Classes/CYouTurn.cs index edbc1cfc6..83b580e87 100644 --- a/SourceCode/GPS/Classes/CYouTurn.cs +++ b/SourceCode/GPS/Classes/CYouTurn.cs @@ -2582,7 +2582,7 @@ public void BuildManualYouLateral(bool isTurnLeft) double turnOffset = (mf.tool.width - mf.tool.overlap); //remove rowSkips //if its straight across it makes 2 loops instead so goal is a little lower then start - if (!isHeadingSameWay) head += Math.PI; + if (!mf.isStanleyUsed &&!isHeadingSameWay) head += Math.PI; //move the start forward 2 meters, this point is critical to formation of uturn rEastYT += (Math.Sin(head) * 2); diff --git a/SourceCode/GPS/Forms/GUI.Designer.cs b/SourceCode/GPS/Forms/GUI.Designer.cs index 8c3a306c3..cfd0656e9 100644 --- a/SourceCode/GPS/Forms/GUI.Designer.cs +++ b/SourceCode/GPS/Forms/GUI.Designer.cs @@ -1193,48 +1193,51 @@ private void oglMain_MouseDown(object sender, MouseEventArgs e) return; } - //manual uturn triggering - middle = oglMain.Width / 2 - oglMain.Width / 4; - if (point.X > middle - 140 && point.X < middle && isUTurnOn) + if (!isStanleyUsed) { - if (yt.isYouTurnTriggered) + //manual uturn triggering + middle = oglMain.Width / 2 - oglMain.Width / 4; + if (point.X > middle - 140 && point.X < middle && isUTurnOn) { - yt.ResetYouTurn(); - } - else - { - if (vehicle.functionSpeedLimit > avgSpeed) + if (yt.isYouTurnTriggered) { - yt.isYouTurnTriggered = true; - yt.BuildManualYouTurn(false, true); + yt.ResetYouTurn(); } else { - SpeedLimitExceeded(); + if (vehicle.functionSpeedLimit > avgSpeed) + { + yt.isYouTurnTriggered = true; + yt.BuildManualYouTurn(false, true); + } + else + { + SpeedLimitExceeded(); + } + return; } - return; } - } - if (point.X > middle && point.X < middle + 140 && isUTurnOn) - { - if (yt.isYouTurnTriggered) + if (point.X > middle && point.X < middle + 140 && isUTurnOn) { - yt.ResetYouTurn(); - } - else - { - if (vehicle.functionSpeedLimit > avgSpeed) + if (yt.isYouTurnTriggered) { - yt.isYouTurnTriggered = true; - yt.BuildManualYouTurn(true, true); + yt.ResetYouTurn(); } else { - SpeedLimitExceeded(); + if (vehicle.functionSpeedLimit > avgSpeed) + { + yt.isYouTurnTriggered = true; + yt.BuildManualYouTurn(true, true); + } + else + { + SpeedLimitExceeded(); + } + + return; } - - return; } } } @@ -1243,11 +1246,12 @@ private void oglMain_MouseDown(object sender, MouseEventArgs e) if (point.Y < 150 && point.Y > 90 && (trk.idx > -1)) { int middle = oglMain.Width / 2 - oglMain.Width / 4; - if (point.X > middle - 140 && point.X < middle && isLateralOn) + if (point.X > middle - 160 && point.X < middle && isLateralOn) { if (vehicle.functionSpeedLimit > avgSpeed) { yt.BuildManualYouLateral(false); + yt.ResetYouTurn(); } else { @@ -1257,11 +1261,12 @@ private void oglMain_MouseDown(object sender, MouseEventArgs e) return; } - if (point.X > middle && point.X < middle + 140 && isLateralOn) + if (point.X > middle && point.X < middle + 160 && isLateralOn) { if (vehicle.functionSpeedLimit > avgSpeed) { yt.BuildManualYouLateral(true); + yt.ResetYouTurn(); } else { diff --git a/SourceCode/GPS/Forms/OpenGL.Designer.cs b/SourceCode/GPS/Forms/OpenGL.Designer.cs index 8d7e57deb..9eda6022e 100644 --- a/SourceCode/GPS/Forms/OpenGL.Designer.cs +++ b/SourceCode/GPS/Forms/OpenGL.Designer.cs @@ -1643,7 +1643,7 @@ private void DrawManUTurnBtn() { GL.Enable(EnableCap.Texture2D); - if (isUTurnOn) + if (!isStanleyUsed && isUTurnOn) { GL.BindTexture(TextureTarget.Texture2D, texture[(int)FormGPS.textures.TurnManual]); // Select Our Texture GL.Color3(0.90f, 0.90f, 0.293f); @@ -1664,14 +1664,14 @@ private void DrawManUTurnBtn() if (isLateralOn) { GL.BindTexture(TextureTarget.Texture2D, texture[(int)FormGPS.textures.Lateral]); // Select Our Texture - GL.Color3(0.190f, 0.90f, 0.93f); + GL.Color3(0.590f, 0.90f, 0.93f); int two3 = oglMain.Width / 4; GL.Begin(PrimitiveType.Quads); // Build Quad From A Triangle Strip { - GL.TexCoord2(0, 0); GL.Vertex2(-82 - two3, 90); // - GL.TexCoord2(1, 0); GL.Vertex2(82 - two3, 90); // - GL.TexCoord2(1, 1); GL.Vertex2(82 - two3, 150); // - GL.TexCoord2(0, 1); GL.Vertex2(-82 - two3, 150); // + GL.TexCoord2(0, 0); GL.Vertex2(-100 - two3, 90); // + GL.TexCoord2(1, 0); GL.Vertex2(100 - two3, 90); // + GL.TexCoord2(1, 1); GL.Vertex2(100 - two3, 150); // + GL.TexCoord2(0, 1); GL.Vertex2(-100 - two3, 150); // } GL.End(); } @@ -1750,11 +1750,11 @@ private void DrawUTurnBtn() { if (!yt.isYouTurnTriggered) { - font.DrawText(-30 + two3, 80, DistPivotM); + font.DrawText(-40 + two3, 80, DistPivotM); } else { - font.DrawText(-30 + two3, 80, yt.onA.ToString()); + font.DrawText(-40 + two3, 80, yt.onA.ToString()); } } else diff --git a/SourceCode/GPS/Forms/Position.designer.cs b/SourceCode/GPS/Forms/Position.designer.cs index e314cab1a..d6d9bedb9 100644 --- a/SourceCode/GPS/Forms/Position.designer.cs +++ b/SourceCode/GPS/Forms/Position.designer.cs @@ -994,7 +994,7 @@ public void UpdateFixPosition() if (yt.isTurnCreationTooClose && !yt.turnTooCloseTrigger) { yt.turnTooCloseTrigger = true; - sounds.sndUTurnTooClose.Play(); + if (sounds.isTurnSoundOn) sounds.sndUTurnTooClose.Play(); } } else //wait to trigger the actual turn since its made and waiting From 44bd5a6405c8f8efac875360a352cdcd0aeeac71 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sat, 6 Apr 2024 14:45:33 -0600 Subject: [PATCH 15/19] Update z_Turn.png --- SourceCode/GPS/btnImages/Images/z_Turn.png | Bin 2343 -> 2321 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/SourceCode/GPS/btnImages/Images/z_Turn.png b/SourceCode/GPS/btnImages/Images/z_Turn.png index 4d2fb515f6e88e9791ed0c77700d5b222190da42..c8de8b319387cb81e9ba86b2c8a727c71a4cdf5b 100644 GIT binary patch delta 53 zcmZ23G*M`RI9CG)8v_HwVY|fB8xwM}SHg NJYD@<);T3K0RZuV5$6B^ From 7d9387e3320a63b89da987b347fcf066b3139772 Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sat, 6 Apr 2024 22:13:33 -0600 Subject: [PATCH 16/19] Pure Stan on Flag btn --- SourceCode/GPS/Forms/FormGPS.Designer.cs | 15 ++++++++------- SourceCode/GPS/Forms/GUI.Designer.cs | 1 + 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/SourceCode/GPS/Forms/FormGPS.Designer.cs b/SourceCode/GPS/Forms/FormGPS.Designer.cs index 4fe512f8f..8f4eb2c53 100644 --- a/SourceCode/GPS/Forms/FormGPS.Designer.cs +++ b/SourceCode/GPS/Forms/FormGPS.Designer.cs @@ -1271,7 +1271,7 @@ private void InitializeComponent() this.panelSim.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.panelSim.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 58F)); this.panelSim.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); - this.panelSim.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 44F)); + this.panelSim.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 45F)); this.panelSim.Controls.Add(this.btnSpeedDn, 5, 0); this.panelSim.Controls.Add(this.btnSimSpeedUp, 7, 0); this.panelSim.Controls.Add(this.btnResetSim, 0, 0); @@ -1296,7 +1296,7 @@ private void InitializeComponent() this.btnSpeedDn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSpeedDn.Location = new System.Drawing.Point(404, 4); this.btnSpeedDn.Name = "btnSpeedDn"; - this.btnSpeedDn.Size = new System.Drawing.Size(120, 34); + this.btnSpeedDn.Size = new System.Drawing.Size(119, 34); this.btnSpeedDn.TabIndex = 533; this.btnSpeedDn.UseVisualStyleBackColor = false; this.btnSpeedDn.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSpeedDn_MouseDown); @@ -1309,9 +1309,9 @@ private void InitializeComponent() this.btnSimSpeedUp.Dock = System.Windows.Forms.DockStyle.Fill; this.btnSimSpeedUp.FlatAppearance.BorderSize = 0; this.btnSimSpeedUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnSimSpeedUp.Location = new System.Drawing.Point(590, 4); + this.btnSimSpeedUp.Location = new System.Drawing.Point(589, 4); this.btnSimSpeedUp.Name = "btnSimSpeedUp"; - this.btnSimSpeedUp.Size = new System.Drawing.Size(120, 34); + this.btnSimSpeedUp.Size = new System.Drawing.Size(119, 34); this.btnSimSpeedUp.TabIndex = 532; this.btnSimSpeedUp.UseVisualStyleBackColor = false; this.btnSimSpeedUp.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSimSpeedUp_MouseDown); @@ -1325,7 +1325,7 @@ private void InitializeComponent() this.btnSimSetSpeedToZero.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSimSetSpeedToZero.Font = new System.Drawing.Font("Tahoma", 9.75F); this.btnSimSetSpeedToZero.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnSimSetSpeedToZero.Location = new System.Drawing.Point(531, 4); + this.btnSimSetSpeedToZero.Location = new System.Drawing.Point(530, 4); this.btnSimSetSpeedToZero.Name = "btnSimSetSpeedToZero"; this.btnSimSetSpeedToZero.Size = new System.Drawing.Size(52, 34); this.btnSimSetSpeedToZero.TabIndex = 453; @@ -1342,7 +1342,7 @@ private void InitializeComponent() this.btnSimReverseDirection.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSimReverseDirection.Font = new System.Drawing.Font("Tahoma", 9.75F); this.btnSimReverseDirection.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnSimReverseDirection.Location = new System.Drawing.Point(718, 4); + this.btnSimReverseDirection.Location = new System.Drawing.Point(717, 4); this.btnSimReverseDirection.Name = "btnSimReverseDirection"; this.btnSimReverseDirection.Size = new System.Drawing.Size(35, 34); this.btnSimReverseDirection.TabIndex = 537; @@ -2371,13 +2371,14 @@ private void InitializeComponent() this.btnFlag.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; this.btnFlag.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; this.btnFlag.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.btnFlag.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnFlag.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnFlag.Image = global::AgOpenGPS.Properties.Resources.FlagRed; this.btnFlag.ImeMode = System.Windows.Forms.ImeMode.NoControl; this.btnFlag.Location = new System.Drawing.Point(589, 3); this.btnFlag.Name = "btnFlag"; this.btnFlag.Size = new System.Drawing.Size(72, 56); this.btnFlag.TabIndex = 121; + this.btnFlag.Text = "P"; this.btnFlag.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.btnFlag.UseVisualStyleBackColor = false; this.btnFlag.Click += new System.EventHandler(this.btnFlag_Click); diff --git a/SourceCode/GPS/Forms/GUI.Designer.cs b/SourceCode/GPS/Forms/GUI.Designer.cs index cfd0656e9..7c11c27c1 100644 --- a/SourceCode/GPS/Forms/GUI.Designer.cs +++ b/SourceCode/GPS/Forms/GUI.Designer.cs @@ -917,6 +917,7 @@ public void PanelSizeRightAndBottom() flp1.Top = this.Height - 230; flp1.Left = this.Width - 120 - flp1.Width; + btnFlag.Text = isStanleyUsed ? "S" : "P"; } private void PanelsAndOGLSize() From 5539240403f5881e606cc552bc18862cbd84538d Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sun, 7 Apr 2024 13:34:43 -0600 Subject: [PATCH 17/19] agio keyboard --- SourceCode/AgIO/Source/Forms/FormKeyboard.Designer.cs | 4 ++-- SourceCode/AgIO/Source/Forms/FormKeyboard.cs | 2 +- SourceCode/AgIO/Source/Forms/FormKeyboard.resx | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/SourceCode/AgIO/Source/Forms/FormKeyboard.Designer.cs b/SourceCode/AgIO/Source/Forms/FormKeyboard.Designer.cs index 9114af2cf..c36fe9e54 100644 --- a/SourceCode/AgIO/Source/Forms/FormKeyboard.Designer.cs +++ b/SourceCode/AgIO/Source/Forms/FormKeyboard.Designer.cs @@ -45,7 +45,7 @@ private void InitializeComponent() this.keyboard1.BackColor = System.Drawing.SystemColors.GradientActiveCaption; this.keyboard1.Location = new System.Drawing.Point(2, 56); this.keyboard1.Name = "keyboard1"; - this.keyboard1.Size = new System.Drawing.Size(925, 396); + this.keyboard1.Size = new System.Drawing.Size(925, 484); this.keyboard1.TabIndex = 1; this.keyboard1.ButtonPressed += new System.Windows.Forms.KeyPressEventHandler(this.RegisterKeyboard1_ButtonPressed); // @@ -54,7 +54,7 @@ private void InitializeComponent() this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ActiveCaption; - this.ClientSize = new System.Drawing.Size(929, 544); + this.ClientSize = new System.Drawing.Size(929, 547); this.ControlBox = false; this.Controls.Add(this.keyboard1); this.Controls.Add(this.keyboardString); diff --git a/SourceCode/AgIO/Source/Forms/FormKeyboard.cs b/SourceCode/AgIO/Source/Forms/FormKeyboard.cs index f74196e73..17f167674 100644 --- a/SourceCode/AgIO/Source/Forms/FormKeyboard.cs +++ b/SourceCode/AgIO/Source/Forms/FormKeyboard.cs @@ -47,7 +47,7 @@ private void FormKeyboard_Load(object sender, EventArgs e) string language = Properties.Settings.Default.setF_culture; if (language == "fr") { - this.Height = 640; + this.Height = 587; } else { diff --git a/SourceCode/AgIO/Source/Forms/FormKeyboard.resx b/SourceCode/AgIO/Source/Forms/FormKeyboard.resx index 1af7de150..ffca20784 100644 --- a/SourceCode/AgIO/Source/Forms/FormKeyboard.resx +++ b/SourceCode/AgIO/Source/Forms/FormKeyboard.resx @@ -117,4 +117,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + \ No newline at end of file From 04ade32021f83208b773a77da7f6beb280c87a2b Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sun, 7 Apr 2024 13:50:26 -0600 Subject: [PATCH 18/19] look ahead to 7 secs --- .../GPS/Forms/Settings/FormSteer.Designer.cs | 64 +++++++++---------- SourceCode/GPS/Forms/Settings/FormSteer.resx | 4 +- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs b/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs index bf8718461..7282d4bf5 100644 --- a/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs +++ b/SourceCode/GPS/Forms/Settings/FormSteer.Designer.cs @@ -159,14 +159,14 @@ private void InitializeComponent() this.tabSensors = new System.Windows.Forms.TabPage(); this.tabConfig = new System.Windows.Forms.TabPage(); this.tabSettings = new System.Windows.Forms.TabPage(); + this.label41 = new System.Windows.Forms.Label(); + this.label39 = new System.Windows.Forms.Label(); this.hsbarUTurnCompensation = new System.Windows.Forms.HScrollBar(); this.lblUTurnCompensation = new System.Windows.Forms.Label(); this.label40 = new System.Windows.Forms.Label(); this.imageList2 = new System.Windows.Forms.ImageList(this.components); this.btnSteerWizard = new System.Windows.Forms.Button(); this.label35 = new System.Windows.Forms.Label(); - this.label39 = new System.Windows.Forms.Label(); - this.label41 = new System.Windows.Forms.Label(); this.tabControl1.SuspendLayout(); this.tabSteer.SuspendLayout(); this.tabGain.SuspendLayout(); @@ -1001,7 +1001,7 @@ private void InitializeComponent() // this.hsbarHoldLookAhead.LargeChange = 1; this.hsbarHoldLookAhead.Location = new System.Drawing.Point(68, 132); - this.hsbarHoldLookAhead.Maximum = 50; + this.hsbarHoldLookAhead.Maximum = 70; this.hsbarHoldLookAhead.Minimum = 10; this.hsbarHoldLookAhead.Name = "hsbarHoldLookAhead"; this.hsbarHoldLookAhead.Size = new System.Drawing.Size(217, 30); @@ -1135,7 +1135,7 @@ private void InitializeComponent() // this.hsbarLookAhead.LargeChange = 1; this.hsbarLookAhead.Location = new System.Drawing.Point(68, 54); - this.hsbarLookAhead.Maximum = 50; + this.hsbarLookAhead.Maximum = 70; this.hsbarLookAhead.Minimum = 10; this.hsbarLookAhead.Name = "hsbarLookAhead"; this.hsbarLookAhead.Size = new System.Drawing.Size(217, 30); @@ -1962,6 +1962,34 @@ private void InitializeComponent() this.tabSettings.TabIndex = 2; this.tabSettings.Text = "Settings"; // + // label41 + // + this.label41.AutoSize = true; + this.label41.BackColor = System.Drawing.Color.Transparent; + this.label41.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label41.ForeColor = System.Drawing.Color.Black; + this.label41.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label41.Location = new System.Drawing.Point(454, 118); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(18, 16); + this.label41.TabIndex = 532; + this.label41.Text = "In"; + this.label41.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // + // label39 + // + this.label39.AutoSize = true; + this.label39.BackColor = System.Drawing.Color.Transparent; + this.label39.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label39.ForeColor = System.Drawing.Color.Black; + this.label39.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.label39.Location = new System.Drawing.Point(140, 118); + this.label39.Name = "label39"; + this.label39.Size = new System.Drawing.Size(27, 16); + this.label39.TabIndex = 531; + this.label39.Text = "Out"; + this.label39.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + // // hsbarUTurnCompensation // this.hsbarUTurnCompensation.LargeChange = 1; @@ -2034,34 +2062,6 @@ private void InitializeComponent() this.label35.Text = "Wizard"; this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // label39 - // - this.label39.AutoSize = true; - this.label39.BackColor = System.Drawing.Color.Transparent; - this.label39.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label39.ForeColor = System.Drawing.Color.Black; - this.label39.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label39.Location = new System.Drawing.Point(140, 118); - this.label39.Name = "label39"; - this.label39.Size = new System.Drawing.Size(27, 16); - this.label39.TabIndex = 531; - this.label39.Text = "Out"; - this.label39.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // - // label41 - // - this.label41.AutoSize = true; - this.label41.BackColor = System.Drawing.Color.Transparent; - this.label41.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label41.ForeColor = System.Drawing.Color.Black; - this.label41.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.label41.Location = new System.Drawing.Point(454, 118); - this.label41.Name = "label41"; - this.label41.Size = new System.Drawing.Size(18, 16); - this.label41.TabIndex = 532; - this.label41.Text = "In"; - this.label41.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - // // FormSteer // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); diff --git a/SourceCode/GPS/Forms/Settings/FormSteer.resx b/SourceCode/GPS/Forms/Settings/FormSteer.resx index 4710d8cfa..efceb2e50 100644 --- a/SourceCode/GPS/Forms/Settings/FormSteer.resx +++ b/SourceCode/GPS/Forms/Settings/FormSteer.resx @@ -128,7 +128,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABq - KAAAAk1TRnQBSQFMAgEBBQEAAeABAgHgAQIBQgEAASwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + KAAAAk1TRnQBSQFMAgEBBQEAAegBAgHoAQIBQgEAASwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABCAEBAgABWAMAAQEBAAEIBQABwAFaGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHA AdwBwAEAAfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANC AQADOQEAAYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ @@ -311,7 +311,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACs - HwAAAk1TRnQBSQFMAgEBAwEAAUgBAAFIAQABMAEAATABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + HwAAAk1TRnQBSQFMAgEBAwEAAVABAAFQAQABMAEAATABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABwAMAATADAAEBAQABCAYAASQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA From 81663ecad96354c9b8203bf30f59e6d94c0bf14c Mon Sep 17 00:00:00 2001 From: BrianTee Date: Sun, 7 Apr 2024 19:51:21 -0600 Subject: [PATCH 19/19] 6.2 --- SourceCode/GPS/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SourceCode/GPS/Properties/AssemblyInfo.cs b/SourceCode/GPS/Properties/AssemblyInfo.cs index 070851492..2b8f83e00 100644 --- a/SourceCode/GPS/Properties/AssemblyInfo.cs +++ b/SourceCode/GPS/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("6.1.0")] -[assembly: AssemblyFileVersion("6.1.0")] \ No newline at end of file +[assembly: AssemblyVersion("6.2.0")] +[assembly: AssemblyFileVersion("6.2.0")] \ No newline at end of file