GUI/HardwareNode.cs
author moel.mich
Sun, 14 Feb 2010 20:16:30 +0000
changeset 44 c150de283ca0
parent 1 361e324a0ed4
child 57 142907c75be4
permissions -rw-r--r--
Added core and bus clock support for Intel CPUs (Core 2).
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     5   The contents of this file are subject to the Mozilla Public License Version
     6   1.1 (the "License"); you may not use this file except in compliance with
     7   the License. You may obtain a copy of the License at
     8  
     9   http://www.mozilla.org/MPL/
    10 
    11   Software distributed under the License is distributed on an "AS IS" basis,
    12   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    13   for the specific language governing rights and limitations under the License.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    17   The Initial Developer of the Original Code is 
    18   Michael Möller <m.moeller@gmx.ch>.
    19   Portions created by the Initial Developer are Copyright (C) 2009-2010
    20   the Initial Developer. All Rights Reserved.
    21 
    22   Contributor(s):
    23 
    24   Alternatively, the contents of this file may be used under the terms of
    25   either the GNU General Public License Version 2 or later (the "GPL"), or
    26   the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    27   in which case the provisions of the GPL or the LGPL are applicable instead
    28   of those above. If you wish to allow use of your version of this file only
    29   under the terms of either the GPL or the LGPL, and not to allow others to
    30   use your version of this file under the terms of the MPL, indicate your
    31   decision by deleting the provisions above and replace them with the notice
    32   and other provisions required by the GPL or the LGPL. If you do not delete
    33   the provisions above, a recipient may use your version of this file under
    34   the terms of any one of the MPL, the GPL or the LGPL.
    35  
    36 */
    37 
    38 using System;
    39 using System.Collections.Generic;
    40 using System.Drawing;
    41 using Aga.Controls.Tree;
    42 using OpenHardwareMonitor.Hardware;
    43 
    44 namespace OpenHardwareMonitor.GUI {
    45   public class HardwareNode : Node {
    46 
    47     private IHardware hardware;
    48 
    49     private List<TypeNode> typeNodes = new List<TypeNode>();
    50 
    51     public HardwareNode(IHardware hardware) : base(hardware.Name) {
    52       
    53       this.hardware = hardware;
    54       this.Image = hardware.Icon;
    55 
    56       typeNodes.Add(new TypeNode(SensorType.Voltage));
    57       typeNodes.Add(new TypeNode(SensorType.Clock));      
    58       typeNodes.Add(new TypeNode(SensorType.Temperature));
    59       typeNodes.Add(new TypeNode(SensorType.Load));
    60       typeNodes.Add(new TypeNode(SensorType.Fan));
    61       
    62       foreach (ISensor sensor in hardware.Sensors)
    63         SensorAdded(sensor);
    64 
    65       hardware.SensorAdded +=new SensorEventHandler(SensorAdded);
    66       hardware.SensorRemoved += new SensorEventHandler(SensorRemoved);
    67     }
    68 
    69     public IHardware Hardware {
    70       get { return hardware; }
    71     }
    72 
    73     public void SetVisible(SensorType sensorType, bool visible) {
    74       foreach (TypeNode node in typeNodes)
    75         if (node.SensorType == sensorType) {
    76           node.IsVisible = visible;
    77           UpdateNode(node);
    78         }
    79     }
    80 
    81     private void UpdateNode(TypeNode node) {      
    82       if (node.IsVisible && node.Nodes.Count > 0) {
    83         if (!Nodes.Contains(node)) {
    84           int i = 0;
    85           while (i < Nodes.Count &&
    86             ((TypeNode)Nodes[i]).SensorType < node.SensorType)
    87             i++;
    88           Nodes.Insert(i, node);  
    89         }
    90       } else {
    91         if (Nodes.Contains(node))
    92           Nodes.Remove(node);
    93       }
    94     }
    95 
    96     private void SensorRemoved(ISensor sensor) {
    97       foreach (TypeNode node in typeNodes)
    98         if (node.SensorType == sensor.SensorType) {
    99           node.Nodes.Remove(new SensorNode(sensor));
   100           UpdateNode(node);
   101         }
   102     }
   103 
   104     private void InsertSorted(Node node, ISensor sensor) {
   105       int i = 0;
   106       while (i < node.Nodes.Count &&
   107         ((SensorNode)node.Nodes[i]).Sensor.Index < sensor.Index)
   108         i++;
   109       node.Nodes.Insert(i, new SensorNode(sensor));        
   110     }
   111 
   112     private void SensorAdded(ISensor sensor) {
   113       foreach (TypeNode node in typeNodes)
   114         if (node.SensorType == sensor.SensorType) {
   115           InsertSorted(node, sensor);
   116           UpdateNode(node);
   117         }
   118     }
   119   }
   120 }