GUI/MainForm.Designer.cs
author moel.mich
Sat, 31 Dec 2011 17:31:04 +0000
changeset 324 c6ee430d6995
parent 295 a1c06df9928d
child 326 a41745e3828d
permissions -rw-r--r--
Modified and extended version of the patch v4 by Roland Reinl (see Issue 256). Main differences to the original patch: DeviceIoControl refactorings removed, SmartAttribute is now descriptive only and does not hold any state, report is written as one 80 columns table, sensors are created only for meaningful values and without duplicates (remaining life, temperatures, host writes and reads). Also the current implementation should really preserve all the functionality of the old system. Additionally there is now a simple SMART devices emulation class (DebugSmart) that can be used in place of WindowsSmart for testing with reported data.
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@299
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2011
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.sensor = new Aga.Controls.Tree.TreeColumn();
moel@1
    66
      this.value = new Aga.Controls.Tree.TreeColumn();
moel@1
    67
      this.min = new Aga.Controls.Tree.TreeColumn();
moel@1
    68
      this.max = new Aga.Controls.Tree.TreeColumn();
moel@1
    69
      this.nodeImage = new Aga.Controls.Tree.NodeControls.NodeIcon();
moel@1
    70
      this.nodeCheckBox = new Aga.Controls.Tree.NodeControls.NodeCheckBox();
moel@1
    71
      this.nodeTextBoxText = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    72
      this.nodeTextBoxValue = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    73
      this.nodeTextBoxMin = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@1
    74
      this.nodeTextBoxMax = new Aga.Controls.Tree.NodeControls.NodeTextBox();
moel@156
    75
      this.mainMenu = new System.Windows.Forms.MainMenu(this.components);
moel@156
    76
      this.fileMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    77
      this.saveReportMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    78
      this.sumbitReportMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    79
      this.MenuItem2 = new System.Windows.Forms.MenuItem();
moel@287
    80
      this.resetMenuItem = new System.Windows.Forms.MenuItem();
moel@287
    81
      this.menuItem6 = new System.Windows.Forms.MenuItem();
moel@156
    82
      this.exitMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    83
      this.viewMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    84
      this.resetMinMaxMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    85
      this.MenuItem3 = new System.Windows.Forms.MenuItem();
moel@156
    86
      this.hiddenMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    87
      this.plotMenuItem = new System.Windows.Forms.MenuItem();
moel@190
    88
      this.gadgetMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    89
      this.MenuItem1 = new System.Windows.Forms.MenuItem();
moel@156
    90
      this.columnsMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    91
      this.valueMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    92
      this.minMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    93
      this.maxMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    94
      this.optionsMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    95
      this.startMinMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    96
      this.minTrayMenuItem = new System.Windows.Forms.MenuItem();
paulwerelds@198
    97
      this.minCloseMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    98
      this.startupMenuItem = new System.Windows.Forms.MenuItem();
moel@156
    99
      this.separatorMenuItem = new System.Windows.Forms.MenuItem();
moel@156
   100
      this.temperatureUnitsMenuItem = new System.Windows.Forms.MenuItem();
moel@299
   101
      this.celsiusMenuItem = new System.Windows.Forms.MenuItem();
moel@156
   102
      this.fahrenheitMenuItem = new System.Windows.Forms.MenuItem();
moel@156
   103
      this.MenuItem4 = new System.Windows.Forms.MenuItem();
moel@156
   104
      this.hddMenuItem = new System.Windows.Forms.MenuItem();
moel@156
   105
      this.helpMenuItem = new System.Windows.Forms.MenuItem();
moel@156
   106
      this.aboutMenuItem = new System.Windows.Forms.MenuItem();
moel@275
   107
      this.treeContextMenu = new System.Windows.Forms.ContextMenu();
moel@83
   108
      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
moel@86
   109
      this.timer = new System.Windows.Forms.Timer(this.components);
moel@158
   110
      this.splitContainer = new OpenHardwareMonitor.GUI.SplitContainerAdv();
moel@158
   111
      this.treeView = new Aga.Controls.Tree.TreeViewAdv();
