GUI/MainForm.Designer.cs
author moel.mich
Tue, 25 May 2010 18:57:28 +0000
changeset 127 76aaf45a01c7
parent 122 3ef997c53b50
child 133 9ad699538c89
permissions -rw-r--r--
Added a workaround for the "You must keep the stream open for the lifetime of the Image." problem of the Image.FromStream method. This also reduced the overall memory usage (private working set).
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@27
   105
      this.notifyContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
moel@82
   106
      this.hideShowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
moel@27
   107
      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
moel@27
   108
      this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
moel@40
   109
      this.sensorContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
moel@83
   110
      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
moel@86
   111
      this.timer = new System.Windows.Forms.Timer(this.components);
moel@1
   112
      this.menuStrip.SuspendLayout();
moel@1
   113
      this.splitContainer.Panel1.SuspendLayout();
moel@1
   114
      this.splitContainer.Panel2.SuspendLayout();
moel@1
   115
      this.splitContainer.SuspendLayout();
moel@27
   116
      this.notifyContextMenuStrip.SuspendLayout();
moel@1
   117
      this.SuspendLayout();
moel@1
   118
      // 
moel@1
   119
      // treeView
moel@1
   120
      // 
moel@1
   121
      this.treeView.BackColor = System.Drawing.SystemColors.Window;
moel@1
   122
      this.treeView.Columns.Add(this.sensor);
moel@1
   123
      this.treeView.Columns.Add(this.value);
moel@1
   124
      this.treeView.Columns.Add(this.min);
moel@1
   125
      this.treeView.Columns.Add(this.max);
moel@1
   126
      this.treeView.Columns.Add(this.limit);
moel@1
   127
      this.treeView.DefaultToolTipProvider = null;
moel@1
   128
      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
moel@122
   129
      this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
moel@1
   130
      this.treeView.FullRowSelect = true;
moel@1
   131
      this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
moel@1
   132
      this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
moel@1
   133
      this.treeView.Location = new System.Drawing.Point(0, 0);
moel@1
   134
      this.treeView.Model = null;
moel@1
   135
      this.treeView.Name = "treeView";
moel@1
   136
      this.treeView.NodeControls.Add(this.nodeImage);
moel@1
   137
      this.treeView.NodeControls.Add(this.nodeCheckBox);
moel@1
   138
      this.treeView.NodeControls.Add(this.nodeTextBoxText);
moel@1
   139
      this.treeView.NodeControls.Add(this.nodeTextBoxValue);
moel@1
   140
      this.treeView.NodeControls.Add(this.nodeTextBoxMin);
moel@1
   141
      this.treeView.NodeControls.Add(this.nodeTextBoxMax);
moel@1
   142
      this.treeView.NodeControls.Add(this.nodeTextBoxLimit);
moel@1
   143
      this.treeView.RowHeight = 18;
moel@1
   144
      this.treeView.SelectedNode = null;
moel@122
   145
      this.treeView.Size = new System.Drawing.Size(410, 488);
moel@1
   146
      this.treeView.TabIndex = 0;
moel@1
   147
      this.treeView.Text = "treeView";
moel@1
   148
      this.treeView.UseColumns = true;
moel@63
   149
      this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
moel@1
   150
      this.treeView.Click += new System.EventHandler(this.treeView_Click);
moel@1
   151
      // 
moel@1
   152
      // sensor
moel@1
   153
      // 
moel@1
   154
      this.sensor.Header = "Sensor";
moel@1
   155
      this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   156
      this.sensor.TooltipText = null;
moel@1
   157
      this.sensor.Width = 250;
moel@1
   158
      // 
moel@1
   159
      // value
moel@1
   160
      // 
moel@1
   161
      this.value.Header = "Value";
moel@1
   162
      this.value.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   163
      this.value.TooltipText = null;
moel@1
   164
      this.value.Width = 100;
moel@1
   165
      // 
moel@1
   166
      // min
moel@1
   167
      // 
moel@1
   168
      this.min.Header = "Min";
moel@1
   169
      this.min.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   170
      this.min.TooltipText = null;
moel@1
   171
      this.min.Width = 100;
moel@1
   172
      // 
moel@1
   173
      // max
moel@1
   174
      // 
moel@1
   175
      this.max.Header = "Max";
