GUI/MainForm.Designer.cs
author moel.mich
Sat, 05 Jun 2010 18:59:54 +0000
changeset 133 9ad699538c89
parent 125 b1278888d9a9
child 134 8b3b9b2e28e5
permissions -rw-r--r--
Fixed Issue 65.
moel@1
     1
/*
moel@1
     2
  
moel@1
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@1
     4
moel@1
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@1
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@1
     7
  the License. You may obtain a copy of the License at
moel@1
     8
 
moel@1
     9
  http://www.mozilla.org/MPL/
moel@1
    10
moel@1
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@1
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@1
    13
  for the specific language governing rights and limitations under the License.
moel@1
    14
moel@1
    15
  The Original Code is the Open Hardware Monitor code.
moel@1
    16
moel@1
    17
  The Initial Developer of the Original Code is 
moel@1
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@1
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@1
    20
  the Initial Developer. All Rights Reserved.
moel@1
    21
moel@1
    22
  Contributor(s):
moel@1
    23
moel@1
    24
  Alternatively, the contents of this file may be used under the terms of
moel@1
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@1
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@1
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@1
    28
  of those above. If you wish to allow use of your version of this file only
moel@1
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@1
    30
  use your version of this file under the terms of the MPL, indicate your
moel@1
    31
  decision by deleting the provisions above and replace them with the notice
moel@1
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@1
    33
  the provisions above, a recipient may use your version of this file under
moel@1
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@1
    35
 
moel@1
    36
*/
moel@1
    37
moel@1
    38
