//----------------------------------------------------------------------- // // 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 UserInterface.GUI.OBD { [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 ObdIso14229DtcPanel { /// /// 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 Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ObdIso14229DtcPanel)); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.dtcDGV = new System.Windows.Forms.DataGridView(); this.count = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ecu = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.col_mask = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dtc = new System.Windows.Forms.DataGridViewLinkColumn(); this.description = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); this.label1 = new System.Windows.Forms.Label(); this.statusMaskClb = new System.Windows.Forms.CheckedListBox(); this.numDtcsTextBox = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.dtcFormatTextBox = new System.Windows.Forms.TextBox(); this.manualMaskButton = new System.Windows.Forms.Button(); this.refreshButton = new System.Windows.Forms.Button(); this.clearIso14229DtcsButton = new System.Windows.Forms.Button(); this.currentIso14229DtcsButton = new System.Windows.Forms.Button(); this.saveDtcsButton = new System.Windows.Forms.Button(); this.maskByteTB = new System.Windows.Forms.TextBox(); ((System.ComponentModel.ISupportInitialize)(this.dtcDGV)).BeginInit(); this.SuspendLayout(); // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, "table_multiple.png"); this.imageList1.Images.SetKeyName(1, "page_white_error.png"); this.imageList1.Images.SetKeyName(2, "chart_line.png"); // // dtcDGV // this.dtcDGV.AllowUserToAddRows = false; this.dtcDGV.AllowUserToDeleteRows = false; this.dtcDGV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dtcDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dtcDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.count, this.ecu, this.col_mask, this.dtc, this.description}); this.dtcDGV.Location = new System.Drawing.Point(3, 149); this.dtcDGV.Name = "dtcDGV"; this.dtcDGV.Size = new System.Drawing.Size(814, 350); this.dtcDGV.TabIndex = 5; this.dtcDGV.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtcDGV_CellContentClick); this.dtcDGV.SizeChanged += new System.EventHandler(this.dtcDGW_SizeChanged); // // count // this.count.HeaderText = "#"; this.count.Name = "count"; this.count.ReadOnly = true; this.count.Width = 40; // // ecu // this.ecu.HeaderText = "ECU"; this.ecu.Name = "ecu"; // // col_mask // this.col_mask.HeaderText = "Mask"; this.col_mask.Name = "col_mask"; this.col_mask.Width = 60; // // dtc // this.dtc.HeaderText = "DTC"; this.dtc.Name = "dtc"; this.dtc.ReadOnly = true; this.dtc.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.dtc.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; this.dtc.Width = 60; // // description // this.description.HeaderText = "Description"; this.description.Name = "description"; this.description.ReadOnly = true; this.description.Width = 494; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(106, 3); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(66, 13); this.label1.TabIndex = 13; this.label1.Text = "Status Mask"; // // statusMaskClb // this.statusMaskClb.CheckOnClick = true; this.statusMaskClb.FormattingEnabled = true; this.statusMaskClb.Location = new System.Drawing.Point(109, 19); this.statusMaskClb.Name = "statusMaskClb"; this.statusMaskClb.Size = new System.Drawing.Size(253, 124); this.statusMaskClb.TabIndex = 12; this.statusMaskClb.SelectedIndexChanged += new System.EventHandler(this.statusMaskClb_SelectedIndexChanged); // // numDtcsTextBox // this.numDtcsTextBox.Location = new System.Drawing.Point(3, 123); this.numDtcsTextBox.Name = "numDtcsTextBox"; this.numDtcsTextBox.ReadOnly = true; this.numDtcsTextBox.Size = new System.Drawing.Size(97, 20); this.numDtcsTextBox.TabIndex = 14; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(3, 107); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(86, 13); this.label2.TabIndex = 15; this.label2.Text = "Number of DTCs"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(3, 68); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 13); this.label3.TabIndex = 17; this.label3.Text = "DTC Format"; // // dtcFormatTextBox // this.dtcFormatTextBox.Location = new System.Drawing.Point(3, 84); this.dtcFormatTextBox.Name = "dtcFormatTextBox"; this.dtcFormatTextBox.ReadOnly = true; this.dtcFormatTextBox.Size = new System.Drawing.Size(97, 20); this.dtcFormatTextBox.TabIndex = 16; // // manualMaskButton // this.manualMaskButton.Image = global::UserInterface.Properties.Resources.asterisk_orange; this.manualMaskButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.manualMaskButton.Location = new System.Drawing.Point(3, 32); this.manualMaskButton.Name = "manualMaskButton"; this.manualMaskButton.Size = new System.Drawing.Size(97, 23); this.manualMaskButton.TabIndex = 19; this.manualMaskButton.Text = "Manual Mask"; this.manualMaskButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.manualMaskButton.UseVisualStyleBackColor = true; this.manualMaskButton.Click += new System.EventHandler(this.manualMaskButton_Click); // // refreshButton // this.refreshButton.Image = global::UserInterface.Properties.Resources.arrow_refresh; this.refreshButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.refreshButton.Location = new System.Drawing.Point(3, 3); this.refreshButton.Name = "refreshButton"; this.refreshButton.Size = new System.Drawing.Size(97, 23); this.refreshButton.TabIndex = 18; this.refreshButton.Text = "Refresh"; this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.refreshButton.UseVisualStyleBackColor = true; this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click); // // clearIso14229DtcsButton // this.clearIso14229DtcsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.clearIso14229DtcsButton.Image = global::UserInterface.Properties.Resources.page_white_delete; this.clearIso14229DtcsButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.clearIso14229DtcsButton.Location = new System.Drawing.Point(689, 32); this.clearIso14229DtcsButton.Name = "clearIso14229DtcsButton"; this.clearIso14229DtcsButton.Size = new System.Drawing.Size(128, 23); this.clearIso14229DtcsButton.TabIndex = 11; this.clearIso14229DtcsButton.Text = "Clear DTCs"; this.clearIso14229DtcsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.clearIso14229DtcsButton.UseVisualStyleBackColor = true; this.clearIso14229DtcsButton.Click += new System.EventHandler(this.clearIso14229DtcsButton_Click); // // currentIso14229DtcsButton // this.currentIso14229DtcsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.currentIso14229DtcsButton.Image = global::UserInterface.Properties.Resources.page_red; this.currentIso14229DtcsButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.currentIso14229DtcsButton.Location = new System.Drawing.Point(689, 3); this.currentIso14229DtcsButton.Name = "currentIso14229DtcsButton"; this.currentIso14229DtcsButton.Size = new System.Drawing.Size(128, 23); this.currentIso14229DtcsButton.TabIndex = 9; this.currentIso14229DtcsButton.Text = "Get DTCs"; this.currentIso14229DtcsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.currentIso14229DtcsButton.UseVisualStyleBackColor = true; this.currentIso14229DtcsButton.Click += new System.EventHandler(this.currentIso14229DtcsButton_Click); // // saveDtcsButton // this.saveDtcsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.saveDtcsButton.Image = global::UserInterface.Properties.Resources.page_save; this.saveDtcsButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.saveDtcsButton.Location = new System.Drawing.Point(689, 61); this.saveDtcsButton.Name = "saveDtcsButton"; this.saveDtcsButton.Size = new System.Drawing.Size(128, 23); this.saveDtcsButton.TabIndex = 7; this.saveDtcsButton.Text = "Save DTCs"; this.saveDtcsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.saveDtcsButton.UseVisualStyleBackColor = true; this.saveDtcsButton.Click += new System.EventHandler(this.saveDtcsButton_Click); // // maskByteTB // this.maskByteTB.Location = new System.Drawing.Point(368, 19); this.maskByteTB.Name = "maskByteTB"; this.maskByteTB.ReadOnly = true; this.maskByteTB.Size = new System.Drawing.Size(100, 20); this.maskByteTB.TabIndex = 20; // // ObdIso14229DtcPanel // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.maskByteTB); this.Controls.Add(this.manualMaskButton); this.Controls.Add(this.refreshButton); this.Controls.Add(this.label3); this.Controls.Add(this.dtcFormatTextBox); this.Controls.Add(this.label2); this.Controls.Add(this.numDtcsTextBox); this.Controls.Add(this.clearIso14229DtcsButton); this.Controls.Add(this.label1); this.Controls.Add(this.currentIso14229DtcsButton); this.Controls.Add(this.statusMaskClb); this.Controls.Add(this.saveDtcsButton); this.Controls.Add(this.dtcDGV); this.Name = "ObdIso14229DtcPanel"; this.Size = new System.Drawing.Size(820, 502); ((System.ComponentModel.ISupportInitialize)(this.dtcDGV)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ImageList imageList1; private System.Windows.Forms.DataGridView dtcDGV; private System.Windows.Forms.Button saveDtcsButton; private System.Windows.Forms.SaveFileDialog saveFileDialog1; private System.Windows.Forms.Button currentIso14229DtcsButton; private System.Windows.Forms.Button clearIso14229DtcsButton; private System.Windows.Forms.Label label1; private System.Windows.Forms.CheckedListBox statusMaskClb; private System.Windows.Forms.DataGridViewTextBoxColumn count; private System.Windows.Forms.DataGridViewTextBoxColumn ecu; private System.Windows.Forms.DataGridViewTextBoxColumn col_mask; private System.Windows.Forms.DataGridViewLinkColumn dtc; private System.Windows.Forms.DataGridViewTextBoxColumn description; private System.Windows.Forms.TextBox numDtcsTextBox; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox dtcFormatTextBox; private System.Windows.Forms.Button refreshButton; private System.Windows.Forms.Button manualMaskButton; private System.Windows.Forms.TextBox maskByteTB; } }