1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/GUI/MainForm.Designer.cs Tue Jan 26 22:37:48 2010 +0000
1.3 @@ -0,0 +1,523 @@
1.4 +/*
1.5 +
1.6 + Version: MPL 1.1/GPL 2.0/LGPL 2.1
1.7 +
1.8 + The contents of this file are subject to the Mozilla Public License Version
1.9 + 1.1 (the "License"); you may not use this file except in compliance with
1.10 + the License. You may obtain a copy of the License at
1.11 +
1.12 + http://www.mozilla.org/MPL/
1.13 +
1.14 + Software distributed under the License is distributed on an "AS IS" basis,
1.15 + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
1.16 + for the specific language governing rights and limitations under the License.
1.17 +
1.18 + The Original Code is the Open Hardware Monitor code.
1.19 +
1.20 + The Initial Developer of the Original Code is
1.21 + Michael Möller <m.moeller@gmx.ch>.
1.22 + Portions created by the Initial Developer are Copyright (C) 2009-2010
1.23 + the Initial Developer. All Rights Reserved.
1.24 +
1.25 + Contributor(s):
1.26 +
1.27 + Alternatively, the contents of this file may be used under the terms of
1.28 + either the GNU General Public License Version 2 or later (the "GPL"), or
1.29 + the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
1.30 + in which case the provisions of the GPL or the LGPL are applicable instead
1.31 + of those above. If you wish to allow use of your version of this file only
1.32 + under the terms of either the GPL or the LGPL, and not to allow others to
1.33 + use your version of this file under the terms of the MPL, indicate your
1.34 + decision by deleting the provisions above and replace them with the notice
1.35 + and other provisions required by the GPL or the LGPL. If you do not delete
1.36 + the provisions above, a recipient may use your version of this file under
1.37 + the terms of any one of the MPL, the GPL or the LGPL.
1.38 +
1.39 +*/
1.40 +
1.41 +namespace OpenHardwareMonitor.GUI {
1.42 + partial class MainForm {
1.43 + /// <summary>
1.44 + /// Required designer variable.
1.45 + /// </summary>
1.46 + private System.ComponentModel.IContainer components = null;
1.47 +
1.48 + /// <summary>
1.49 + /// Clean up any resources being used.
1.50 + /// </summary>
1.51 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
1.52 + protected override void Dispose(bool disposing) {
1.53 + if (disposing && (components != null)) {
1.54 + components.Dispose();
1.55 + }
1.56 + base.Dispose(disposing);
1.57 + }
1.58 +
1.59 + #region Windows Form Designer generated code
1.60 +
1.61 + /// <summary>
1.62 + /// Required method for Designer support - do not modify
1.63 + /// the contents of this method with the code editor.
1.64 + /// </summary>
1.65 + private void InitializeComponent() {
1.66 + this.components = new System.ComponentModel.Container();
1.67 + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
1.68 + this.treeView = new Aga.Controls.Tree.TreeViewAdv();
1.69 + this.sensor = new Aga.Controls.Tree.TreeColumn();
1.70 + this.value = new Aga.Controls.Tree.TreeColumn();
1.71 + this.min = new Aga.Controls.Tree.TreeColumn();
1.72 + this.max = new Aga.Controls.Tree.TreeColumn();
1.73 + this.limit = new Aga.Controls.Tree.TreeColumn();
1.74 + this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
1.75 + this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
1.76 + this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
1.77 + this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
1.78 + this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
1.79 + this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
1.80 + this.nodeTextBoxLimit = new Aga.Controls.Tree.NodeControls.NodeTextBox();
1.81 + this.columnsContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
1.82 + this.valueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.83 + this.minMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.84 + this.maxMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.85 + this.limitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.86 + this.menuStrip = new System.Windows.Forms.MenuStrip();
1.87 + this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.88 + this.saveReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.89 + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.90 + this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.91 + this.sensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.92 + this.voltMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.93 + this.clocksMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.94 + this.tempMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.95 + this.fansMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.96 + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
1.97 + this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.98 + this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.99 + this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.100 + this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.101 + this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
1.102 + this.timer = new System.Windows.Forms.Timer(this.components);
1.103 + this.splitContainer = new System.Windows.Forms.SplitContainer();
1.104 + this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
1.105 + this.columnsContextMenuStrip.SuspendLayout();
1.106 + this.menuStrip.SuspendLayout();
1.107 + this.splitContainer.Panel1.SuspendLayout();
1.108 + this.splitContainer.Panel2.SuspendLayout();
1.109 + this.splitContainer.SuspendLayout();
1.110 + this.SuspendLayout();
1.111 + //
1.112 + // treeView
1.113 + //
1.114 + this.treeView.BackColor = System.Drawing.SystemColors.Window;
1.115 + this.treeView.Columns.Add(this.sensor);
1.116 + this.treeView.Columns.Add(this.value);
1.117 + this.treeView.Columns.Add(this.min);
1.118 + this.treeView.Columns.Add(this.max);
1.119 + this.treeView.Columns.Add(this.limit);
1.120 + this.treeView.DefaultToolTipProvider = null;
1.121 + this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
1.122 + this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
1.123 + this.treeView.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1.124 + this.treeView.FullRowSelect = true;
1.125 + this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
1.126 + this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
1.127 + this.treeView.Location = new System.Drawing.Point(0, 0);
1.128 + this.treeView.Model = null;
1.129 + this.treeView.Name = "treeView";
1.130 + this.treeView.NodeControls.Add(this.nodeImage);
1.131 + this.treeView.NodeControls.Add(this.nodeCheckBox);
1.132 + this.treeView.NodeControls.Add(this.nodeTextBoxText);
1.133 + this.treeView.NodeControls.Add(this.nodeTextBoxValue);
1.134 + this.treeView.NodeControls.Add(this.nodeTextBoxMin);
1.135 + this.treeView.NodeControls.Add(this.nodeTextBoxMax);
1.136 + this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
1.137 + this.treeView.RowHeight = 18;
1.138 + this.treeView.SelectedNode = null;
1.139 + this.treeView.Size = new System.Drawing.Size(478, 567);
1.140 + this.treeView.TabIndex = 0;
1.141 + this.treeView.Text = "treeView";
1.142 + this.treeView.UseColumns = true;
1.143 + this.treeView.Click += new System.EventHandler(this.treeView_Click);
1.144 + //
1.145 + // sensor
1.146 + //
1.147 + this.sensor.Header = "Sensor";
1.148 + this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
1.149 + this.sensor.TooltipText = null;
1.150 + this.sensor.Width = 250;
1.151 + //
1.152 + // value
1.153 + //
1.154 + this.value.Header = "Value";
1.155 + this.value.SortOrder = System.Windows.Forms.SortOrder.None;
1.156 + this.value.TooltipText = null;
1.157 + this.value.Width = 100;
1.158 + //
1.159 + // min
1.160 + //
1.161 + this.min.Header = "Min";
1.162 + this.min.SortOrder = System.Windows.Forms.SortOrder.None;
1.163 + this.min.TooltipText = null;
1.164 + this.min.Width = 100;
1.165 + //
1.166 + // max
1.167 + //
1.168 + this.max.Header = "Max";
1.169 + this.max.SortOrder = System.Windows.Forms.SortOrder.None;
1.170 + this.max.TooltipText = null;
1.171 + this.max.Width = 100;
1.172 + //
1.173 + // limit
1.174 + //
1.175 + this.limit.Header = "Limit";
1.176 + this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
1.177 + this.limit.TooltipText = null;
1.178 + this.limit.Width = 100;
1.179 + //
1.180 + // nodeImage
1.181 + //
1.182 + this.nodeImage.DataPropertyName = "Image";
1.183 + this.nodeImage.LeftMargin = 1;
1.184 + this.nodeImage.ParentColumn = this.sensor;
1.185 + this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
1.186 + //
1.187 + // nodeCheckBox
1.188 + //
1.189 + this.nodeCheckBox.DataPropertyName = "Plot";
1.190 + this.nodeCheckBox.EditEnabled = true;
1.191 + this.nodeCheckBox.LeftMargin = 3;
1.192 + this.nodeCheckBox.ParentColumn = this.sensor;
1.193 + //
1.194 + // nodeTextBoxText
1.195 + //
1.196 + this.nodeTextBoxText.DataPropertyName = "Text";
1.197 + this.nodeTextBoxText.EditEnabled = true;
1.198 + this.nodeTextBoxText.IncrementalSearchEnabled = true;
1.199 + this.nodeTextBoxText.LeftMargin = 3;
1.200 + this.nodeTextBoxText.ParentColumn = this.sensor;
1.201 + //
1.202 + // nodeTextBoxValue
1.203 + //
1.204 + this.nodeTextBoxValue.DataPropertyName = "Value";
1.205 + this.nodeTextBoxValue.IncrementalSearchEnabled = true;
1.206 + this.nodeTextBoxValue.LeftMargin = 3;
1.207 + this.nodeTextBoxValue.ParentColumn = this.value;
1.208 + //
1.209 + // nodeTextBoxMin
1.210 + //
1.211 + this.nodeTextBoxMin.DataPropertyName = "Min";
1.212 + this.nodeTextBoxMin.IncrementalSearchEnabled = true;
1.213 + this.nodeTextBoxMin.LeftMargin = 3;
1.214 + this.nodeTextBoxMin.ParentColumn = this.min;
1.215 + //
1.216 + // nodeTextBoxMax
1.217 + //
1.218 + this.nodeTextBoxMax.DataPropertyName = "Max";
1.219 + this.nodeTextBoxMax.IncrementalSearchEnabled = true;
1.220 + this.nodeTextBoxMax.LeftMargin = 3;
1.221 + this.nodeTextBoxMax.ParentColumn = this.max;
1.222 + //
1.223 + // nodeTextBoxLimit
1.224 + //
1.225 + this.nodeTextBoxLimit.DataPropertyName = "Limit";
1.226 + this.nodeTextBoxLimit.EditEnabled = true;
1.227 + this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
1.228 + this.nodeTextBoxLimit.LeftMargin = 3;
1.229 + this.nodeTextBoxLimit.ParentColumn = this.limit;
1.230 + //
1.231 + // columnsContextMenuStrip
1.232 + //
1.233 + this.columnsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.234 + this.valueToolStripMenuItem,
1.235 + this.minMenuItem,
1.236 + this.maxMenuItem,
1.237 + this.limitMenuItem});
1.238 + this.columnsContextMenuStrip.Name = "columnsContextMenuStrip";
1.239 + this.columnsContextMenuStrip.Size = new System.Drawing.Size(104, 92);
1.240 + //
1.241 + // valueToolStripMenuItem
1.242 + //
1.243 + this.valueToolStripMenuItem.Checked = true;
1.244 + this.valueToolStripMenuItem.CheckOnClick = true;
1.245 + this.valueToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.246 + this.valueToolStripMenuItem.Name = "valueToolStripMenuItem";
1.247 + this.valueToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
1.248 + this.valueToolStripMenuItem.Text = "Value";
1.249 + this.valueToolStripMenuItem.CheckedChanged += new System.EventHandler(this.valueToolStripMenuItem_CheckedChanged);
1.250 + //
1.251 + // minMenuItem
1.252 + //
1.253 + this.minMenuItem.Checked = true;
1.254 + this.minMenuItem.CheckOnClick = true;
1.255 + this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.256 + this.minMenuItem.Name = "minMenuItem";
1.257 + this.minMenuItem.Size = new System.Drawing.Size(103, 22);
1.258 + this.minMenuItem.Text = "Min";
1.259 + this.minMenuItem.CheckedChanged += new System.EventHandler(this.minToolStripMenuItem_CheckedChanged);
1.260 + //
1.261 + // maxMenuItem
1.262 + //
1.263 + this.maxMenuItem.Checked = true;
1.264 + this.maxMenuItem.CheckOnClick = true;
1.265 + this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.266 + this.maxMenuItem.Name = "maxMenuItem";
1.267 + this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
1.268 + this.maxMenuItem.Text = "Max";
1.269 + this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxToolStripMenuItem_CheckedChanged);
1.270 + //
1.271 + // limitMenuItem
1.272 + //
1.273 + this.limitMenuItem.Checked = true;
1.274 + this.limitMenuItem.CheckOnClick = true;
1.275 + this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.276 + this.limitMenuItem.Name = "limitMenuItem";
1.277 + this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
1.278 + this.limitMenuItem.Text = "Limit";
1.279 + this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitToolStripMenuItem_CheckedChanged);
1.280 + //
1.281 + // menuStrip
1.282 + //
1.283 + this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.284 + this.fileToolStripMenuItem,
1.285 + this.viewToolStripMenuItem,
1.286 + this.optionsToolStripMenuItem,
1.287 + this.helpToolStripMenuItem});
1.288 + this.menuStrip.Location = new System.Drawing.Point(0, 0);
1.289 + this.menuStrip.Name = "menuStrip";
1.290 + this.menuStrip.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
1.291 + this.menuStrip.Size = new System.Drawing.Size(478, 24);
1.292 + this.menuStrip.TabIndex = 1;
1.293 + this.menuStrip.Text = "menuStrip1";
1.294 + //
1.295 + // fileToolStripMenuItem
1.296 + //
1.297 + this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.298 + this.saveReportToolStripMenuItem,
1.299 + this.exitToolStripMenuItem});
1.300 + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
1.301 + this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
1.302 + this.fileToolStripMenuItem.Text = "File";
1.303 + //
1.304 + // saveReportToolStripMenuItem
1.305 + //
1.306 + this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
1.307 + this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
1.308 + this.saveReportToolStripMenuItem.Text = "Save Report";
1.309 + this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
1.310 + //
1.311 + // exitToolStripMenuItem
1.312 + //
1.313 + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
1.314 + this.exitToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
1.315 + this.exitToolStripMenuItem.Text = "Exit";
1.316 + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
1.317 + //
1.318 + // viewToolStripMenuItem
1.319 + //
1.320 + this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.321 + this.sensorsToolStripMenuItem,
1.322 + this.toolStripMenuItem1,
1.323 + this.plotMenuItem});
1.324 + this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
1.325 + this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
1.326 + this.viewToolStripMenuItem.Text = "View";
1.327 + //
1.328 + // sensorsToolStripMenuItem
1.329 + //
1.330 + this.sensorsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.331 + this.voltMenuItem,
1.332 + this.clocksMenuItem,
1.333 + this.tempMenuItem,
1.334 + this.fansMenuItem});
1.335 + this.sensorsToolStripMenuItem.Name = "sensorsToolStripMenuItem";
1.336 + this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
1.337 + this.sensorsToolStripMenuItem.Text = "Sensors";
1.338 + //
1.339 + // voltMenuItem
1.340 + //
1.341 + this.voltMenuItem.Checked = true;
1.342 + this.voltMenuItem.CheckOnClick = true;
1.343 + this.voltMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.344 + this.voltMenuItem.Name = "voltMenuItem";
1.345 + this.voltMenuItem.Size = new System.Drawing.Size(147, 22);
1.346 + this.voltMenuItem.Text = "Voltages";
1.347 + this.voltMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
1.348 + //
1.349 + // clocksMenuItem
1.350 + //
1.351 + this.clocksMenuItem.Checked = true;
1.352 + this.clocksMenuItem.CheckOnClick = true;
1.353 + this.clocksMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.354 + this.clocksMenuItem.Name = "clocksMenuItem";
1.355 + this.clocksMenuItem.Size = new System.Drawing.Size(147, 22);
1.356 + this.clocksMenuItem.Text = "Clocks";
1.357 + this.clocksMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
1.358 + //
1.359 + // tempMenuItem
1.360 + //
1.361 + this.tempMenuItem.Checked = true;
1.362 + this.tempMenuItem.CheckOnClick = true;
1.363 + this.tempMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.364 + this.tempMenuItem.Name = "tempMenuItem";
1.365 + this.tempMenuItem.Size = new System.Drawing.Size(147, 22);
1.366 + this.tempMenuItem.Text = "Temperatures";
1.367 + this.tempMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
1.368 + //
1.369 + // fansMenuItem
1.370 + //
1.371 + this.fansMenuItem.Checked = true;
1.372 + this.fansMenuItem.CheckOnClick = true;
1.373 + this.fansMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.374 + this.fansMenuItem.Name = "fansMenuItem";
1.375 + this.fansMenuItem.Size = new System.Drawing.Size(147, 22);
1.376 + this.fansMenuItem.Text = "Fans";
1.377 + this.fansMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
1.378 + //
1.379 + // toolStripMenuItem1
1.380 + //
1.381 + this.toolStripMenuItem1.Name = "toolStripMenuItem1";
1.382 + this.toolStripMenuItem1.Size = new System.Drawing.Size(111, 6);
1.383 + //
1.384 + // plotMenuItem
1.385 + //
1.386 + this.plotMenuItem.Checked = true;
1.387 + this.plotMenuItem.CheckOnClick = true;
1.388 + this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
1.389 + this.plotMenuItem.Name = "plotMenuItem";
1.390 + this.plotMenuItem.Size = new System.Drawing.Size(114, 22);
1.391 + this.plotMenuItem.Text = "Plot";
1.392 + this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
1.393 + //
1.394 + // optionsToolStripMenuItem
1.395 + //
1.396 + this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.397 + this.hddMenuItem});
1.398 + this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
1.399 + this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
1.400 + this.optionsToolStripMenuItem.Text = "Options";
1.401 + //
1.402 + // hddMenuItem
1.403 + //
1.404 + this.hddMenuItem.CheckOnClick = true;
1.405 + this.hddMenuItem.Name = "hddMenuItem";
1.406 + this.hddMenuItem.Size = new System.Drawing.Size(141, 22);
1.407 + this.hddMenuItem.Text = "HDD sensors";
1.408 + this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
1.409 + //
1.410 + // helpToolStripMenuItem
1.411 + //
1.412 + this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
1.413 + this.aboutToolStripMenuItem});
1.414 + this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
1.415 + this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
1.416 + this.helpToolStripMenuItem.Text = "Help";
1.417 + //
1.418 + // aboutToolStripMenuItem
1.419 + //
1.420 + this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
1.421 + this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
1.422 + this.aboutToolStripMenuItem.Text = "About";
1.423 + this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
1.424 + //
1.425 + // timer
1.426 + //
1.427 + this.timer.Interval = 1000;
1.428 + this.timer.Tick += new System.EventHandler(this.timer_Tick);
1.429 + //
1.430 + // splitContainer
1.431 + //
1.432 + this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
1.433 + this.splitContainer.Location = new System.Drawing.Point(0, 24);
1.434 + this.splitContainer.Name = "splitContainer";
1.435 + this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
1.436 + //
1.437 + // splitContainer.Panel1
1.438 + //
1.439 + this.splitContainer.Panel1.Controls.Add(this.treeView);
1.440 + //
1.441 + // splitContainer.Panel2
1.442 + //
1.443 + this.splitContainer.Panel2.Controls.Add(this.plotPanel);
1.444 + this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
1.445 + this.splitContainer.Size = new System.Drawing.Size(478, 768);
1.446 + this.splitContainer.SplitterDistance = 567;
1.447 + this.splitContainer.SplitterWidth = 3;
1.448 + this.splitContainer.TabIndex = 3;
1.449 + //
1.450 + // plotPanel
1.451 + //
1.452 + this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1.453 + this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
1.454 + this.plotPanel.Font = new System.Drawing.Font("Segoe UI", 9F);
1.455 + this.plotPanel.Location = new System.Drawing.Point(0, 0);
1.456 + this.plotPanel.Name = "plotPanel";
1.457 + this.plotPanel.Size = new System.Drawing.Size(478, 198);
1.458 + this.plotPanel.TabIndex = 0;
1.459 + //
1.460 + // MainForm
1.461 + //
1.462 + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
1.463 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
1.464 + this.ClientSize = new System.Drawing.Size(478, 792);
1.465 + this.Controls.Add(this.splitContainer);
1.466 + this.Controls.Add(this.menuStrip);
1.467 + this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1.468 + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
1.469 + this.MainMenuStrip = this.menuStrip;
1.470 + this.Name = "MainForm";
1.471 + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
1.472 + this.Text = "Open Hardware Monitor";
1.473 + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
1.474 + this.columnsContextMenuStrip.ResumeLayout(false);
1.475 + this.menuStrip.ResumeLayout(false);
1.476 + this.menuStrip.PerformLayout();
1.477 + this.splitContainer.Panel1.ResumeLayout(false);
1.478 + this.splitContainer.Panel2.ResumeLayout(false);
1.479 + this.splitContainer.ResumeLayout(false);
1.480 + this.ResumeLayout(false);
1.481 + this.PerformLayout();
1.482 +
1.483 + }
1.484 +
1.485 + #endregion
1.486 +
1.487 + private Aga.Controls.Tree.TreeViewAdv treeView;
1.488 + private System.Windows.Forms.MenuStrip menuStrip;
1.489 + private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
1.490 + private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
1.491 + private Aga.Controls.Tree.TreeColumn sensor;
1.492 + private Aga.Controls.Tree.TreeColumn value;
1.493 + private Aga.Controls.Tree.TreeColumn min;
1.494 + private Aga.Controls.Tree.TreeColumn max;
1.495 + private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
1.496 + private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
1.497 + private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
1.498 + private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
1.499 + private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
1.500 + private System.Windows.Forms.Timer timer;
1.501 + private System.Windows.Forms.SplitContainer splitContainer;
1.502 + private PlotPanel plotPanel;
1.503 + private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
1.504 + private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
1.505 + private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
1.506 + private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
1.507 + private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
1.508 + private Aga.Controls.Tree.TreeColumn limit;
1.509 + private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
1.510 + private System.Windows.Forms.ContextMenuStrip columnsContextMenuStrip;
1.511 + private System.Windows.Forms.ToolStripMenuItem minMenuItem;
1.512 + private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
1.513 + private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
1.514 + private System.Windows.Forms.ToolStripMenuItem valueToolStripMenuItem;
1.515 + private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
1.516 + private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
1.517 + private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
1.518 + private System.Windows.Forms.ToolStripMenuItem sensorsToolStripMenuItem;
1.519 + private System.Windows.Forms.ToolStripMenuItem clocksMenuItem;
1.520 + private System.Windows.Forms.ToolStripMenuItem tempMenuItem;
1.521 + private System.Windows.Forms.ToolStripMenuItem fansMenuItem;
1.522 + private System.Windows.Forms.ToolStripMenuItem voltMenuItem;
1.523 + private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
1.524 + }
1.525 +}
1.526 +