moel@1
   176
      this.max.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   177
      this.max.TooltipText = null;
moel@1
   178
      this.max.Width = 100;
moel@1
   179
      // 
moel@1
   180
      // limit
moel@1
   181
      // 
moel@1
   182
      this.limit.Header = "Limit";
moel@1
   183
      this.limit.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   184
      this.limit.TooltipText = null;
moel@1
   185
      this.limit.Width = 100;
moel@1
   186
      // 
moel@1
   187
      // nodeImage
moel@1
   188
      // 
moel@1
   189
      this.nodeImage.DataPropertyName = "Image";
moel@1
   190
      this.nodeImage.LeftMargin = 1;
moel@1
   191
      this.nodeImage.ParentColumn = this.sensor;
moel@1
   192
      this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
moel@1
   193
      // 
moel@1
   194
      // nodeCheckBox
moel@1
   195
      // 
moel@1
   196
      this.nodeCheckBox.DataPropertyName = "Plot";
moel@1
   197
      this.nodeCheckBox.EditEnabled = true;
moel@1
   198
      this.nodeCheckBox.LeftMargin = 3;
moel@1
   199
      this.nodeCheckBox.ParentColumn = this.sensor;
moel@1
   200
      // 
moel@1
   201
      // nodeTextBoxText
moel@1
   202
      // 
moel@1
   203
      this.nodeTextBoxText.DataPropertyName = "Text";
moel@1
   204
      this.nodeTextBoxText.EditEnabled = true;
moel@1
   205
      this.nodeTextBoxText.IncrementalSearchEnabled = true;
moel@1
   206
      this.nodeTextBoxText.LeftMargin = 3;
moel@1
   207
      this.nodeTextBoxText.ParentColumn = this.sensor;
moel@1
   208
      // 
moel@1
   209
      // nodeTextBoxValue
moel@1
   210
      // 
moel@1
   211
      this.nodeTextBoxValue.DataPropertyName = "Value";
moel@1
   212
      this.nodeTextBoxValue.IncrementalSearchEnabled = true;
moel@1
   213
      this.nodeTextBoxValue.LeftMargin = 3;
moel@1
   214
      this.nodeTextBoxValue.ParentColumn = this.value;
moel@1
   215
      // 
moel@1
   216
      // nodeTextBoxMin
moel@1
   217
      // 
moel@1
   218
      this.nodeTextBoxMin.DataPropertyName = "Min";
moel@1
   219
      this.nodeTextBoxMin.IncrementalSearchEnabled = true;
moel@1
   220
      this.nodeTextBoxMin.LeftMargin = 3;
moel@1
   221
      this.nodeTextBoxMin.ParentColumn = this.min;
moel@1
   222
      // 
moel@1
   223
      // nodeTextBoxMax
moel@1
   224
      // 
moel@1
   225
      this.nodeTextBoxMax.DataPropertyName = "Max";
moel@1
   226
      this.nodeTextBoxMax.IncrementalSearchEnabled = true;
moel@1
   227
      this.nodeTextBoxMax.LeftMargin = 3;
moel@1
   228
      this.nodeTextBoxMax.ParentColumn = this.max;
moel@1
   229
      // 
moel@1
   230
      // nodeTextBoxLimit
moel@1
   231
      // 
moel@1
   232
      this.nodeTextBoxLimit.DataPropertyName = "Limit";
moel@1
   233
      this.nodeTextBoxLimit.EditEnabled = true;
moel@1
   234
      this.nodeTextBoxLimit.IncrementalSearchEnabled = true;
moel@1
   235
      this.nodeTextBoxLimit.LeftMargin = 3;
moel@1
   236
      this.nodeTextBoxLimit.ParentColumn = this.limit;
moel@1
   237
      // 
moel@1
   238
      // menuStrip
moel@1
   239
      // 
moel@1
   240
      this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   241
            this.fileToolStripMenuItem,
moel@1
   242
            this.viewToolStripMenuItem,
moel@1
   243
            this.optionsToolStripMenuItem,
moel@1
   244
            this.helpToolStripMenuItem});
moel@1
   245
      this.menuStrip.Location = new System.Drawing.Point(0, 0);
moel@1
   246
      this.menuStrip.Name = "menuStrip";