moel@158
   112
      this.plotPanel = new OpenHardwareMonitor.GUI.PlotPanel();
moel@295
   113
      this.plotLocationMenuItem = new System.Windows.Forms.MenuItem();
moel@295
   114
      this.plotWindowMenuItem = new System.Windows.Forms.MenuItem();
moel@295
   115
      this.plotBottomMenuItem = new System.Windows.Forms.MenuItem();
moel@295
   116
      this.plotRightMenuItem = new System.Windows.Forms.MenuItem();
moel@1
   117
      this.splitContainer.Panel1.SuspendLayout();
moel@1
   118
      this.splitContainer.Panel2.SuspendLayout();
moel@1
   119
      this.splitContainer.SuspendLayout();
moel@1
   120
      this.SuspendLayout();
moel@1
   121
      // 
moel@1
   122
      // sensor
moel@1
   123
      // 
moel@1
   124
      this.sensor.Header = "Sensor";
moel@1
   125
      this.sensor.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   126
      this.sensor.TooltipText = null;
moel@1
   127
      this.sensor.Width = 250;
moel@1
   128
      // 
moel@1
   129
      // value
moel@1
   130
      // 
moel@1
   131
      this.value.Header = "Value";
moel@1
   132
      this.value.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   133
      this.value.TooltipText = null;
moel@1
   134
      this.value.Width = 100;
moel@1
   135
      // 
moel@1
   136
      // min
moel@1
   137
      // 
moel@1
   138
      this.min.Header = "Min";
moel@1
   139
      this.min.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   140
      this.min.TooltipText = null;
moel@1
   141
      this.min.Width = 100;
moel@1
   142
      // 
moel@1
   143
      // max
moel@1
   144
      // 
moel@1
   145
      this.max.Header = "Max";
moel@1
   146
      this.max.SortOrder = System.Windows.Forms.SortOrder.None;
moel@1
   147
      this.max.TooltipText = null;
moel@1
   148
      this.max.Width = 100;
moel@1
   149
      // 
moel@1
   150
      // nodeImage
moel@1
   151
      // 
moel@1
   152
      this.nodeImage.DataPropertyName = "Image";
moel@1
   153
      this.nodeImage.LeftMargin = 1;
moel@1
   154
      this.nodeImage.ParentColumn = this.sensor;
moel@1
   155
      this.nodeImage.ScaleMode = Aga.Controls.Tree.ImageScaleMode.Fit;
moel@1
   156
      // 
moel@1
   157
      // nodeCheckBox
moel@1
   158
      // 
moel@1
   159
      this.nodeCheckBox.DataPropertyName = "Plot";
moel@1
   160
      this.nodeCheckBox.EditEnabled = true;
moel@1
   161
      this.nodeCheckBox.LeftMargin = 3;
moel@1
   162
      this.nodeCheckBox.ParentColumn = this.sensor;
moel@1
   163
      // 
moel@1
   164
      // nodeTextBoxText
moel@1
   165
      // 
moel@1
   166
      this.nodeTextBoxText.DataPropertyName = "Text";
moel@1
   167
      this.nodeTextBoxText.EditEnabled = true;
moel@1
   168
      this.nodeTextBoxText.IncrementalSearchEnabled = true;
moel@1
   169
      this.nodeTextBoxText.LeftMargin = 3;
moel@1
   170
      this.nodeTextBoxText.ParentColumn = this.sensor;
moel@190
   171
      this.nodeTextBoxText.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
moel@287
   172
      this.nodeTextBoxText.UseCompatibleTextRendering = true;
moel@1
   173
      // 
moel@1
   174
      // nodeTextBoxValue
moel@1
   175
      // 
moel@1
   176
      this.nodeTextBoxValue.DataPropertyName = "Value";
moel@1
   177
      this.nodeTextBoxValue.IncrementalSearchEnabled = true;
moel@1
   178
      this.nodeTextBoxValue.LeftMargin = 3;
moel@1
   179
      this.nodeTextBoxValue.ParentColumn = this.value;
moel@190
   180
      this.nodeTextBoxValue.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