namespace OpenHardwareMonitor.GUI {
moel@1
    39
  partial class MainForm {
moel@1
    40
    /// <summary>
moel@1
    41
    /// Required designer variable.
moel@1
    42
    /// </summary>
moel@1
    43
    private System.ComponentModel.IContainer components = null;
moel@1
    44
moel@1
    45
    /// <summary>
moel@1
    46
    /// Clean up any resources being used.
moel@1
    47
    /// </summary>
moel@1
    48
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
moel@1
    49
    protected override void Dispose(bool disposing) {
moel@1
    50
      if (disposing && (components != null)) {
moel@1
    51
        components.Dispose();
moel@1
    52
      }
moel@1
    53
      base.Dispose(disposing);
moel@1
    54
    }
moel@1
    55
moel@1
    56
    #region Windows Form Designer generated code
moel@1
    57
moel@1
    58
    /// <summary>
moel@1
    59
    /// Required method for Designer support - do not modify
moel@1
    60
    /// the contents of this method with the code editor.
moel@1
    61
    /// </summary>
moel@1
    62
    private void InitializeComponent() {
moel@1
    63
      this.components = new System.ComponentModel.Container();
moel@1
    64
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
moel@1
    65
      this.treeView = new Aga.Controls.Tree.TreeViewAdv();
moel@1
    66
      this.sensor = new Aga.Controls.Tree.TreeColumn();
moel@1
    67
      this.value = new Aga.Controls.Tree.TreeColumn();
moel@1
    68
      this.min = new Aga.Controls.Tree.TreeColumn();
moel@1
    69
      this.max = new Aga.Controls.Tree.TreeColumn();
moel@1
    70
      this.limit = new Aga.Controls.Tree.TreeColumn();
moel@1
    71
      this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
moel@1
    72
      this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
moel@1
    73
      this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    74
      this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    75
      this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    76
      this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    77
      this.nodeTextBoxLimit = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    78
      this.menuStrip = new System.Windows.Forms.MenuStrip();
moel@1
    79
      this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
    80
      this.saveReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
    81
      this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
    82
      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    83
      this.hiddenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    84
      this.plotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
    85
      this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
moel@111
    86
      this.columnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    87
      this.valueMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    88
      this.minMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    89
      this.maxMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@111
    90
      this.limitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
    91
      this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@55
    92
      this.startMinMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@28
    93
      this.minTrayMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@82
    94
      this.startupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@125
    95
      this.separatorMenuItem = new System.Windows.Forms.ToolStripSeparator();
moel@122
    96
      this.temperatureUnitsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@122
    97
      this.celciusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@122
    98
      this.fahrenheitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@122
    99
      this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
moel@1
   100
      this.hddMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
   101
      this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
   102
      this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@1
   103
      this.splitContainer = new System.Windows.Forms.SplitContainer();
moel@63
   104
      this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
moel@40
   105
      this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
moel@83
   106
      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
moel@86
   107
      this.timer = new System.Windows.Forms.Timer(this.components);
moel@1
   108
      this.menuStrip.SuspendLayout();
moel@1
   109
      this.splitContainer.Panel1.SuspendLayout();
moel@1
   110
      this.splitContainer.Panel2.SuspendLayout();
moel@1
   111
      this.splitContainer.SuspendLayout();
moel@1
   112
      this.SuspendLayout();
moel@1
   113
      // 
moel@1
   114
      // treeView
moel@1
   115
      // 
moel@1
   116
      this.treeView.BackColor = System.Drawing.SystemColors.Window;
moel@1
   117
      this.treeView.Columns.Add(this.sensor);
moel@1
   118
      this.treeView.Columns.Add(this.value);
moel@1
   119
      this.treeView.Columns.Add(this.min);
moel@1
   120
      this.treeView.Columns.Add(this.max);
moel@1
   121
      this.treeView.Columns.Add(this.limit);
moel@1
   122
      this.treeView.DefaultToolTipProvider = null;
moel@1
   123
      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
moel@122
   124
      this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
moel@1
   125
      this.treeView.FullRowSelect = true;
moel@1
   126
      this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
moel@1
   127
      this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
moel@1
   128
      this.treeView.Location = new System.Drawing.Point(0, 0);
moel@1
   129
      this.treeView.Model = null;
moel@1
   130
      this.treeView.Name = "treeView";
moel@1
   131
      this.treeView.NodeControls.Add(this.nodeImage);
moel@1
   132
      this.treeView.NodeControls.Add(this.nodeCheckBox);
moel@1
   133
      this.treeView.NodeControls.Add(this.nodeTextBoxText);
moel@1
   134
      this.treeView.NodeControls.Add(this.nodeTextBoxValue);
moel@1
   135
      this.treeView.NodeControls.Add(this.nodeTextBoxMin);
moel@1
   136
      this.treeView.NodeControls.Add(this.nodeTextBoxMax);
moel@1
   137
      this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
moel@1
   138
      this.treeView.RowHeight = 18;
moel@1
   139
      this.treeView.SelectedNode = null;
moel@122
   140
      this.treeView.Size = new System.Drawing.Size(410, 488);
moel@1
   141
      this.treeView.TabIndex = 0;
moel@1
   142
      this.treeView.Text = "treeView";
moel@1
   143
      this.treeView.UseColumns = true;
moel@63
   144
      this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
moel@1
   145
      this.treeView.Click += new System.EventHandler(this.treeView_Click);
moel@1
   146
      // 
moel@1
   147
      // sensor
moel@1
   148
      // 
moel@1
   149
      this.sensor.Header = "Sensor";
moel@1
   150
      this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   151
      this.sensor.TooltipText = null;
moel@1
   152
      this.sensor.Width = 250;
moel@1
   153
      // 
moel@1
   154
      // value
moel@1
   155
      // 
moel@1
   156
      this.value.Header = "Value";
moel@1
   157
      this.value.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   158
      this.value.TooltipText = null;
moel@1
   159
      this.value.Width = 100;
moel@1
   160
      // 
moel@1
   161
      // min
moel@1
   162
      // 
moel@1
   163
      this.min.Header = "Min";
moel@1
   164
      this.min.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   165
      this.min.TooltipText = null;
moel@1
   166
      this.min.Width = 100;
moel@1
   167
      // 
moel@1
   168
      // max
moel@1
   169
      // 
moel@1
   170
      this.max.Header = "Max";
moel@1
   171
      this.max.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   172
      this.max.TooltipText = null;
moel@1
   173
      this.max.Width = 100;
moel@1
   174
      // 
moel@1
   175
      // limit
moel@1
   176
      // 
moel@1
   177
      this.limit.Header = "Limit";
moel@1
   178
      this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   179
      this.limit.TooltipText = null;
moel@1
   180
      this.limit.Width = 100;
moel@1
   181
      // 
moel@1
   182
      // nodeImage
moel@1
   183
      // 
moel@1
   184
      this.nodeImage.DataPropertyName = "Image";
moel@1
   185
      this.nodeImage.LeftMargin = 1;
moel@1
   186
      this.nodeImage.ParentColumn = this.sensor;
moel@1
   187
      this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
moel@1
   188
      // 
moel@1
   189
      // nodeCheckBox
moel@1
   190
      // 
moel@1
   191
      this.nodeCheckBox.DataPropertyName = "Plot";
moel@1
   192
      this.nodeCheckBox.EditEnabled = true;
moel@1
   193
      this.nodeCheckBox.LeftMargin = 3;
moel@1
   194
      this.nodeCheckBox.ParentColumn = this.sensor;
moel@1
   195
      // 
moel@1
   196
      // nodeTextBoxText
moel@1
   197
      // 
moel@1
   198
      this.nodeTextBoxText.DataPropertyName = "Text";
moel@1
   199
      this.nodeTextBoxText.EditEnabled = true;
moel@1
   200
      this.nodeTextBoxText.IncrementalSearchEnabled = true;
moel@1
   201
      this.nodeTextBoxText.LeftMargin = 3;
moel@1
   202
      this.nodeTextBoxText.ParentColumn = this.sensor;
moel@1
   203
      // 
moel@1
   204
      // nodeTextBoxValue
moel@1
   205
      // 
moel@1
   206
      this.nodeTextBoxValue.DataPropertyName = "Value";
moel@1
   207
      this.nodeTextBoxValue.IncrementalSearchEnabled = true;
moel@1
   208
      this.nodeTextBoxValue.LeftMargin = 3;
moel@1
   209
      this.nodeTextBoxValue.ParentColumn = this.value;
moel@1
   210
      // 
moel@1
   211
      // nodeTextBoxMin
moel@1
   212
      // 
moel@1
   213
      this.nodeTextBoxMin.DataPropertyName = "Min";
moel@1
   214
      this.nodeTextBoxMin.IncrementalSearchEnabled = true;
moel@1
   215
      this.nodeTextBoxMin.LeftMargin = 3;
moel@1
   216
      this.nodeTextBoxMin.ParentColumn = this.min;
moel@1
   217
      // 
moel@1
   218
      // nodeTextBoxMax
moel@1
   219
      // 
moel@1
   220
      this.nodeTextBoxMax.DataPropertyName = "Max";
moel@1
   221
      this.nodeTextBoxMax.IncrementalSearchEnabled = true;
moel@1
   222
      this.nodeTextBoxMax.LeftMargin = 3;
moel@1
   223
      this.nodeTextBoxMax.ParentColumn = this.max;
moel@1
   224
      // 
moel@1
   225
      // nodeTextBoxLimit
moel@1
   226
      // 
moel@1
   227
      this.nodeTextBoxLimit.DataPropertyName = "Limit";
moel@1
   228
      this.nodeTextBoxLimit.EditEnabled = true;
moel@1
   229
      this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
moel@1
   230
      this.nodeTextBoxLimit.LeftMargin = 3;
moel@1
   231
      this.nodeTextBoxLimit.ParentColumn = this.limit;
moel@1
   232
      // 
moel@1
   233
      // menuStrip
moel@1
   234
      // 
moel@1
   235
      this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   236
            this.fileToolStripMenuItem,
moel@1
   237
            this.viewToolStripMenuItem,
moel@1
   238
            this.optionsToolStripMenuItem,
moel@1
   239
            this.helpToolStripMenuItem});
moel@1
   240
      this.menuStrip.Location = new System.Drawing.Point(0, 0);
moel@1
   241
      this.menuStrip.Name = "menuStrip";
moel@122
   242
      this.menuStrip.Size = new System.Drawing.Size(410, 24);
moel@1
   243
      this.menuStrip.TabIndex = 1;
moel@1
   244
      this.menuStrip.Text = "menuStrip1";
moel@1
   245
      // 
moel@1
   246
      // fileToolStripMenuItem
moel@1
   247
      // 
moel@1
   248
      this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   249
            this.saveReportToolStripMenuItem,
moel@1
   250
            this.exitToolStripMenuItem});