moel@122
   247
      this.menuStrip.Size = new System.Drawing.Size(410, 24);
moel@1
   248
      this.menuStrip.TabIndex = 1;
moel@1
   249
      this.menuStrip.Text = "menuStrip1";
moel@1
   250
      // 
moel@1
   251
      // fileToolStripMenuItem
moel@1
   252
      // 
moel@1
   253
      this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   254
            this.saveReportToolStripMenuItem,
moel@1
   255
            this.exitToolStripMenuItem});
moel@1
   256
      this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
moel@1
   257
      this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
moel@1
   258
      this.fileToolStripMenuItem.Text = "File";
moel@1
   259
      // 
moel@1
   260
      // saveReportToolStripMenuItem
moel@1
   261
      // 
moel@1
   262
      this.saveReportToolStripMenuItem.Name = "saveReportToolStripMenuItem";
moel@86
   263
      this.saveReportToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
moel@83
   264
      this.saveReportToolStripMenuItem.Text = "Save Report...";
moel@1
   265
      this.saveReportToolStripMenuItem.Click += new System.EventHandler(this.saveReportToolStripMenuItem_Click);
moel@1
   266
      // 
moel@1
   267
      // exitToolStripMenuItem
moel@1
   268
      // 
moel@1
   269
      this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
moel@86
   270
      this.exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
moel@1
   271
      this.exitToolStripMenuItem.Text = "Exit";
moel@1
   272
      this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
moel@1
   273
      // 
moel@1
   274
      // viewToolStripMenuItem
moel@1
   275
      // 
moel@1
   276
      this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@111
   277
            this.hiddenMenuItem,
moel@111
   278
            this.plotMenuItem,
moel@1
   279
            this.toolStripMenuItem1,
moel@111
   280
            this.columnsToolStripMenuItem});
moel@1
   281
      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
moel@1
   282
      this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
moel@1
   283
      this.viewToolStripMenuItem.Text = "View";
moel@1
   284
      // 
moel@111
   285
      // hiddenMenuItem
moel@1
   286
      // 
moel@111
   287
      this.hiddenMenuItem.CheckOnClick = true;
moel@111
   288
      this.hiddenMenuItem.Name = "hiddenMenuItem";
moel@111
   289
      this.hiddenMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   290
      this.hiddenMenuItem.Text = "Show Hidden Sensors";
moel@111
   291
      this.hiddenMenuItem.CheckedChanged += new System.EventHandler(this.hiddenSensorsMenuItem_CheckedChanged);
moel@1
   292
      // 
moel@1
   293
      // plotMenuItem
moel@1
   294
      // 
moel@1
   295
      this.plotMenuItem.Checked = true;
moel@1
   296
      this.plotMenuItem.CheckOnClick = true;
moel@1
   297
      this.plotMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@1
   298
      this.plotMenuItem.Name = "plotMenuItem";
moel@111
   299
      this.plotMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   300
      this.plotMenuItem.Text = "Show Plot";
moel@1
   301
      this.plotMenuItem.CheckedChanged += new System.EventHandler(this.plotToolStripMenuItem_CheckedChanged);
moel@1
   302
      // 
moel@111
   303
      // toolStripMenuItem1
moel@111
   304
      // 
moel@111
   305
      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
moel@111
   306
      this.toolStripMenuItem1.Size = new System.Drawing.Size(185, 6);
moel@111
   307
      // 
moel@111
   308
      // columnsToolStripMenuItem
moel@111
   309
      // 
moel@111
   310
      this.columnsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@111
   311
            this.valueMenuItem,
moel@111
   312
            this.minMenuItem,
moel@111
   313
            this.maxMenuItem,
moel@111
   314
            this.limitMenuItem});
moel@111
   315
      this.columnsToolStripMenuItem.Name = "columnsToolStripMenuItem";
moel@111
   316
      this.columnsToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
moel@111
   317
      this.columnsToolStripMenuItem.Text = "Columns";
moel@111
   318
      // 
moel@111
   319
      // valueMenuItem
moel@111
   320
      // 
moel@111
   321
      this.valueMenuItem.Checked = true;
moel@111
   322
      this.valueMenuItem.CheckOnClick = true;
moel@111
   323
      this.valueMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   324
      this.valueMenuItem.Name = "valueMenuItem";