moel@287
   181
      this.nodeTextBoxValue.UseCompatibleTextRendering = true;
moel@1
   182
      // 
moel@1
   183
      // nodeTextBoxMin
moel@1
   184
      // 
moel@1
   185
      this.nodeTextBoxMin.DataPropertyName = "Min";
moel@1
   186
      this.nodeTextBoxMin.IncrementalSearchEnabled = true;
moel@1
   187
      this.nodeTextBoxMin.LeftMargin = 3;
moel@1
   188
      this.nodeTextBoxMin.ParentColumn = this.min;
moel@190
   189
      this.nodeTextBoxMin.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
moel@287
   190
      this.nodeTextBoxMin.UseCompatibleTextRendering = true;
moel@1
   191
      // 
moel@1
   192
      // nodeTextBoxMax
moel@1
   193
      // 
moel@1
   194
      this.nodeTextBoxMax.DataPropertyName = "Max";
moel@1
   195
      this.nodeTextBoxMax.IncrementalSearchEnabled = true;
moel@1
   196
      this.nodeTextBoxMax.LeftMargin = 3;
moel@1
   197
      this.nodeTextBoxMax.ParentColumn = this.max;
moel@190
   198
      this.nodeTextBoxMax.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
moel@287
   199
      this.nodeTextBoxMax.UseCompatibleTextRendering = true;
moel@1
   200
      // 
moel@156
   201
      // mainMenu
moel@1
   202
      // 
moel@156
   203
      this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@156
   204
            this.fileMenuItem,
moel@156
   205
            this.viewMenuItem,
moel@156
   206
            this.optionsMenuItem,
moel@156
   207
            this.helpMenuItem});
moel@1
   208
      // 
moel@156
   209
      // fileMenuItem
moel@1
   210
      // 
moel@156
   211
      this.fileMenuItem.Index = 0;
moel@156
   212
      this.fileMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@156
   213
            this.saveReportMenuItem,
moel@156
   214
            this.sumbitReportMenuItem,
moel@156
   215
            this.MenuItem2,
moel@262
   216
            this.resetMenuItem,
moel@262
   217
            this.menuItem6,
moel@156
   218
            this.exitMenuItem});
moel@156
   219
      this.fileMenuItem.Text = "File";
moel@1
   220
      // 
moel@156
   221
      // saveReportMenuItem
moel@1
   222
      // 
moel@156
   223
      this.saveReportMenuItem.Index = 0;
moel@156
   224
      this.saveReportMenuItem.Text = "Save Report...";
moel@156
   225
      this.saveReportMenuItem.Click += new System.EventHandler(this.saveReportMenuItem_Click);
moel@1
   226
      // 
moel@156
   227
      // sumbitReportMenuItem
moel@151
   228
      // 
moel@156
   229
      this.sumbitReportMenuItem.Index = 1;
moel@156
   230
      this.sumbitReportMenuItem.Text = "Submit Report...";
moel@156
   231
      this.sumbitReportMenuItem.Click += new System.EventHandler(this.sumbitReportMenuItem_Click);
moel@151
   232
      // 
moel@156
   233
      // MenuItem2
moel@151
   234
      // 
moel@156
   235
      this.MenuItem2.Index = 2;
moel@156
   236
      this.MenuItem2.Text = "-";
moel@151
   237
      // 
moel@287
   238
      // resetMenuItem
moel@287
   239
      // 
moel@287
   240
      this.resetMenuItem.Index = 3;
moel@287
   241
      this.resetMenuItem.Text = "Reset";
moel@287
   242
      this.resetMenuItem.Click += new System.EventHandler(this.resetClick);
moel@287
   243
      // 
moel@287
   244
      // menuItem6
moel@287
   245
      // 
moel@287
   246
      this.menuItem6.Index = 4;
moel@287
   247
      this.menuItem6.Text = "-";
moel@287
   248
      // 
moel@156
   249
      // exitMenuItem
moel@1
   250
      // 
moel@262
   251
      this.exitMenuItem.Index = 5;
moel@156
   252
      this.exitMenuItem.Text = "Exit";