moel@1
   251
      this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
moel@1
   252
      this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
moel@1
   253
      this.fileToolStripMenuItem.Text = "File";
moel@1
   254
      // 
moel@1
   255
      // saveReportToolStripMenuItem
moel@1
   256
      // 
moel@1
   257
      this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
moel@86
   258
      this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
moel@83
   259
      this.saveReportToolStripMenuItem.Text = "Save Report...";
moel@1
   260
      this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
moel@1
   261
      // 
moel@1
   262
      // exitToolStripMenuItem
moel@1
   263
      // 
moel@1
   264
      this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
moel@86
   265
      this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
moel@1
   266
      this.exitToolStripMenuItem.Text = "Exit";
moel@133
   267
      this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitClick);
moel@1
   268
      // 
moel@1
   269
      // viewToolStripMenuItem
moel@1
   270
      // 
moel@1
   271
      this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@111
   272
            this.hiddenMenuItem,
moel@111
   273
            this.plotMenuItem,
moel@1
   274
            this.toolStripMenuItem1,
moel@111
   275
            this.columnsToolStripMenuItem});
moel@1
   276
      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
moel@1
   277
      this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
moel@1
   278
      this.viewToolStripMenuItem.Text = "View";
moel@1
   279
      // 
moel@111
   280
      // hiddenMenuItem