moel@122
   325
      this.valueMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   326
      this.valueMenuItem.Text = "Value";
moel@111
   327
      this.valueMenuItem.CheckedChanged += new System.EventHandler(this.valueMenuItem_CheckedChanged);
moel@111
   328
      // 
moel@111
   329
      // minMenuItem
moel@111
   330
      // 
moel@111
   331
      this.minMenuItem.Checked = true;
moel@111
   332
      this.minMenuItem.CheckOnClick = true;
moel@111
   333
      this.minMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   334
      this.minMenuItem.Name = "minMenuItem";
moel@122
   335
      this.minMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   336
      this.minMenuItem.Text = "Min";
moel@111
   337
      this.minMenuItem.CheckedChanged += new System.EventHandler(this.minMenuItem_CheckedChanged);
moel@111
   338
      // 
moel@111
   339
      // maxMenuItem
moel@111
   340
      // 
moel@111
   341
      this.maxMenuItem.Checked = true;
moel@111
   342
      this.maxMenuItem.CheckOnClick = true;
moel@111
   343
      this.maxMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   344
      this.maxMenuItem.Name = "maxMenuItem";
moel@122
   345
      this.maxMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   346
      this.maxMenuItem.Text = "Max";
moel@111
   347
      this.maxMenuItem.CheckedChanged += new System.EventHandler(this.maxMenuItem_CheckedChanged);
moel@111
   348
      // 
moel@111
   349
      // limitMenuItem
moel@111
   350
      // 
moel@111
   351
      this.limitMenuItem.Checked = true;
moel@111
   352
      this.limitMenuItem.CheckOnClick = true;
moel@111
   353
      this.limitMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
moel@111
   354
      this.limitMenuItem.Name = "limitMenuItem";
moel@122
   355
      this.limitMenuItem.Size = new System.Drawing.Size(103, 22);
moel@111
   356
      this.limitMenuItem.Text = "Limit";
moel@111
   357
      this.limitMenuItem.CheckedChanged += new System.EventHandler(this.limitMenuItem_CheckedChanged);
moel@111
   358
      // 
moel@1
   359
      // optionsToolStripMenuItem
moel@1
   360
      // 
moel@1
   361
      this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@55
   362
            this.startMinMenuItem,
moel@28
   363
            this.minTrayMenuItem,
moel@82
   364
            this.startupMenuItem,
moel@125
   365
            this.separatorMenuItem,
moel@122
   366
            this.temperatureUnitsToolStripMenuItem,
moel@122
   367
            this.toolStripMenuItem4,
moel@1
   368
            this.hddMenuItem});
moel@1
   369
      this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
moel@1
   370
      this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
moel@1
   371
      this.optionsToolStripMenuItem.Text = "Options";
moel@1
   372
      // 
moel@57
   373
      // startMinMenuItem
moel@55
   374
      // 
moel@55
   375
      this.startMinMenuItem.CheckOnClick = true;
moel@57
   376
      this.startMinMenuItem.Name = "startMinMenuItem";
moel@82
   377
      this.startMinMenuItem.Size = new System.Drawing.Size(207, 22);
moel@55
   378
      this.startMinMenuItem.Text = "Start Minimized";
moel@55
   379
      // 
moel@28
   380
      // minTrayMenuItem
moel@28
   381
      // 
moel@28
   382
      this.minTrayMenuItem.CheckOnClick = true;
moel@28
   383
      this.minTrayMenuItem.Name = "minTrayMenuItem";
moel@82
   384
      this.minTrayMenuItem.Size = new System.Drawing.Size(207, 22);
moel@28
   385
      this.minTrayMenuItem.Text = "Minimize To Tray";
moel@82
   386
      this.minTrayMenuItem.CheckedChanged += new System.EventHandler(this.minTrayMenuItem_CheckedChanged);
moel@82
   387
      // 
moel@82
   388
      // startupMenuItem
moel@82
   389
      // 
moel@82
   390
      this.startupMenuItem.CheckOnClick = true;
moel@82
   391
      this.startupMenuItem.Name = "startupMenuItem";
moel@82
   392
      this.startupMenuItem.Size = new System.Drawing.Size(207, 22);