moel@156
   253
      this.exitMenuItem.Click += new System.EventHandler(this.exitClick);
moel@1
   254
      // 
moel@156
   255
      // viewMenuItem
moel@1
   256
      // 
moel@156
   257
      this.viewMenuItem.Index = 1;
moel@156
   258
      this.viewMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@151
   259
            this.resetMinMaxMenuItem,
moel@156
   260
            this.MenuItem3,
moel@111
   261
            this.hiddenMenuItem,
moel@111
   262
            this.plotMenuItem,
moel@176
   263
            this.gadgetMenuItem,
moel@156
   264
            this.MenuItem1,
moel@156
   265
            this.columnsMenuItem});
moel@156
   266
      this.viewMenuItem.Text = "View";
moel@156
   267
      // 
moel@156
   268
      // resetMinMaxMenuItem
moel@156
   269
      // 
moel@156
   270
      this.resetMinMaxMenuItem.Index = 0;
moel@156
   271
      this.resetMinMaxMenuItem.Text = "Reset Min/Max";
moel@156
   272
      this.resetMinMaxMenuItem.Click += new System.EventHandler(this.resetMinMaxMenuItem_Click);
moel@156
   273
      // 
moel@156
   274
      // MenuItem3
moel@156
   275
      // 
moel@156
   276
      this.MenuItem3.Index = 1;
moel@156
   277
      this.MenuItem3.Text = "-";
moel@1
   278
      // 
moel@111
   279
      // hiddenMenuItem
moel@1
   280
      // 
moel@156
   281
      this.hiddenMenuItem.Index = 2;
moel@111
   282
      this.hiddenMenuItem.Text = "Show Hidden Sensors";
moel@1
   283
      // 
moel@1
   284
      // plotMenuItem
moel@1
   285
      // 
moel@156
   286
      this.plotMenuItem.Index = 3;
moel@111
   287
      this.plotMenuItem.Text = "Show Plot";
moel@1
   288
      // 
moel@190
   289
      // gadgetMenuItem
moel@190
   290
      // 
moel@190
   291
      this.gadgetMenuItem.Index = 4;
moel@190
   292
      this.gadgetMenuItem.Text = "Show Gadget";
moel@190
   293
      // 
moel@156
   294
      // MenuItem1
moel@111
   295
      // 
moel@176
   296
      this.MenuItem1.Index = 5;
moel@156
   297
      this.MenuItem1.Text = "-";
moel@111
   298
      // 
moel@156
   299
      // columnsMenuItem
moel@111
   300
      // 
moel@176
   301
      this.columnsMenuItem.Index = 6;
moel@156
   302
      this.columnsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@111
   303
            this.valueMenuItem,
moel@111
   304
            this.minMenuItem,
moel@134
   305
            this.maxMenuItem});
moel@156
   306
      this.columnsMenuItem.Text = "Columns";
moel@111
   307
      // 
moel@111
   308
      // valueMenuItem
moel@111
   309
      // 
moel@156
   310
      this.valueMenuItem.Index = 0;
moel@111
   311
      this.valueMenuItem.Text = "Value";
moel@111
   312
      // 
moel@111
   313
      // minMenuItem
moel@111
   314
      // 
moel@156
   315
      this.minMenuItem.Index = 1;
moel@111
   316
      this.minMenuItem.Text = "Min";
moel@111
   317
      // 
moel@111
   318
      // maxMenuItem
moel@111
   319
      // 
moel@156
   320
      this.maxMenuItem.Index = 2;
moel@111
   321
      this.maxMenuItem.Text = "Max";
moel@111
   322
      // 
moel@156
   323
      // optionsMenuItem
moel@1
   324
      // 
moel@156
   325
      this.optionsMenuItem.Index = 2;
moel@156
   326
      this.optionsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@55
   327
            this.startMinMenuItem,
moel@28
   328
            this.minTrayMenuItem,
paulwerelds@198
   329
            this.minCloseMenuItem,
moel@82
   330
            this.startupMenuItem,
moel@125
   331
            this.separatorMenuItem,
moel@156
   332
            this.temperatureUnitsMenuItem,
moel@295
   333
            this.plotLocationMenuItem,