moel@1
   281
      // 
moel@111
   282
      this.hiddenMenuItem.CheckOnClick = true;
moel@111
   283
      this.hiddenMenuItem.Name = "hiddenMenuItem";
moel@111
   284
      this.hiddenMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   285
      this.hiddenMenuItem.Text = "Show Hidden Sensors";
moel@111
   286
      this.hiddenMenuItem.CheckedChanged += new System.EventHandler(this.hiddenSensorsMenuItem_CheckedChanged);
moel@1
   287
      // 
moel@1
   288
      // plotMenuItem
moel@1
   289
      // 
moel@1
   290
      this.plotMenuItem.Checked = true;
moel@1
   291
      this.plotMenuItem.CheckOnClick = true;
moel@1
   292
      this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@1
   293
      this.plotMenuItem.Name = "plotMenuItem";
moel@111
   294
      this.plotMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   295
      this.plotMenuItem.Text = "Show Plot";
moel@1
   296
      this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
moel@1
   297
      // 
moel@111
   298
      // toolStripMenuItem1
moel@111
   299
      // 
moel@111
   300
      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
moel@111
   301
      this.toolStripMenuItem1.Size = new System.Drawing.Size(185, 6);
moel@111
   302
      // 
moel@111
   303
      // columnsToolStripMenuItem
moel@111
   304
      // 
moel@111
   305
      this.columnsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@111
   306
            this.valueMenuItem,
moel@111
   307
            this.minMenuItem,
moel@111
   308
            this.maxMenuItem,
moel@111
   309
            this.limitMenuItem});
moel@111
   310
      this.columnsToolStripMenuItem.Name = "columnsToolStripMenuItem";
moel@111
   311
      this.columnsToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   312
      this.columnsToolStripMenuItem.Text = "Columns";
moel@111
   313
      // 
moel@111
   314
      // valueMenuItem
moel@111
   315
      // 
moel@111
   316
      this.valueMenuItem.Checked = true;
moel@111
   317
      this.valueMenuItem.CheckOnClick = true;
moel@111
   318
      this.valueMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   319
      this.valueMenuItem.Name = "valueMenuItem";
moel@122
   320
      this.valueMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   321
      this.valueMenuItem.Text = "Value";
moel@111
   322
      this.valueMenuItem.CheckedChanged += new System.EventHandler(this.valueMenuItem_CheckedChanged);
moel@111
   323
      // 
moel@111
   324
      // minMenuItem
moel@111
   325
      // 
moel@111
   326
      this.minMenuItem.Checked = true;
moel@111
   327
      this.minMenuItem.CheckOnClick = true;
moel@111
   328
      this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   329
      this.minMenuItem.Name = "minMenuItem";
moel@122
   330
      this.minMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   331
      this.minMenuItem.Text = "Min";
