GUI/SensorSystemTray.cs
author moel.mich
Fri, 12 Feb 2010 00:36:56 +0000
changeset 40 2392f7402fb6
child 42 47385d4fc990
permissions -rw-r--r--
First system tray sensor monitor support.
     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.Text;
    41 using System.Windows.Forms;
    42 using OpenHardwareMonitor.Hardware;
    43 using OpenHardwareMonitor.Utilities;
    44 
    45 namespace OpenHardwareMonitor.GUI {
    46   public class SensorSystemTray : IDisposable {
    47     private Computer computer;
    48     private List<SensorNotifyIcon> list = new List<SensorNotifyIcon>();
    49 
    50     public SensorSystemTray(Computer computer) {
    51       this.computer = computer;
    52       computer.HardwareAdded += new HardwareEventHandler(HardwareAdded);
    53       computer.HardwareRemoved += new HardwareEventHandler(HardwareRemoved);
    54     }
    55 
    56     private void HardwareRemoved(IHardware hardware) {
    57       hardware.SensorAdded -= new SensorEventHandler(SensorAdded);
    58       hardware.SensorRemoved -= new SensorEventHandler(SensorRemoved);
    59       foreach (ISensor sensor in hardware.Sensors) 
    60         SensorRemoved(sensor);
    61     }
    62    
    63     private void HardwareAdded(IHardware hardware) {
    64       foreach (ISensor sensor in hardware.Sensors)
    65         SensorAdded(sensor);
    66       hardware.SensorAdded += new SensorEventHandler(SensorAdded);
    67       hardware.SensorRemoved += new SensorEventHandler(SensorRemoved);
    68     }
    69 
    70     private void SensorAdded(ISensor sensor) {
    71       if (Config.Get(sensor.Identifier + "/tray", false)) 
    72         Add(sensor);   
    73     }
    74 
    75     private void SensorRemoved(ISensor sensor) {
    76       if (Contains(sensor)) {        
    77         Remove(sensor);
    78         Config.Set(sensor.Identifier + "/tray", true);
    79       }
    80     }
    81 
    82     public void Dispose() {
    83       foreach (SensorNotifyIcon icon in list)
    84         icon.Dispose();
    85     }
    86 
    87     public void Redraw() {
    88       foreach (SensorNotifyIcon icon in list)
    89         icon.Update();
    90     }
    91 
    92     public bool Contains(ISensor sensor) {
    93       foreach (SensorNotifyIcon icon in list)
    94         if (icon.Sensor == sensor)
    95           return true;
    96       return false;
    97     }
    98 
    99     public void Add(ISensor sensor) {
   100       if (Contains(sensor)) {
   101         return;
   102       } else {
   103         list.Add(new SensorNotifyIcon(this, sensor));
   104         Config.Set(sensor.Identifier + "/tray", true);
   105       }
   106     }
   107 
   108     public void Remove(ISensor sensor) {
   109       Config.Remove(sensor.Identifier + "/tray");
   110       SensorNotifyIcon instance = null;
   111       foreach (SensorNotifyIcon icon in list)
   112         if (icon.Sensor == sensor)
   113           instance = icon;
   114       if (instance != null) {
   115         list.Remove(instance);
   116         instance.Dispose();
   117       }
   118     }
   119 
   120   }
   121 }