moel@156
   334
            this.MenuItem4,
moel@232
   335
            this.hddMenuItem});
moel@156
   336
      this.optionsMenuItem.Text = "Options";
moel@1
   337
      // 
moel@57
   338
      // startMinMenuItem
moel@55
   339
      // 
moel@156
   340
      this.startMinMenuItem.Index = 0;
moel@55
   341
      this.startMinMenuItem.Text = "Start Minimized";
moel@55
   342
      // 
moel@28
   343
      // minTrayMenuItem
moel@28
   344
      // 
moel@156
   345
      this.minTrayMenuItem.Index = 1;
moel@28
   346
      this.minTrayMenuItem.Text = "Minimize To Tray";
moel@82
   347
      // 
paulwerelds@198
   348
      // minCloseMenuItem
paulwerelds@198
   349
      // 
paulwerelds@198
   350
      this.minCloseMenuItem.Index = 2;
paulwerelds@198
   351
      this.minCloseMenuItem.Text = "Minimize On Close";
paulwerelds@198
   352
      // 
moel@82
   353
      // startupMenuItem
moel@82
   354
      // 
paulwerelds@198
   355
      this.startupMenuItem.Index = 3;
moel@82
   356
      this.startupMenuItem.Text = "Run On Windows Startup";
moel@28
   357
      // 
moel@133
   358
      // separatorMenuItem
moel@28
   359
      // 
paulwerelds@198
   360
      this.separatorMenuItem.Index = 4;
moel@156
   361
      this.separatorMenuItem.Text = "-";
moel@28
   362
      // 
moel@156
   363
      // temperatureUnitsMenuItem
moel@122
   364
      // 
paulwerelds@198
   365
      this.temperatureUnitsMenuItem.Index = 5;
moel@156
   366
      this.temperatureUnitsMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@299
   367
            this.celsiusMenuItem,
moel@156
   368
            this.fahrenheitMenuItem});
moel@156
   369
      this.temperatureUnitsMenuItem.Text = "Temperature Unit";
moel@122
   370
      // 
moel@299
   371
      // celsiusMenuItem
moel@122
   372
      // 
moel@299
   373
      this.celsiusMenuItem.Index = 0;
moel@299
   374
      this.celsiusMenuItem.Text = "Celsius";
moel@299
   375
      this.celsiusMenuItem.Click += new System.EventHandler(this.celsiusMenuItem_Click);
moel@122
   376
      // 
moel@156
   377
      // fahrenheitMenuItem
moel@122
   378
      // 
moel@156
   379
      this.fahrenheitMenuItem.Index = 1;
moel@156
   380
      this.fahrenheitMenuItem.Text = "Fahrenheit";
moel@156
   381
      this.fahrenheitMenuItem.Click += new System.EventHandler(this.fahrenheitMenuItem_Click);
moel@122
   382
      // 
moel@156
   383
      // MenuItem4
moel@122
   384
      // 
moel@295
   385
      this.MenuItem4.Index = 7;
moel@156
   386
      this.MenuItem4.Text = "-";
moel@122
   387
      // 
moel@1
   388
      // hddMenuItem
moel@1
   389
      // 
moel@295
   390
      this.hddMenuItem.Index = 8;
moel@122
   391
      this.hddMenuItem.Text = "Read HDD sensors";
moel@1
   392
      // 
moel@156
   393
      // helpMenuItem
moel@1
   394
      // 
moel@156
   395
      this.helpMenuItem.Index = 3;
moel@156
   396
      this.helpMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@156
   397
            this.aboutMenuItem});
moel@156
   398
      this.helpMenuItem.Text = "Help";
moel@1
   399
      // 
moel@156
   400
      // aboutMenuItem
moel@1
   401
      // 
moel@156
   402
      this.aboutMenuItem.Index = 0;
moel@156
   403
      this.aboutMenuItem.Text = "About";
moel@156
   404
      this.aboutMenuItem.Click += new System.EventHandler(this.aboutMenuItem_Click);
moel@1
   405
      // 
moel@83
   406
      // saveFileDialog
