GUI/HardwareNode.cs
author moel.mich
Fri, 14 May 2010 22:30:06 +0000
changeset 111 2b8a8cf92c3a
parent 57 142907c75be4
child 118 407f98562c3b
permissions -rw-r--r--
Added a user interface to configure certain sensors as hidden. This fixed Issue 53.
     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 OpenHardwareMonitor.Hardware;
    42 
    43 namespace OpenHardwareMonitor.GUI {
    44   public class HardwareNode : Node {
    45 
    46     private IHardware hardware;
    47 
    48     private List<TypeNode> typeNodes = new List<TypeNode>();
    49 
    50     public HardwareNode(IHardware hardware) : base(hardware.Name) {
    51       
    52       this.hardware = hardware;
    53       this.Image = hardware.Icon;
    54 
    55       typeNodes.Add(new TypeNode(SensorType.Voltage));
    56       typeNodes.Add(new TypeNode(SensorType.Clock));      
    57       typeNodes.Add(new TypeNode(SensorType.Temperature));
    58       typeNodes.Add(new TypeNode(SensorType.Load));
    59       typeNodes.Add(new TypeNode(SensorType.Fan));
    60       typeNodes.Add(new TypeNode(SensorType.Flow));
    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     private void UpdateNode(TypeNode node) {  
    74       if (node.Nodes.Count > 0) {
    75         if (!Nodes.Contains(node)) {
    76           int i = 0;
    77           while (i < Nodes.Count &&
    78             ((TypeNode)Nodes[i]).SensorType < node.SensorType)
    79             i++;
    80           Nodes.Insert(i, node);  
    81         }
    82       } else {
    83         if (Nodes.Contains(node))
    84           Nodes.Remove(node);
    85       }
    86     }
    87 
    88     private void SensorRemoved(ISensor sensor) {
    89       foreach (TypeNode typeNode in typeNodes)
    90         if (typeNode.SensorType == sensor.SensorType) { 
    91           SensorNode sensorNode = null;
    92           foreach (Node node in typeNode.Nodes) {
    93             SensorNode n = node as SensorNode;
    94             if (n != null && n.Sensor == sensor)
    95               sensorNode = n;
    96           }
    97           typeNode.Nodes.Remove(sensorNode);
    98           UpdateNode(typeNode);
    99         }
   100     }
   101 
   102     private void InsertSorted(Node node, ISensor sensor) {
   103       int i = 0;
   104       while (i < node.Nodes.Count &&
   105         ((SensorNode)node.Nodes[i]).Sensor.Index < sensor.Index)
   106         i++;
   107       SensorNode sensorNode = new SensorNode(sensor);
   108       node.Nodes.Insert(i, sensorNode);
   109     }
   110 
   111     private void SensorAdded(ISensor sensor) {
   112       foreach (TypeNode typeNode in typeNodes)
   113         if (typeNode.SensorType == sensor.SensorType) {
   114           InsertSorted(typeNode, sensor);
   115           UpdateNode(typeNode);          
   116         }
   117     }    
   118   }
   119 }