moel@82
   393
      this.startupMenuItem.Text = "Run On Windows Startup";
moel@82
   394
      this.startupMenuItem.CheckedChanged += new System.EventHandler(this.runOnWindowsStartupToolStripMenuItem_CheckedChanged);
moel@28
   395
      // 
moel@28
   396
      // toolStripMenuItem3
moel@28
   397
      // 
moel@125
   398
      this.separatorMenuItem.Name = "toolStripMenuItem3";
moel@125
   399
      this.separatorMenuItem.Size = new System.Drawing.Size(204, 6);
moel@28
   400
      // 
moel@122
   401
      // temperatureUnitsToolStripMenuItem
moel@122
   402
      // 
moel@122
   403
      this.temperatureUnitsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@122
   404
            this.celciusToolStripMenuItem,
moel@122
   405
            this.fahrenheitToolStripMenuItem});
moel@122
   406
      this.temperatureUnitsToolStripMenuItem.Name = "temperatureUnitsToolStripMenuItem";
moel@122
   407
      this.temperatureUnitsToolStripMenuItem.Size = new System.Drawing.Size(207, 22);
moel@122
   408
      this.temperatureUnitsToolStripMenuItem.Text = "Temperature Unit";
moel@122
   409
      // 
moel@122
   410
      // celciusToolStripMenuItem
moel@122
   411
      // 
moel@122
   412
      this.celciusToolStripMenuItem.Name = "celciusToolStripMenuItem";
moel@122
   413
      this.celciusToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
moel@122
   414
      this.celciusToolStripMenuItem.Text = "Celcius";
moel@122
   415
      this.celciusToolStripMenuItem.Click += new System.EventHandler(this.celciusToolStripMenuItem_Click);
moel@122
   416
      // 
moel@122
   417
      // fahrenheitToolStripMenuItem
moel@122
   418
      // 
moel@122
   419
      this.fahrenheitToolStripMenuItem.Name = "fahrenheitToolStripMenuItem";
moel@122
   420
      this.fahrenheitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
moel@122
   421
      this.fahrenheitToolStripMenuItem.Text = "Fahrenheit";
moel@122
   422
      this.fahrenheitToolStripMenuItem.Click += new System.EventHandler(this.fahrenheitToolStripMenuItem_Click);
moel@122
   423
      // 
moel@122
   424
      // toolStripMenuItem4
moel@122
   425
      // 
moel@122
   426
      this.toolStripMenuItem4.Name = "toolStripMenuItem4";
moel@122
   427
      this.toolStripMenuItem4.Size = new System.Drawing.Size(204, 6);
moel@122
   428
      // 
moel@1
   429
      // hddMenuItem
moel@1
   430
      // 
moel@1
   431
      this.hddMenuItem.CheckOnClick = true;
moel@1
   432
      this.hddMenuItem.Name = "hddMenuItem";
moel@82
   433
      this.hddMenuItem.Size = new System.Drawing.Size(207, 22);
moel@122
   434
      this.hddMenuItem.Text = "Read HDD sensors";
moel@1
   435
      this.hddMenuItem.CheckedChanged += new System.EventHandler(this.hddsensorsToolStripMenuItem_CheckedChanged);
moel@1
   436
      // 
moel@1
   437
      // helpToolStripMenuItem
moel@1
   438
      // 
moel@1
   439
      this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@1
   440
            this.aboutToolStripMenuItem});
moel@1
   441
      this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
moel@1
   442
      this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
moel@1
   443
      this.helpToolStripMenuItem.Text = "Help";
moel@1
   444
      // 
moel@1
   445
      // aboutToolStripMenuItem
moel@1
   446
      // 
moel@1
   447
      this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
moel@1
   448
      this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
moel@1
   449
      this.aboutToolStripMenuItem.Text = "About";
moel@1
   450
      this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
moel@1
   451
      // 
moel@1
   452
      // splitContainer
moel@1
   453
      // 
moel@1
   454
      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
moel@1
   455
      this.splitContainer.Location = new System.Drawing.Point(0, 24);
moel@1
   456
      this.splitContainer.Name = "splitContainer";
moel@1
   457
      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
moel@1
   458
      // 
moel@1
   459
      // splitContainer.Panel1
moel@1
   460
      // 