moel@83
   407
      // 
moel@83
   408
      this.saveFileDialog.DefaultExt = "txt";
moel@83
   409
      this.saveFileDialog.FileName = "OpenHardwareMonitor.Report.txt";
moel@83
   410
      this.saveFileDialog.Filter = "Text Documents|*.txt|All Files|*.*";
moel@83
   411
      this.saveFileDialog.RestoreDirectory = true;
moel@83
   412
      this.saveFileDialog.Title = "Save Report As";
moel@83
   413
      // 
moel@86
   414
      // timer
moel@86
   415
      // 
moel@86
   416
      this.timer.Interval = 1000;
moel@86
   417
      this.timer.Tick += new System.EventHandler(this.timer_Tick);
moel@86
   418
      // 
moel@158
   419
      // splitContainer
moel@158
   420
      // 
moel@158
   421
      this.splitContainer.Border3DStyle = System.Windows.Forms.Border3DStyle.Raised;
moel@158
   422
      this.splitContainer.Color = System.Drawing.SystemColors.Control;
moel@158
   423
      this.splitContainer.Cursor = System.Windows.Forms.Cursors.Default;
moel@158
   424
      this.splitContainer.Location = new System.Drawing.Point(12, 12);
moel@158
   425
      this.splitContainer.Name = "splitContainer";
moel@158
   426
      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
moel@158
   427
      // 
moel@158
   428
      // splitContainer.Panel1
moel@158
   429
      // 
moel@158
   430
      this.splitContainer.Panel1.Controls.Add(this.treeView);
moel@158
   431
      // 
moel@158
   432
      // splitContainer.Panel2
moel@158
   433
      // 
moel@158
   434
      this.splitContainer.Panel2.Controls.Add(this.plotPanel);
moel@158
   435
      this.splitContainer.Panel2.Cursor = System.Windows.Forms.Cursors.Default;
moel@158
   436
      this.splitContainer.Size = new System.Drawing.Size(386, 483);
moel@158
   437
      this.splitContainer.SplitterDistance = 354;
moel@158
   438
      this.splitContainer.SplitterWidth = 5;
moel@158
   439
      this.splitContainer.TabIndex = 3;
moel@158
   440
      // 
moel@158
   441
      // treeView
moel@158
   442
      // 
moel@158
   443
      this.treeView.BackColor = System.Drawing.SystemColors.Window;
moel@158
   444
      this.treeView.BorderStyle = System.Windows.Forms.BorderStyle.None;
moel@158
   445
      this.treeView.Columns.Add(this.sensor);
moel@158
   446
      this.treeView.Columns.Add(this.value);
moel@158
   447
      this.treeView.Columns.Add(this.min);
moel@158
   448
      this.treeView.Columns.Add(this.max);
moel@158
   449
      this.treeView.DefaultToolTipProvider = null;
moel@158
   450
      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
moel@158
   451
      this.treeView.DragDropMarkColor = System.Drawing.Color.Black;
moel@158
   452
      this.treeView.FullRowSelect = true;
moel@158
   453
      this.treeView.GridLineStyle = Aga.Controls.Tree.GridLineStyle.Horizontal;
moel@158
   454
      this.treeView.LineColor = System.Drawing.SystemColors.ControlDark;
moel@158
   455
      this.treeView.Location = new System.Drawing.Point(0, 0);
moel@158
   456
      this.treeView.Model = null;
moel@158
   457
      this.treeView.Name = "treeView";
moel@158
   458
      this.treeView.NodeControls.Add(this.nodeImage);
moel@158
   459
      this.treeView.NodeControls.Add(this.nodeCheckBox);
moel@158
   460
      this.treeView.NodeControls.Add(this.nodeTextBoxText);
moel@158
   461
      this.treeView.NodeControls.Add(this.nodeTextBoxValue);
moel@158
   462
      this.treeView.NodeControls.Add(this.nodeTextBoxMin);
moel@262
   463
      this.treeView.NodeControls.Add(this.nodeTextBoxMax);
moel@158
   464
      this.treeView.SelectedNode = null;
moel@158
   465
      this.treeView.Size = new System.Drawing.Size(386, 354);
