Fixed the coreId and threadId calculation in the APIC CPU enumeration code and removed some IndexOutOfRangeException problems.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
38 namespace OpenHardwareMonitor.GUI {
39 partial class MainForm {
41 /// Required designer variable.
43 private System.ComponentModel.IContainer components = null;
46 /// Clean up any resources being used.
48 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
49 protected override void Dispose(bool disposing) {
50 if (disposing && (components != null)) {
53 base.Dispose(disposing);
56 #region Windows Form Designer generated code
59 /// Required method for Designer support - do not modify
60 /// the contents of this method with the code editor.
62 private void InitializeComponent() {
63 this.components = new System.ComponentModel.Container();
64 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
65 this.treeView = new Aga.Controls.Tree.TreeViewAdv();
66 this.sensor = new Aga.Controls.Tree.TreeColumn();
67 this.value = new Aga.Controls.Tree.TreeColumn();
68 this.min = new Aga.Controls.Tree.TreeColumn();
69 this.max = new Aga.Controls.Tree.TreeColumn();
70 this.limit = new Aga.Controls.Tree.TreeColumn();
71 this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
72 this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
73 this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
74 this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
75 this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
76 this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
77 this.nodeTextBoxLimit = new Aga.Controls.Tree.NodeControls.NodeTextBox();
78 this.columnsContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
79 this.valueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
80 this.minMenuItem = new System.Windows.Forms.ToolStripMenuItem();
81 this.maxMenuItem = new System.Windows.Forms.ToolStripMenuItem();
82 this.limitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
83 this.menuStrip = new System.Windows.Forms.MenuStrip();
84 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
85 this.saveReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
86 this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
87 this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
88 this.sensorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
89 this.voltMenuItem = new System.Windows.Forms.ToolStripMenuItem();
90 this.clocksMenuItem = new System.Windows.Forms.ToolStripMenuItem();
91 this.tempMenuItem = new System.Windows.Forms.ToolStripMenuItem();
92 this.loadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
93 this.fansMenuItem = new System.Windows.Forms.ToolStripMenuItem();
94 this.flowsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
95 this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
96 this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
97 this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
98 this.startMinMenuItem = new System.Windows.Forms.ToolStripMenuItem();
99 this.minTrayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
100 this.startupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
101 this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
102 this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
103 this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
104 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
105 this.splitContainer = new System.Windows.Forms.SplitContainer();
106 this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
107 this.notifyContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
108 this.hideShowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
109 this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
110 this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
111 this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
112 this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
113 this.timer = new System.Windows.Forms.Timer(this.components);
114 this.columnsContextMenuStrip.SuspendLayout();
115 this.menuStrip.SuspendLayout();
116 this.splitContainer.Panel1.SuspendLayout();
117 this.splitContainer.Panel2.SuspendLayout();
118 this.splitContainer.SuspendLayout();
119 this.notifyContextMenuStrip.SuspendLayout();
120 this.SuspendLayout();
124 this.treeView.BackColor = System.Drawing.SystemColors.Window;
125 this.treeView.Columns.Add(this.sensor);
126 this.treeView.Columns.Add(this.value);
127 this.treeView.Columns.Add(this.min);
128 this.treeView.Columns.Add(this.max);
129 this.treeView.Columns.Add(this.limit);
130 this.treeView.DefaultToolTipProvider = null;
131 this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
132 this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
133 this.treeView.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
134 this.treeView.FullRowSelect = true;
135 this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
136 this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
137 this.treeView.Location = new System.Drawing.Point(0, 0);
138 this.treeView.Model = null;
139 this.treeView.Name = "treeView";
140 this.treeView.NodeControls.Add(this.nodeImage);
141 this.treeView.NodeControls.Add(this.nodeCheckBox);
142 this.treeView.NodeControls.Add(this.nodeTextBoxText);
143 this.treeView.NodeControls.Add(this.nodeTextBoxValue);
144 this.treeView.NodeControls.Add(this.nodeTextBoxMin);
145 this.treeView.NodeControls.Add(this.nodeTextBoxMax);
146 this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
147 this.treeView.RowHeight = 18;
148 this.treeView.SelectedNode = null;
149 this.treeView.Size = new System.Drawing.Size(478, 567);
150 this.treeView.TabIndex = 0;
151 this.treeView.Text = "treeView";
152 this.treeView.UseColumns = true;
153 this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
154 this.treeView.Click += new System.EventHandler(this.treeView_Click);
158 this.sensor.Header = "Sensor";
159 this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
160 this.sensor.TooltipText = null;
161 this.sensor.Width = 250;
165 this.value.Header = "Value";
166 this.value.SortOrder = System.Windows.Forms.SortOrder.None;
167 this.value.TooltipText = null;
168 this.value.Width = 100;
172 this.min.Header = "Min";
173 this.min.SortOrder = System.Windows.Forms.SortOrder.None;
174 this.min.TooltipText = null;
175 this.min.Width = 100;
179 this.max.Header = "Max";
180 this.max.SortOrder = System.Windows.Forms.SortOrder.None;
181 this.max.TooltipText = null;
182 this.max.Width = 100;
186 this.limit.Header = "Limit";
187 this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
188 this.limit.TooltipText = null;
189 this.limit.Width = 100;
193 this.nodeImage.DataPropertyName = "Image";
194 this.nodeImage.LeftMargin = 1;
195 this.nodeImage.ParentColumn = this.sensor;
196 this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
200 this.nodeCheckBox.DataPropertyName = "Plot";
201 this.nodeCheckBox.EditEnabled = true;
202 this.nodeCheckBox.LeftMargin = 3;
203 this.nodeCheckBox.ParentColumn = this.sensor;
207 this.nodeTextBoxText.DataPropertyName = "Text";
208 this.nodeTextBoxText.EditEnabled = true;
209 this.nodeTextBoxText.IncrementalSearchEnabled = true;
210 this.nodeTextBoxText.LeftMargin = 3;
211 this.nodeTextBoxText.ParentColumn = this.sensor;
215 this.nodeTextBoxValue.DataPropertyName = "Value";
216 this.nodeTextBoxValue.IncrementalSearchEnabled = true;
217 this.nodeTextBoxValue.LeftMargin = 3;
218 this.nodeTextBoxValue.ParentColumn = this.value;
222 this.nodeTextBoxMin.DataPropertyName = "Min";
223 this.nodeTextBoxMin.IncrementalSearchEnabled = true;
224 this.nodeTextBoxMin.LeftMargin = 3;
225 this.nodeTextBoxMin.ParentColumn = this.min;
229 this.nodeTextBoxMax.DataPropertyName = "Max";
230 this.nodeTextBoxMax.IncrementalSearchEnabled = true;
231 this.nodeTextBoxMax.LeftMargin = 3;
232 this.nodeTextBoxMax.ParentColumn = this.max;
236 this.nodeTextBoxLimit.DataPropertyName = "Limit";
237 this.nodeTextBoxLimit.EditEnabled = true;
238 this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
239 this.nodeTextBoxLimit.LeftMargin = 3;
240 this.nodeTextBoxLimit.ParentColumn = this.limit;
242 // columnsContextMenuStrip
244 this.columnsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
245 this.valueToolStripMenuItem,
248 this.limitMenuItem});
249 this.columnsContextMenuStrip.Name = "columnsContextMenuStrip";
250 this.columnsContextMenuStrip.Size = new System.Drawing.Size(104, 92);
252 // valueToolStripMenuItem
254 this.valueToolStripMenuItem.Checked = true;
255 this.valueToolStripMenuItem.CheckOnClick = true;
256 this.valueToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
257 this.valueToolStripMenuItem.Name = "valueToolStripMenuItem";
258 this.valueToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
259 this.valueToolStripMenuItem.Text = "Value";
260 this.valueToolStripMenuItem.CheckedChanged += new System.EventHandler(this.valueToolStripMenuItem_CheckedChanged);
264 this.minMenuItem.Checked = true;
265 this.minMenuItem.CheckOnClick = true;
266 this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
267 this.minMenuItem.Name = "minMenuItem";
268 this.minMenuItem.Size = new System.Drawing.Size(103, 22);
269 this.minMenuItem.Text = "Min";
270 this.minMenuItem.CheckedChanged += new System.EventHandler(this.minToolStripMenuItem_CheckedChanged);
274 this.maxMenuItem.Checked = true;
275 this.maxMenuItem.CheckOnClick = true;
276 this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
277 this.maxMenuItem.Name = "maxMenuItem";
278 this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
279 this.maxMenuItem.Text = "Max";
280 this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxToolStripMenuItem_CheckedChanged);
284 this.limitMenuItem.Checked = true;
285 this.limitMenuItem.CheckOnClick = true;
286 this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
287 this.limitMenuItem.Name = "limitMenuItem";
288 this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
289 this.limitMenuItem.Text = "Limit";
290 this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitToolStripMenuItem_CheckedChanged);
294 this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
295 this.fileToolStripMenuItem,
296 this.viewToolStripMenuItem,
297 this.optionsToolStripMenuItem,
298 this.helpToolStripMenuItem});
299 this.menuStrip.Location = new System.Drawing.Point(0, 0);
300 this.menuStrip.Name = "menuStrip";
301 this.menuStrip.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
302 this.menuStrip.Size = new System.Drawing.Size(478, 24);
303 this.menuStrip.TabIndex = 1;
304 this.menuStrip.Text = "menuStrip1";
306 // fileToolStripMenuItem
308 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
309 this.saveReportToolStripMenuItem,
310 this.exitToolStripMenuItem});
311 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
312 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
313 this.fileToolStripMenuItem.Text = "File";
315 // saveReportToolStripMenuItem
317 this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
318 this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
319 this.saveReportToolStripMenuItem.Text = "Save Report...";
320 this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
322 // exitToolStripMenuItem
324 this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
325 this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
326 this.exitToolStripMenuItem.Text = "Exit";
327 this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
329 // viewToolStripMenuItem
331 this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
332 this.sensorsToolStripMenuItem,
333 this.toolStripMenuItem1,
335 this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
336 this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
337 this.viewToolStripMenuItem.Text = "View";
339 // sensorsToolStripMenuItem
341 this.sensorsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
347 this.flowsMenuItem});
348 this.sensorsToolStripMenuItem.Name = "sensorsToolStripMenuItem";
349 this.sensorsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
350 this.sensorsToolStripMenuItem.Text = "Sensors";
354 this.voltMenuItem.Checked = true;
355 this.voltMenuItem.CheckOnClick = true;
356 this.voltMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
357 this.voltMenuItem.Name = "voltMenuItem";
358 this.voltMenuItem.Size = new System.Drawing.Size(147, 22);
359 this.voltMenuItem.Text = "Voltages";
360 this.voltMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
364 this.clocksMenuItem.Checked = true;
365 this.clocksMenuItem.CheckOnClick = true;
366 this.clocksMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
367 this.clocksMenuItem.Name = "clocksMenuItem";
368 this.clocksMenuItem.Size = new System.Drawing.Size(147, 22);
369 this.clocksMenuItem.Text = "Clocks";
370 this.clocksMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
374 this.tempMenuItem.Checked = true;
375 this.tempMenuItem.CheckOnClick = true;
376 this.tempMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
377 this.tempMenuItem.Name = "tempMenuItem";
378 this.tempMenuItem.Size = new System.Drawing.Size(147, 22);
379 this.tempMenuItem.Text = "Temperatures";
380 this.tempMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
384 this.loadMenuItem.Checked = true;
385 this.loadMenuItem.CheckOnClick = true;
386 this.loadMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
387 this.loadMenuItem.Name = "loadMenuItem";
388 this.loadMenuItem.Size = new System.Drawing.Size(147, 22);
389 this.loadMenuItem.Text = "Load";
390 this.loadMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
394 this.fansMenuItem.Checked = true;
395 this.fansMenuItem.CheckOnClick = true;
396 this.fansMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
397 this.fansMenuItem.Name = "fansMenuItem";
398 this.fansMenuItem.Size = new System.Drawing.Size(147, 22);
399 this.fansMenuItem.Text = "Fans";
400 this.fansMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
404 this.flowsMenuItem.Checked = true;
405 this.flowsMenuItem.CheckOnClick = true;
406 this.flowsMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
407 this.flowsMenuItem.Name = "flowsMenuItem";
408 this.flowsMenuItem.Size = new System.Drawing.Size(147, 22);
409 this.flowsMenuItem.Text = "Flows";
410 this.flowsMenuItem.CheckedChanged += new System.EventHandler(this.UpdateSensorTypeChecked);
412 // toolStripMenuItem1
414 this.toolStripMenuItem1.Name = "toolStripMenuItem1";
415 this.toolStripMenuItem1.Size = new System.Drawing.Size(111, 6);
419 this.plotMenuItem.Checked = true;
420 this.plotMenuItem.CheckOnClick = true;
421 this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
422 this.plotMenuItem.Name = "plotMenuItem";
423 this.plotMenuItem.Size = new System.Drawing.Size(114, 22);
424 this.plotMenuItem.Text = "Plot";
425 this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
427 // optionsToolStripMenuItem
429 this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
430 this.startMinMenuItem,
431 this.minTrayMenuItem,
432 this.startupMenuItem,
433 this.toolStripMenuItem3,
435 this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
436 this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
437 this.optionsToolStripMenuItem.Text = "Options";
441 this.startMinMenuItem.CheckOnClick = true;
442 this.startMinMenuItem.Name = "startMinMenuItem";
443 this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
444 this.startMinMenuItem.Text = "Start Minimized";
448 this.minTrayMenuItem.CheckOnClick = true;
449 this.minTrayMenuItem.Name = "minTrayMenuItem";
450 this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
451 this.minTrayMenuItem.Text = "Minimize To Tray";
452 this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
456 this.startupMenuItem.CheckOnClick = true;
457 this.startupMenuItem.Name = "startupMenuItem";
458 this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
459 this.startupMenuItem.Text = "Run On Windows Startup";
460 this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
462 // toolStripMenuItem3
464 this.toolStripMenuItem3.Name = "toolStripMenuItem3";
465 this.toolStripMenuItem3.Size = new System.Drawing.Size(204, 6);
469 this.hddMenuItem.CheckOnClick = true;
470 this.hddMenuItem.Name = "hddMenuItem";
471 this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
472 this.hddMenuItem.Text = "HDD sensors";
473 this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
475 // helpToolStripMenuItem
477 this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
478 this.aboutToolStripMenuItem});
479 this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
480 this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
481 this.helpToolStripMenuItem.Text = "Help";
483 // aboutToolStripMenuItem
485 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
486 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
487 this.aboutToolStripMenuItem.Text = "About";
488 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
492 this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
493 this.splitContainer.Location = new System.Drawing.Point(0, 24);
494 this.splitContainer.Name = "splitContainer";
495 this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
497 // splitContainer.Panel1
499 this.splitContainer.Panel1.Controls.Add(this.treeView);
501 // splitContainer.Panel2
503 this.splitContainer.Panel2.Controls.Add(this.plotPanel);
504 this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
505 this.splitContainer.Size = new System.Drawing.Size(478, 768);
506 this.splitContainer.SplitterDistance = 567;
507 this.splitContainer.SplitterWidth = 3;
508 this.splitContainer.TabIndex = 3;
512 this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
513 this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
514 this.plotPanel.Font = new System.Drawing.Font("Segoe UI", 9F);
515 this.plotPanel.Location = new System.Drawing.Point(0, 0);
516 this.plotPanel.Name = "plotPanel";
517 this.plotPanel.Size = new System.Drawing.Size(478, 198);
518 this.plotPanel.TabIndex = 0;
520 // notifyContextMenuStrip
522 this.notifyContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
523 this.hideShowToolStripMenuItem,
524 this.toolStripMenuItem2,
525 this.exitToolStripMenuItem1});
526 this.notifyContextMenuStrip.Name = "notifyContextMenuStrip";
527 this.notifyContextMenuStrip.Size = new System.Drawing.Size(137, 54);
529 // hideShowToolStripMenuItem
531 this.hideShowToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
532 this.hideShowToolStripMenuItem.Name = "hideShowToolStripMenuItem";
533 this.hideShowToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
534 this.hideShowToolStripMenuItem.Text = "Hide/Show";
535 this.hideShowToolStripMenuItem.Click += new System.EventHandler(this.hideShowClick);
537 // toolStripMenuItem2
539 this.toolStripMenuItem2.Name = "toolStripMenuItem2";
540 this.toolStripMenuItem2.Size = new System.Drawing.Size(133, 6);
542 // exitToolStripMenuItem1
544 this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
545 this.exitToolStripMenuItem1.Size = new System.Drawing.Size(136, 22);
546 this.exitToolStripMenuItem1.Text = "Exit";
547 this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
549 // sensorContextMenuStrip
551 this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
552 this.sensorContextMenuStrip.Size = new System.Drawing.Size(61, 4);
556 this.saveFileDialog.DefaultExt = "txt";
557 this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
558 this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
559 this.saveFileDialog.RestoreDirectory = true;
560 this.saveFileDialog.Title = "Save Report As";
564 this.timer.Interval = 1000;
565 this.timer.Tick += new System.EventHandler(this.timer_Tick);
569 this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
570 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
571 this.ClientSize = new System.Drawing.Size(478, 792);
572 this.Controls.Add(this.splitContainer);
573 this.Controls.Add(this.menuStrip);
574 this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
575 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
576 this.MainMenuStrip = this.menuStrip;
577 this.Name = "MainForm";
578 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
579 this.Text = "Open Hardware Monitor";
580 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
581 this.columnsContextMenuStrip.ResumeLayout(false);
582 this.menuStrip.ResumeLayout(false);
583 this.menuStrip.PerformLayout();
584 this.splitContainer.Panel1.ResumeLayout(false);
585 this.splitContainer.Panel2.ResumeLayout(false);
586 this.splitContainer.ResumeLayout(false);
587 this.notifyContextMenuStrip.ResumeLayout(false);
588 this.ResumeLayout(false);
589 this.PerformLayout();
595 private Aga.Controls.Tree.TreeViewAdv treeView;
596 private System.Windows.Forms.MenuStrip menuStrip;
597 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
598 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
599 private Aga.Controls.Tree.TreeColumn sensor;
600 private Aga.Controls.Tree.TreeColumn value;
601 private Aga.Controls.Tree.TreeColumn min;
602 private Aga.Controls.Tree.TreeColumn max;
603 private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
604 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
605 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
606 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
607 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
608 private System.Windows.Forms.SplitContainer splitContainer;
609 private PlotPanel plotPanel;
610 private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
611 private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
612 private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
613 private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
614 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
615 private Aga.Controls.Tree.TreeColumn limit;
616 private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
617 private System.Windows.Forms.ContextMenuStrip columnsContextMenuStrip;
618 private System.Windows.Forms.ToolStripMenuItem minMenuItem;
619 private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
620 private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
621 private System.Windows.Forms.ToolStripMenuItem valueToolStripMenuItem;
622 private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
623 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
624 private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
625 private System.Windows.Forms.ToolStripMenuItem sensorsToolStripMenuItem;
626 private System.Windows.Forms.ToolStripMenuItem clocksMenuItem;
627 private System.Windows.Forms.ToolStripMenuItem tempMenuItem;
628 private System.Windows.Forms.ToolStripMenuItem fansMenuItem;
629 private System.Windows.Forms.ToolStripMenuItem voltMenuItem;
630 private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
631 private System.Windows.Forms.ToolStripMenuItem loadMenuItem;
632 private System.Windows.Forms.ContextMenuStrip notifyContextMenuStrip;
633 private System.Windows.Forms.ToolStripMenuItem hideShowToolStripMenuItem;
634 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
635 private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem1;
636 private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
637 private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
638 private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
639 private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
640 private System.Windows.Forms.ToolStripMenuItem flowsMenuItem;
641 private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
642 private System.Windows.Forms.SaveFileDialog saveFileDialog;
643 private System.Windows.Forms.Timer timer;