moel@111
   332
      this.minMenuItem.CheckedChanged += new System.EventHandler(this.minMenuItem_CheckedChanged);
moel@111
   333
      // 
moel@111
   334
      // maxMenuItem
moel@111
   335
      // 
moel@111
   336
      this.maxMenuItem.Checked = true;
moel@111
   337
      this.maxMenuItem.CheckOnClick = true;
moel@111
   338
      this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   339
      this.maxMenuItem.Name = "maxMenuItem";
moel@122
   340
      this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   341
      this.maxMenuItem.Text = "Max";
moel@111
   342
      this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxMenuItem_CheckedChanged);
moel@111
   343
      // 
moel@111
   344
      // limitMenuItem
moel@111
   345
      // 
moel@111
   346
      this.limitMenuItem.Checked = true;
moel@111
   347
      this.limitMenuItem.CheckOnClick = true;
moel@111
   348
      this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   349
      this.limitMenuItem.Name = "limitMenuItem";
moel@122
   350
      this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   351
      this.limitMenuItem.Text = "Limit";
moel@111
   352
      this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitMenuItem_CheckedChanged);
moel@111
   353
      // 
moel@1
   354
      // optionsToolStripMenuItem
moel@1
   355
      // 
moel@1
   356
      this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@55
   357
            this.startMinMenuItem,
moel@28
   358
            this.minTrayMenuItem,
moel@82
   359
            this.startupMenuItem,
moel@125
   360
            this.separatorMenuItem,
moel@122
   361
            this.temperatureUnitsToolStripMenuItem,
moel@122
   362
            this.toolStripMenuItem4,
moel@1
   363
            this.hddMenuItem});
moel@1
   364
      this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
moel@1
   365
      this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
moel@1
   366
      this.optionsToolStripMenuItem.Text = "Options";
moel@1
   367
      // 
moel@57
   368
      // startMinMenuItem
moel@55
   369
      // 
moel@55
   370
      this.startMinMenuItem.CheckOnClick = true;
moel@57
   371
      this.startMinMenuItem.Name = "startMinMenuItem";
moel@82
   372
      this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
moel@55
   373
      this.startMinMenuItem.Text = "Start Minimized";
moel@55
   374
      // 
moel@28
   375
      // minTrayMenuItem
moel@28
   376
      // 
moel@28
   377
      this.minTrayMenuItem.CheckOnClick = true;
moel@28
   378
      this.minTrayMenuItem.Name = "minTrayMenuItem";
moel@82
   379
      this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
moel@28
   380
      this.minTrayMenuItem.Text = "Minimize To Tray";
moel@82
   381
      this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
moel@82
   382
      // 
moel@82
   383
      // startupMenuItem
moel@82
   384
      // 
moel@82
   385
      this.startupMenuItem.CheckOnClick = true;
moel@82
   386
      this.startupMenuItem.Name = "startupMenuItem";
moel@82
   387
      this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
moel@82
   388
      this.startupMenuItem.Text = "Run On Windows Startup";
moel@82
   389
      this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
moel@28
   390
      // 
moel@133
   391
      // separatorMenuItem
moel@28
   392
      // 
moel@133
   393
      this.separatorMenuItem.Name = "separatorMenuItem";
moel@125
   394
      this.separatorMenuItem.Size = new System.Drawing.Size(204, 6);
moel@28
   395
      // 
moel@122
   396
      // temperatureUnitsToolStripMenuItem
moel@122
   397
      // 
moel@122
   398
      this.temperatureUnitsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@122
   399
            this.celciusToolStripMenuItem,
moel@122
   400
            this.fahrenheitToolStripMenuItem});
moel@122
   401
      this.temperatureUnitsToolStripMenuItem.Name = "temperatureUnitsToolStripMenuItem";
moel@122
   402
      this.temperatureUnitsToolStripMenuItem.Size = new System.Drawing.Size(207, 22);
moel@122
   403
      this.temperatureUnitsToolStripMenuItem.Text = "Temperature Unit";
moel@122
   404
      // 
moel@122
   405
      // celciusToolStripMenuItem
moel@122
   406
      // 
moel@122
   407
      this.celciusToolStripMenuItem.Name = "celciusToolStripMenuItem";
