//-----------------------------------------------------------------------
//
// 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 ObdDataPanel
{
///
/// 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))
{
this.iconNoplot.Dispose();
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(ObdDataPanel));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.selectRightToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectColumnDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn();
this.dataGridViewImageColumn2 = new System.Windows.Forms.DataGridViewImageColumn();
this.col_item = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_mode = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_pid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_freq = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_description = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_plottable = new System.Windows.Forms.DataGridViewImageColumn();
this.col_plotgroup = new System.Windows.Forms.DataGridViewComboBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
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");
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.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.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.col_item,
this.col_mode,
this.col_pid,
this.col_freq,
this.col_description,
this.col_plottable,
this.col_plotgroup});
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(559, 502);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseDown);
this.dataGridView1.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.dataGridView1_CellPainting);
this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView1_DataError);
this.dataGridView1.SizeChanged += new System.EventHandler(this.dataGridView1_SizeChanged);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.selectRightToolStripMenuItem,
this.selectColumnDownToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(207, 70);
//
// selectRightToolStripMenuItem
//
this.selectRightToolStripMenuItem.Name = "selectRightToolStripMenuItem";
this.selectRightToolStripMenuItem.Size = new System.Drawing.Size(206, 22);
this.selectRightToolStripMenuItem.Text = "Toggle Select Row Right";
this.selectRightToolStripMenuItem.Click += new System.EventHandler(this.selectRightToolStripMenuItem_Click);
//
// selectColumnDownToolStripMenuItem
//
this.selectColumnDownToolStripMenuItem.Name = "selectColumnDownToolStripMenuItem";
this.selectColumnDownToolStripMenuItem.Size = new System.Drawing.Size(206, 22);
this.selectColumnDownToolStripMenuItem.Text = "Toggle Select Column Down";
this.selectColumnDownToolStripMenuItem.Click += new System.EventHandler(this.selectColumnDownToolStripMenuItem_Click);
//
// dataGridViewImageColumn1
//
this.dataGridViewImageColumn1.HeaderText = "Plot";
this.dataGridViewImageColumn1.Image = global::UserInterface.Properties.Resources.chart_curve;
this.dataGridViewImageColumn1.Name = "dataGridViewImageColumn1";
this.dataGridViewImageColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridViewImageColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.dataGridViewImageColumn1.Width = 32;
//
// dataGridViewImageColumn2
//
this.dataGridViewImageColumn2.HeaderText = "Multi-Sel.";
this.dataGridViewImageColumn2.Image = global::UserInterface.Properties.Resources.arrow_down;
this.dataGridViewImageColumn2.Name = "dataGridViewImageColumn2";
//
// col_item
//
this.col_item.HeaderText = "Item";
this.col_item.Name = "col_item";
this.col_item.Visible = false;
//
// col_mode
//
this.col_mode.HeaderText = "Mode";
this.col_mode.Name = "col_mode";
this.col_mode.ReadOnly = true;
this.col_mode.Width = 60;
//
// col_pid
//
this.col_pid.HeaderText = "PID";
this.col_pid.Name = "col_pid";
this.col_pid.ReadOnly = true;
this.col_pid.Width = 60;
//
// col_freq
//
this.col_freq.HeaderText = "Freq.";
this.col_freq.Name = "col_freq";
this.col_freq.ReadOnly = true;
this.col_freq.Width = 40;
//
// col_description
//
this.col_description.HeaderText = "Description";
this.col_description.Name = "col_description";
this.col_description.ReadOnly = true;
this.col_description.Width = 240;
//
// col_plottable
//
this.col_plottable.HeaderText = "Plot";
this.col_plottable.Image = global::UserInterface.Properties.Resources.chart_curve;
this.col_plottable.Name = "col_plottable";
this.col_plottable.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.col_plottable.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.col_plottable.Width = 32;
//
// col_plotgroup
//
this.col_plotgroup.HeaderText = "Plot Group";
this.col_plotgroup.Name = "col_plotgroup";
this.col_plotgroup.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.col_plotgroup.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.col_plotgroup.Width = 60;
//
// ObdDataPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.dataGridView1);
this.Name = "ObdDataPanel";
this.Size = new System.Drawing.Size(559, 502);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn1;
private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn2;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem selectRightToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem selectColumnDownToolStripMenuItem;
private System.Windows.Forms.DataGridViewTextBoxColumn col_item;
private System.Windows.Forms.DataGridViewTextBoxColumn col_mode;
private System.Windows.Forms.DataGridViewTextBoxColumn col_pid;
private System.Windows.Forms.DataGridViewTextBoxColumn col_freq;
private System.Windows.Forms.DataGridViewTextBoxColumn col_description;
private System.Windows.Forms.DataGridViewImageColumn col_plottable;
private System.Windows.Forms.DataGridViewComboBoxColumn col_plotgroup;
}
}