//----------------------------------------------------------------------- // // Copyright © 2012 Nils Hammar. All rights reserved. // //----------------------------------------------------------------------- /* * Software to access vehicle information via the OBD-II connector. * * Copyright © 2012 Nils Hammar * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Alternative licensing is possible, see the licensing document. * * The above text may not be removed or modified. */ namespace Gauges { [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1202:ElementsMustBeOrderedByAccess", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:PrefixLocalCallsWithThis", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1400:AccessModifierMustBeDeclared", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.LayoutRules", "SA1513:ClosingCurlyBracketMustBeFollowedByBlankLine", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:ElementsMustBeDocumented", Justification = "Tool Generated.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1601:PartialElementsMustBeDocumented", Justification = "Tool Generated.")] partial class GaugeDetails { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GaugeDetails)); this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.pidGroupsCB = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.itemCB = new System.Windows.Forms.ComboBox(); this.label3 = new System.Windows.Forms.Label(); this.sensorCB = new System.Windows.Forms.ComboBox(); this.label6 = new System.Windows.Forms.Label(); this.majorScaleStepsTB = new System.Windows.Forms.TextBox(); this.gaugeTextTB = new System.Windows.Forms.TextBox(); this.label7 = new System.Windows.Forms.Label(); this.gaugeNumTB = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.divisorTextbox = new System.Windows.Forms.TextBox(); this.minorScaleStepsTB = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label9 = new System.Windows.Forms.Label(); this.digitalPidGroupsCB = new System.Windows.Forms.ComboBox(); this.label11 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.digitalItemCB = new System.Windows.Forms.ComboBox(); this.digitalDivisorTextbox = new System.Windows.Forms.TextBox(); this.label13 = new System.Windows.Forms.Label(); this.digitalSensorCB = new System.Windows.Forms.ComboBox(); this.label14 = new System.Windows.Forms.Label(); this.digitalFormat = new System.Windows.Forms.TextBox(); this.digitalGaugeTextTB = new System.Windows.Forms.TextBox(); this.label15 = new System.Windows.Forms.Label(); this.button1 = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // cancelButton // this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.cancelButton.Location = new System.Drawing.Point(396, 325); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 9; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // okButton // this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.okButton.Location = new System.Drawing.Point(315, 325); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 8; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // pidGroupsCB // this.pidGroupsCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.pidGroupsCB.FormattingEnabled = true; this.pidGroupsCB.Location = new System.Drawing.Point(9, 71); this.pidGroupsCB.Name = "pidGroupsCB"; this.pidGroupsCB.Size = new System.Drawing.Size(338, 21); this.pidGroupsCB.TabIndex = 2; this.pidGroupsCB.SelectedIndexChanged += new System.EventHandler(this.pidGroupsCB_SelectedIndexChanged); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 55); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(57, 13); this.label1.TabIndex = 41; this.label1.Text = "PID Group"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(6, 95); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(119, 13); this.label2.TabIndex = 43; this.label2.Text = "Item (PID, Address etc.)"; // // itemCB // this.itemCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.itemCB.FormattingEnabled = true; this.itemCB.Location = new System.Drawing.Point(9, 111); this.itemCB.Name = "itemCB"; this.itemCB.Size = new System.Drawing.Size(338, 21); this.itemCB.TabIndex = 3; this.itemCB.SelectedIndexChanged += new System.EventHandler(this.itemCB_SelectedIndexChanged); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(6, 135); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 13); this.label3.TabIndex = 45; this.label3.Text = "Sensor"; // // sensorCB // this.sensorCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.sensorCB.FormattingEnabled = true; this.sensorCB.Location = new System.Drawing.Point(9, 151); this.sensorCB.Name = "sensorCB"; this.sensorCB.Size = new System.Drawing.Size(338, 21); this.sensorCB.TabIndex = 4; this.sensorCB.SelectedIndexChanged += new System.EventHandler(this.sensorCB_SelectedIndexChanged); // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(6, 175); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(93, 13); this.label6.TabIndex = 51; this.label6.Text = "Major Scale Steps"; // // majorScaleStepsTB // this.majorScaleStepsTB.Location = new System.Drawing.Point(9, 191); this.majorScaleStepsTB.Name = "majorScaleStepsTB"; this.majorScaleStepsTB.Size = new System.Drawing.Size(73, 20); this.majorScaleStepsTB.TabIndex = 5; this.majorScaleStepsTB.Validating += new System.ComponentModel.CancelEventHandler(this.scaleTextbox_Validating); // // gaugeTextTB // this.gaugeTextTB.Location = new System.Drawing.Point(9, 32); this.gaugeTextTB.Name = "gaugeTextTB"; this.gaugeTextTB.Size = new System.Drawing.Size(125, 20); this.gaugeTextTB.TabIndex = 1; // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(6, 16); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(63, 13); this.label7.TabIndex = 53; this.label7.Text = "Gauge Text"; // // gaugeNumTB // this.gaugeNumTB.Location = new System.Drawing.Point(158, 12); this.gaugeNumTB.Name = "gaugeNumTB"; this.gaugeNumTB.ReadOnly = true; this.gaugeNumTB.Size = new System.Drawing.Size(73, 20); this.gaugeNumTB.TabIndex = 54; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(103, 15); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(49, 13); this.label8.TabIndex = 55; this.label8.Text = "Gauge #"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(149, 175); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(52, 13); this.label4.TabIndex = 57; this.label4.Text = "Divide By"; // // divisorTextbox // this.divisorTextbox.Location = new System.Drawing.Point(152, 191); this.divisorTextbox.Name = "divisorTextbox"; this.divisorTextbox.Size = new System.Drawing.Size(73, 20); this.divisorTextbox.TabIndex = 7; this.divisorTextbox.Validating += new System.ComponentModel.CancelEventHandler(this.divisorTextbox_Validating); // // minorScaleStepsTB // this.minorScaleStepsTB.Location = new System.Drawing.Point(9, 230); this.minorScaleStepsTB.Name = "minorScaleStepsTB"; this.minorScaleStepsTB.Size = new System.Drawing.Size(73, 20); this.minorScaleStepsTB.TabIndex = 6; this.minorScaleStepsTB.Validating += new System.ComponentModel.CancelEventHandler(this.minorScaleStepsTB_Validating); // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(6, 214); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(93, 13); this.label5.TabIndex = 59; this.label5.Text = "Minor Scale Steps"; // // groupBox1 // this.groupBox1.Controls.Add(this.label7); this.groupBox1.Controls.Add(this.label5); this.groupBox1.Controls.Add(this.pidGroupsCB); this.groupBox1.Controls.Add(this.minorScaleStepsTB); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.label4); this.groupBox1.Controls.Add(this.itemCB); this.groupBox1.Controls.Add(this.divisorTextbox); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.sensorCB); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.majorScaleStepsTB); this.groupBox1.Controls.Add(this.gaugeTextTB); this.groupBox1.Controls.Add(this.label6); this.groupBox1.Location = new System.Drawing.Point(12, 38); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(359, 261); this.groupBox1.TabIndex = 60; this.groupBox1.TabStop = false; this.groupBox1.Text = "Analogue Gauge"; // // groupBox2 // this.groupBox2.Controls.Add(this.label9); this.groupBox2.Controls.Add(this.digitalPidGroupsCB); this.groupBox2.Controls.Add(this.label11); this.groupBox2.Controls.Add(this.label12); this.groupBox2.Controls.Add(this.digitalItemCB); this.groupBox2.Controls.Add(this.digitalDivisorTextbox); this.groupBox2.Controls.Add(this.label13); this.groupBox2.Controls.Add(this.digitalSensorCB); this.groupBox2.Controls.Add(this.label14); this.groupBox2.Controls.Add(this.digitalFormat); this.groupBox2.Controls.Add(this.digitalGaugeTextTB); this.groupBox2.Controls.Add(this.label15); this.groupBox2.Location = new System.Drawing.Point(377, 38); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(359, 261); this.groupBox2.TabIndex = 61; this.groupBox2.TabStop = false; this.groupBox2.Text = "Digital Gauge"; // // label9 // this.label9.AutoSize = true; this.label9.Location = new System.Drawing.Point(6, 16); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(63, 13); this.label9.TabIndex = 53; this.label9.Text = "Gauge Text"; // // digitalPidGroupsCB // this.digitalPidGroupsCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.digitalPidGroupsCB.FormattingEnabled = true; this.digitalPidGroupsCB.Location = new System.Drawing.Point(9, 71); this.digitalPidGroupsCB.Name = "digitalPidGroupsCB"; this.digitalPidGroupsCB.Size = new System.Drawing.Size(338, 21); this.digitalPidGroupsCB.TabIndex = 2; this.digitalPidGroupsCB.SelectedIndexChanged += new System.EventHandler(this.digitalPidGroupsCB_SelectedIndexChanged); // // label11 // this.label11.AutoSize = true; this.label11.Location = new System.Drawing.Point(6, 55); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(57, 13); this.label11.TabIndex = 41; this.label11.Text = "PID Group"; // // label12 // this.label12.AutoSize = true; this.label12.Location = new System.Drawing.Point(149, 175); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(52, 13); this.label12.TabIndex = 57; this.label12.Text = "Divide By"; // // digitalItemCB // this.digitalItemCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.digitalItemCB.FormattingEnabled = true; this.digitalItemCB.Location = new System.Drawing.Point(9, 111); this.digitalItemCB.Name = "digitalItemCB"; this.digitalItemCB.Size = new System.Drawing.Size(338, 21); this.digitalItemCB.TabIndex = 3; this.digitalItemCB.SelectedIndexChanged += new System.EventHandler(this.digitalItemCB_SelectedIndexChanged); // // digitalDivisorTextbox // this.digitalDivisorTextbox.Location = new System.Drawing.Point(152, 191); this.digitalDivisorTextbox.Name = "digitalDivisorTextbox"; this.digitalDivisorTextbox.Size = new System.Drawing.Size(73, 20); this.digitalDivisorTextbox.TabIndex = 7; this.digitalDivisorTextbox.Validating += new System.ComponentModel.CancelEventHandler(this.digitalDivisorTextbox_Validating); // // label13 // this.label13.AutoSize = true; this.label13.Location = new System.Drawing.Point(6, 95); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(119, 13); this.label13.TabIndex = 43; this.label13.Text = "Item (PID, Address etc.)"; // // digitalSensorCB // this.digitalSensorCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.digitalSensorCB.FormattingEnabled = true; this.digitalSensorCB.Location = new System.Drawing.Point(9, 151); this.digitalSensorCB.Name = "digitalSensorCB"; this.digitalSensorCB.Size = new System.Drawing.Size(338, 21); this.digitalSensorCB.TabIndex = 4; this.digitalSensorCB.SelectedIndexChanged += new System.EventHandler(this.digitalSensorCB_SelectedIndexChanged); // // label14 // this.label14.AutoSize = true; this.label14.Location = new System.Drawing.Point(6, 135); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(40, 13); this.label14.TabIndex = 45; this.label14.Text = "Sensor"; // // digitalFormat // this.digitalFormat.Location = new System.Drawing.Point(9, 191); this.digitalFormat.Name = "digitalFormat"; this.digitalFormat.Size = new System.Drawing.Size(73, 20); this.digitalFormat.TabIndex = 5; this.digitalFormat.Validating += new System.ComponentModel.CancelEventHandler(this.digitalFormat_Validating); // // digitalGaugeTextTB // this.digitalGaugeTextTB.Location = new System.Drawing.Point(9, 32); this.digitalGaugeTextTB.Name = "digitalGaugeTextTB"; this.digitalGaugeTextTB.Size = new System.Drawing.Size(125, 20); this.digitalGaugeTextTB.TabIndex = 1; // // label15 // this.label15.AutoSize = true; this.label15.Location = new System.Drawing.Point(6, 175); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(39, 13); this.label15.TabIndex = 51; this.label15.Text = "Format"; // // button1 // this.button1.Location = new System.Drawing.Point(237, 10); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 62; this.button1.Text = "Select"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // GaugeDetails // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(779, 360); this.ControlBox = false; this.Controls.Add(this.button1); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Controls.Add(this.label8); this.Controls.Add(this.gaugeNumTB); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "GaugeDetails"; this.Text = "GaugeDetails"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; private System.Windows.Forms.ComboBox pidGroupsCB; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox itemCB; private System.Windows.Forms.Label label3; private System.Windows.Forms.ComboBox sensorCB; private System.Windows.Forms.Label label6; private System.Windows.Forms.TextBox majorScaleStepsTB; private System.Windows.Forms.TextBox gaugeTextTB; private System.Windows.Forms.Label label7; private System.Windows.Forms.TextBox gaugeNumTB; private System.Windows.Forms.Label label8; private System.Windows.Forms.Label label4; private System.Windows.Forms.TextBox divisorTextbox; private System.Windows.Forms.TextBox minorScaleStepsTB; private System.Windows.Forms.Label label5; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Label label9; private System.Windows.Forms.ComboBox digitalPidGroupsCB; private System.Windows.Forms.Label label11; private System.Windows.Forms.Label label12; private System.Windows.Forms.ComboBox digitalItemCB; private System.Windows.Forms.TextBox digitalDivisorTextbox; private System.Windows.Forms.Label label13; private System.Windows.Forms.ComboBox digitalSensorCB; private System.Windows.Forms.Label label14; private System.Windows.Forms.TextBox digitalFormat; private System.Windows.Forms.TextBox digitalGaugeTextTB; private System.Windows.Forms.Label label15; private System.Windows.Forms.Button button1; } }