moel@133
   408
      this.celciusToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
moel@122
   409
      this.celciusToolStripMenuItem.Text = "Celcius";
moel@122
   410
      this.celciusToolStripMenuItem.Click += new System.EventHandler(this.celciusToolStripMenuItem_Click);
moel@122
   411
      // 
moel@122
   412
      // fahrenheitToolStripMenuItem
moel@122
   413
      // 
moel@122
   414
      this.fahrenheitToolStripMenuItem.Name = "fahrenheitToolStripMenuItem";
moel@133
   415
      this.fahrenheitToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
moel@122
   416
      this.fahrenheitToolStripMenuItem.Text = "Fahrenheit";
moel@122
   417
      this.fahrenheitToolStripMenuItem.Click += new System.EventHandler(this.fahrenheitToolStripMenuItem_Click);
moel@122
   418
      // 
moel@122
   419
      // toolStripMenuItem4
moel@122
   420
      // 
moel@122
   421
      this.toolStripMenuItem4.Name = "toolStripMenuItem4";
moel@122
   422
      this.toolStripMenuItem4.Size = new System.Drawing.Size(204, 6);
moel@122
   423
      // 
moel@1
   424
      // hddMenuItem
moel@1
   425
      // 
moel@1
   426
      this.hddMenuItem.CheckOnClick = true;
moel@1
   427
      this.hddMenuItem.Name = "hddMenuItem";
moel@82
   428
      this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
moel@122
   429
      this.hddMenuItem.Text = "Read HDD sensors";
moel@1
   430
      this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
moel@1
   431
      // 
moel@1
   432
      // helpToolStripMenuItem
moel@1
   433
      // 
moel@1
   434
      this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   435
            this.aboutToolStripMenuItem});
moel@1
   436
      this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
moel@1
   437
      this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
moel@1
   438
      this.helpToolStripMenuItem.Text = "Help";
moel@1
   439
      // 
moel@1
   440
      // aboutToolStripMenuItem
moel@1
   441
      // 
moel@1
   442
      this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
moel@1
   443
      this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
moel@1
   444
      this.aboutToolStripMenuItem.Text = "About";
moel@1
   445
      this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
moel@1
   446
      // 
moel@1
   447
      // splitContainer
moel@1
   448
      // 
moel@1
   449
      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
moel@1
   450
      this.splitContainer.Location = new System.Drawing.Point(0, 24);
moel@1
   451
      this.splitContainer.Name = "splitContainer";
moel@1
   452
      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
moel@1
   453
      // 
moel@1
   454
      // splitContainer.Panel1
moel@1
   455
      // 
moel@1
   456
      this.splitContainer.Panel1.Controls.Add(this.treeView);
moel@1
   457
      // 
moel@1
   458
      // splitContainer.Panel2
moel@1
   459
      // 
moel@1
   460
      this.splitContainer.Panel2.Controls.Add(this.plotPanel);
moel@1
   461
      this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
moel@122
   462
      this.splitContainer.Size = new System.Drawing.Size(410, 662);
moel@122
   463
      this.splitContainer.SplitterDistance = 488;
moel@1
   464
      this.splitContainer.SplitterWidth = 3;
moel@1
   465
      this.splitContainer.TabIndex = 3;
moel@1
   466
      // 
moel@63
   467
      // plotPanel
moel@63
   468
      // 
moel@63
   469
      this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
moel@122
   470
      this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
moel@63
   471
      this.plotPanel.Location = new System.Drawing.Point(0, 0);
moel@63
   472
      this.plotPanel.Name = "plotPanel";
moel@122
   473
      this.plotPanel.Size = new System.Drawing.Size(410, 171);
moel@63
   474
      this.plotPanel.TabIndex = 0;
moel@63
   475
      // 
moel@40
   476
      // sensorContextMenuStrip
moel@40
   477
      // 
moel@40
   478
      this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
moel@133
   479
      this.sensorContextMenuStrip.Size = new System.Drawing.Size(153, 26);
moel@40
   480
      // 
moel@83
   481
      // saveFileDialog
moel@83
   482
      // 
moel@83
   483
      this.saveFileDialog.DefaultExt = "txt";
moel@83
   484
      this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
