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