moel@158
   466
      this.treeView.TabIndex = 0;
moel@158
   467
      this.treeView.Text = "treeView";
moel@158
   468
      this.treeView.UseColumns = true;
moel@158
   469
      this.treeView.NodeMouseDoubleClick += new System.EventHandler<Aga.Controls.Tree.TreeNodeAdvMouseEventArgs>(this.treeView_NodeMouseDoubleClick);
moel@158
   470
      this.treeView.Click += new System.EventHandler(this.treeView_Click);
moel@288
   471
      this.treeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseDown);
moel@287
   472
      this.treeView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseMove);
moel@288
   473
      this.treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseUp);
moel@158
   474
      // 
moel@158
   475
      // plotPanel
moel@158
   476
      // 
moel@158
   477
      this.plotPanel.Dock = System.Windows.Forms.DockStyle.Fill;
moel@158
   478
      this.plotPanel.Location = new System.Drawing.Point(0, 0);
moel@158
   479
      this.plotPanel.Name = "plotPanel";
moel@158
   480
      this.plotPanel.Size = new System.Drawing.Size(386, 124);
moel@158
   481
      this.plotPanel.TabIndex = 0;
moel@158
   482
      // 
moel@295
   483
      // plotLocationMenuItem
moel@295
   484
      // 
moel@295
   485
      this.plotLocationMenuItem.Index = 6;
moel@295
   486
      this.plotLocationMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
moel@295
   487
            this.plotWindowMenuItem,
moel@295
   488
            this.plotBottomMenuItem,
moel@295
   489
            this.plotRightMenuItem});
moel@295
   490
      this.plotLocationMenuItem.Text = "Plot Location";
moel@295
   491
      // 
moel@295
   492
      // plotWindowMenuItem
moel@295
   493
      // 
moel@295
   494
      this.plotWindowMenuItem.Index = 0;
moel@295
   495
      this.plotWindowMenuItem.Text = "Window";
moel@295
   496
      // 
moel@295
   497
      // plotBottomMenuItem
moel@295
   498
      // 
moel@295
   499
      this.plotBottomMenuItem.Index = 1;
moel@295
   500
      this.plotBottomMenuItem.Text = "Bottom";
moel@295
   501
      // 
moel@295
   502
      // plotRightMenuItem
moel@295
   503
      // 
moel@295
   504
      this.plotRightMenuItem.Index = 2;
moel@295
   505
      this.plotRightMenuItem.Text = "Right";
moel@295
   506
      // 
moel@1
   507
      // MainForm
moel@1
   508
      // 
moel@122
   509
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
moel@1
   510
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
moel@159
   511
      this.ClientSize = new System.Drawing.Size(418, 554);
moel@1
   512
      this.Controls.Add(this.splitContainer);
moel@158
   513
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
moel@158
   514
      this.Menu = this.mainMenu;
moel@1
   515
      this.Name = "MainForm";
moel@1
   516
      this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
moel@1
   517
      this.Text = "Open Hardware Monitor";
moel@1
   518
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
paulwerelds@214
   519
      this.Load += new System.EventHandler(this.MainForm_Load);
moel@241
   520
      this.ResizeEnd += new System.EventHandler(this.MainForm_MoveOrResize);
moel@241
   521
      this.Move += new System.EventHandler(this.MainForm_MoveOrResize);
moel@1
   522
      this.splitContainer.Panel1.ResumeLayout(false);
moel@1
   523
      this.splitContainer.Panel2.ResumeLayout(false);
moel@1
   524
      this.splitContainer.ResumeLayout(false);
moel@1
   525
      this.ResumeLayout(false);
moel@1
   526
moel@1
   527
    }
moel@1
   528
moel@1
   529
    #endregion
moel@1
   530
moel@1
   531
    private Aga.Controls.Tree.TreeViewAdv treeView;
moel@156
   532
    private System.Windows.Forms.MainMenu mainMenu;
moel@156
   533
    private System.Windows.Forms.MenuItem fileMenuItem;
moel@156
   534
    private System.Windows.Forms.MenuItem exitMenuItem;