moel@83
   485
      this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
moel@83
   486
      this.saveFileDialog.RestoreDirectory = true;
moel@83
   487
      this.saveFileDialog.Title = "Save Report As";
moel@83
   488
      // 
moel@86
   489
      // timer
moel@86
   490
      // 
moel@86
   491
      this.timer.Interval = 1000;
moel@86
   492
      this.timer.Tick += new System.EventHandler(this.timer_Tick);
moel@86
   493
      // 
moel@1
   494
      // MainForm
moel@1
   495
      // 
moel@122
   496
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
moel@1
   497
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
moel@122
   498
      this.ClientSize = new System.Drawing.Size(410, 686);
moel@1
   499
      this.Controls.Add(this.splitContainer);
moel@122
   500
      this.Controls.Add(this.menuStrip);
moel@1
   501
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
moel@1
   502
      this.MainMenuStrip = this.menuStrip;
moel@1
   503
      this.Name = "MainForm";
moel@1
   504
      this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
moel@1
   505
      this.Text = "Open Hardware Monitor";
moel@1
   506
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
moel@1
   507
      this.menuStrip.ResumeLayout(false);
moel@1
   508
      this.menuStrip.PerformLayout();
moel@1
   509
      this.splitContainer.Panel1.ResumeLayout(false);
moel@1
   510
      this.splitContainer.Panel2.ResumeLayout(false);
moel@1
   511
      this.splitContainer.ResumeLayout(false);
moel@1
   512
      this.ResumeLayout(false);
moel@1
   513
      this.PerformLayout();
moel@1
   514
moel@1
   515
    }
moel@1
   516
moel@1
   517
    #endregion
moel@1
   518
moel@1
   519
    private Aga.Controls.Tree.TreeViewAdv treeView;
moel@1
   520
    private System.Windows.Forms.MenuStrip menuStrip;
moel@1
   521
    private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
moel@1
   522
    private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
moel@1
   523
    private Aga.Controls.Tree.TreeColumn sensor;
moel@1
   524
    private Aga.Controls.Tree.TreeColumn value;
moel@1
   525
    private Aga.Controls.Tree.TreeColumn min;
moel@1
   526
    private Aga.Controls.Tree.TreeColumn max;
moel@1
   527
    private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
moel@1
   528
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
moel@1
   529
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
moel@1
   530
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
moel@1
   531
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
moel@1
   532
    private System.Windows.Forms.SplitContainer splitContainer;
moel@1
   533
    private PlotPanel plotPanel;
moel@1
   534
    private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
moel@1
   535
    private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
moel@1
   536
    private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
moel@1
   537
    private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
moel@1
   538
    private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
moel@1
   539
    private Aga.Controls.Tree.TreeColumn limit;
moel@1
   540
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
moel@1
   541
    private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
moel@1
   542
    private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
moel@1
   543
    private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
moel@28
   544
    private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
moel@125
   545
    private System.Windows.Forms.ToolStripSeparator separatorMenuItem;
moel@40
   546
    private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
moel@55
   547
    private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
moel@82
   548
    private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
moel@83
   549
    private System.Windows.Forms.SaveFileDialog saveFileDialog;
moel@86
   550
    private System.Windows.Forms.Timer timer;
moel@111
   551
    private System.Windows.Forms.ToolStripMenuItem hiddenMenuItem;
moel@111
   552
    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
moel@111
   553
    private System.Windows.Forms.ToolStripMenuItem columnsToolStripMenuItem;
moel@111
   554
    private System.Windows.Forms.ToolStripMenuItem valueMenuItem;
moel@111
   555
    private System.Windows.Forms.ToolStripMenuItem minMenuItem;
moel@111
   556
    private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
moel@111
   557
    private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
moel@122
   558
    private System.Windows.Forms.ToolStripMenuItem temperatureUnitsToolStripMenuItem;
moel@122
   559
    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
moel@122
   560
    private System.Windows.Forms.ToolStripMenuItem celciusToolStripMenuItem;
moel@122
   561
    private System.Windows.Forms.ToolStripMenuItem fahrenheitToolStripMenuItem;
moel@1
   562
  }
moel@1
   563
}
moel@1
   564