moel@1
   461
      this.splitContainer.Panel1.Controls.Add(this.treeView);
moel@1
   462
      // 
moel@1
   463
      // splitContainer.Panel2
moel@1
   464
      // 
moel@1
   465
      this.splitContainer.Panel2.Controls.Add(this.plotPanel);
moel@1
   466
      this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
moel@122
   467
      this.splitContainer.Size = new System.Drawing.Size(410, 662);
moel@122
   468
      this.splitContainer.SplitterDistance = 488;
moel@1
   469
      this.splitContainer.SplitterWidth = 3;
moel@1
   470
      this.splitContainer.TabIndex = 3;
moel@1
   471
      // 
moel@63
   472
      // plotPanel
moel@63
   473
      // 
moel@63
   474
      this.plotPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
moel@122
   475
      this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
moel@63
   476
      this.plotPanel.Location = new System.Drawing.Point(0, 0);
moel@63
   477
      this.plotPanel.Name = "plotPanel";
moel@122
   478
      this.plotPanel.Size = new System.Drawing.Size(410, 171);
moel@63
   479
      this.plotPanel.TabIndex = 0;
moel@63
   480
      // 
moel@27
   481
      // notifyContextMenuStrip
moel@27
   482
      // 
moel@27
   483
      this.notifyContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
moel@82
   484
            this.hideShowToolStripMenuItem,
moel@27
   485
            this.toolStripMenuItem2,
moel@27
   486
            this.exitToolStripMenuItem1});
moel@27
   487
      this.notifyContextMenuStrip.Name = "notifyContextMenuStrip";
moel@122
   488
      this.notifyContextMenuStrip.Size = new System.Drawing.Size(134, 54);
moel@27
   489
      // 
moel@82
   490
      // hideShowToolStripMenuItem
moel@122
   491
      // 
moel@82
   492
      this.hideShowToolStripMenuItem.Name = "hideShowToolStripMenuItem";
moel@122
   493
      this.hideShowToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
moel@82
   494
      this.hideShowToolStripMenuItem.Text = "Hide/Show";
moel@82
   495
      this.hideShowToolStripMenuItem.Click += new System.EventHandler(this.hideShowClick);
moel@27
   496
      // 
moel@27
   497
      // toolStripMenuItem2
moel@27
   498
      // 
moel@27
   499
      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
moel@122
   500
      this.toolStripMenuItem2.Size = new System.Drawing.Size(130, 6);
moel@27
   501
      // 
moel@27
   502
      // exitToolStripMenuItem1
moel@27
   503
      // 
moel@27
   504
      this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
moel@122
   505
      this.exitToolStripMenuItem1.Size = new System.Drawing.Size(133, 22);
moel@27
   506
      this.exitToolStripMenuItem1.Text = "Exit";
moel@27
   507
      this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
moel@27
   508
      // 
moel@40
   509
      // sensorContextMenuStrip
moel@40
   510
      // 
moel@40
   511
      this.sensorContextMenuStrip.Name = "sensorContextMenuStrip";
moel@40
   512
      this.sensorContextMenuStrip.Size = new System.Drawing.Size(61, 4);
moel@40
   513
      // 
moel@83
   514
      // saveFileDialog
moel@83
   515
      // 
moel@83
   516
      this.saveFileDialog.DefaultExt = "txt";
moel@83
   517
      this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
moel@83
   518
      this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
moel@83
   519
      this.saveFileDialog.RestoreDirectory = true;
moel@83
   520
      this.saveFileDialog.Title = "Save Report As";
moel@83
   521
      // 
moel@86
   522
      // timer
moel@86
   523
      // 
moel@86
   524
      this.timer.Interval = 1000;
moel@86
   525
      this.timer.Tick += new System.EventHandler(this.timer_Tick);
moel@86
   526
      // 
moel@1
   527
      // MainForm
moel@1
   528
      // 
moel@122
   529
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
moel@1
   530
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
moel@122
   531
      this.ClientSize = new System.Drawing.Size(410, 686);
moel@1
   532
      this.Controls.Add(this.splitContainer);
moel@122
   533
      this.Controls.Add(this.menuStrip);
moel@1
   534
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
moel@1
   535
      this.MainMenuStrip = this.menuStrip;
moel@1
   536
      this.Name = "MainForm";