moel@1
   535
    private Aga.Controls.Tree.TreeColumn sensor;
moel@1
   536
    private Aga.Controls.Tree.TreeColumn value;
moel@1
   537
    private Aga.Controls.Tree.TreeColumn min;
moel@1
   538
    private Aga.Controls.Tree.TreeColumn max;
moel@1
   539
    private Aga.Controls.Tree.NodeControls.NodeIcon nodeImage;
moel@1
   540
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxText;
moel@1
   541
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxValue;
moel@1
   542
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMin;
moel@1
   543
    private Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBoxMax;
moel@158
   544
    private SplitContainerAdv splitContainer;
moel@1
   545
    private PlotPanel plotPanel;
moel@156
   546
    private System.Windows.Forms.MenuItem viewMenuItem;
moel@156
   547
    private System.Windows.Forms.MenuItem plotMenuItem;
moel@1
   548
    private Aga.Controls.Tree.NodeControls.NodeCheckBox nodeCheckBox;
moel@156
   549
    private System.Windows.Forms.MenuItem helpMenuItem;
moel@156
   550
    private System.Windows.Forms.MenuItem aboutMenuItem;
moel@156
   551
    private System.Windows.Forms.MenuItem saveReportMenuItem;
moel@156
   552
    private System.Windows.Forms.MenuItem optionsMenuItem;
moel@156
   553
    private System.Windows.Forms.MenuItem hddMenuItem;
moel@156
   554
    private System.Windows.Forms.MenuItem minTrayMenuItem;
moel@156
   555
    private System.Windows.Forms.MenuItem separatorMenuItem;
moel@275
   556
    private System.Windows.Forms.ContextMenu treeContextMenu;
moel@156
   557
    private System.Windows.Forms.MenuItem startMinMenuItem;
moel@156
   558
    private System.Windows.Forms.MenuItem startupMenuItem;
moel@83
   559
    private System.Windows.Forms.SaveFileDialog saveFileDialog;
moel@86
   560
    private System.Windows.Forms.Timer timer;
moel@156
   561
    private System.Windows.Forms.MenuItem hiddenMenuItem;
moel@156
   562
    private System.Windows.Forms.MenuItem MenuItem1;
moel@156
   563
    private System.Windows.Forms.MenuItem columnsMenuItem;
moel@156
   564
    private System.Windows.Forms.MenuItem valueMenuItem;
moel@156
   565
    private System.Windows.Forms.MenuItem minMenuItem;
moel@156
   566
    private System.Windows.Forms.MenuItem maxMenuItem;
moel@156
   567
    private System.Windows.Forms.MenuItem temperatureUnitsMenuItem;
moel@156
   568
    private System.Windows.Forms.MenuItem MenuItem4;
moel@299
   569
    private System.Windows.Forms.MenuItem celsiusMenuItem;
moel@156
   570
    private System.Windows.Forms.MenuItem fahrenheitMenuItem;
moel@156
   571
    private System.Windows.Forms.MenuItem sumbitReportMenuItem;
moel@156
   572
    private System.Windows.Forms.MenuItem MenuItem2;
moel@156
   573
    private System.Windows.Forms.MenuItem resetMinMaxMenuItem;
moel@156
   574
    private System.Windows.Forms.MenuItem MenuItem3;
moel@176
   575
    private System.Windows.Forms.MenuItem gadgetMenuItem;
paulwerelds@198
   576
    private System.Windows.Forms.MenuItem minCloseMenuItem;
moel@262
   577
    private System.Windows.Forms.MenuItem resetMenuItem;
moel@262
   578
    private System.Windows.Forms.MenuItem menuItem6;
moel@295
   579
    private System.Windows.Forms.MenuItem plotLocationMenuItem;
moel@295
   580
    private System.Windows.Forms.MenuItem plotWindowMenuItem;
moel@295
   581
    private System.Windows.Forms.MenuItem plotBottomMenuItem;
moel@295
   582
    private System.Windows.Forms.MenuItem plotRightMenuItem;
moel@1
   583
  }
moel@1
   584
}
moel@1
   585