moel@1
   537
      this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
moel@1
   538
      this.Text = "Open Hardware Monitor";
moel@1
   539
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
moel@1
   540
      this.menuStrip.ResumeLayout(false);
moel@1
   541
      this.menuStrip.PerformLayout();
moel@1
   542
      this.splitContainer.Panel1.ResumeLayout(false);
moel@1
   543
      this.splitContainer.Panel2.ResumeLayout(false);
moel@1
   544
      this.splitContainer.ResumeLayout(false);
moel@27
   545
      this.notifyContextMenuStrip.ResumeLayout(false);
moel@1
   546
      this.ResumeLayout(false);
moel@1
   547
      this.PerformLayout();
moel@1
   548
moel@1
   549
    }
moel@1
   550
moel@1
   551
    #endregion
moel@1
   552
moel@1
   553
    private Aga.Controls.Tree.TreeViewAdv treeView;
moel@1
   554
    private System.Windows.Forms.MenuStrip menuStrip;
moel@1
   555
    private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
moel@1
   556
    private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
moel@1
   557
    private Aga.Controls.Tree.TreeColumn sensor;
moel@1
   558
    private Aga.Controls.Tree.TreeColumn value;
moel@1
   559
    private Aga.Controls.Tree.TreeColumn min;
moel@1
   560
    private Aga.Controls.Tree.TreeColumn max;
moel@1
   561
    private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
moel@1
   562
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
moel@1
   563
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
moel@1
   564
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
moel@1
   565
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
moel@1
   566
    private System.Windows.Forms.SplitContainer splitContainer;
moel@1
   567
    private PlotPanel plotPanel;
moel@1
   568
    private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
moel@1
   569
    private System.Windows.Forms.ToolStripMenuItem plotMenuItem;
moel@1
   570
    private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
moel@1
   571
    private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
moel@1
   572
    private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
moel@1
   573
    private Aga.Controls.Tree.TreeColumn limit;
moel@1
   574
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxLimit;
moel@1
   575
    private System.Windows.Forms.ToolStripMenuItem saveReportToolStripMenuItem;
moel@1
   576
    private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
moel@1
   577
    private System.Windows.Forms.ToolStripMenuItem hddMenuItem;
moel@27
   578
    private System.Windows.Forms.ContextMenuStrip notifyContextMenuStrip;
moel@82
   579
    private System.Windows.Forms.ToolStripMenuItem hideShowToolStripMenuItem;
moel@27
   580
    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
moel@27
   581
    private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem1;
moel@28
   582
    private System.Windows.Forms.ToolStripMenuItem minTrayMenuItem;
moel@125
   583
    private System.Windows.Forms.ToolStripSeparator separatorMenuItem;
moel@40
   584
    private System.Windows.Forms.ContextMenuStrip sensorContextMenuStrip;
moel@55
   585
    private System.Windows.Forms.ToolStripMenuItem startMinMenuItem;
moel@82
   586
    private System.Windows.Forms.ToolStripMenuItem startupMenuItem;
moel@83
   587
    private System.Windows.Forms.SaveFileDialog saveFileDialog;
moel@86
   588
    private System.Windows.Forms.Timer timer;
moel@111
   589
    private System.Windows.Forms.ToolStripMenuItem hiddenMenuItem;
moel@111
   590
    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
moel@111
   591
    private System.Windows.Forms.ToolStripMenuItem columnsToolStripMenuItem;
moel@111
   592
    private System.Windows.Forms.ToolStripMenuItem valueMenuItem;
moel@111
   593
    private System.Windows.Forms.ToolStripMenuItem minMenuItem;
moel@111
   594
    private System.Windows.Forms.ToolStripMenuItem maxMenuItem;
moel@111
   595
    private System.Windows.Forms.ToolStripMenuItem limitMenuItem;
moel@122
   596
    private System.Windows.Forms.ToolStripMenuItem temperatureUnitsToolStripMenuItem;
moel@122
   597
    private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
moel@122
   598
    private System.Windows.Forms.ToolStripMenuItem celciusToolStripMenuItem;
moel@122
   599
    private System.Windows.Forms.ToolStripMenuItem fahrenheitToolStripMenuItem;
moel@1
   600
  }
moel@1
   601
}
moel@1
   602