GUI/UnitManager.cs
author moel.mich
Sun, 08 Aug 2010 13:57:26 +0000
changeset 165 813d8bc3192f
parent 122 3ef997c53b50
child 166 fa9dfbfc4145
permissions -rw-r--r--
Refactored the hardware monitoring code into a library (Issue 101).
moel@122
     1
/*
moel@122
     2
  
moel@122
     3
  Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@122
     4
moel@122
     5
  The contents of this file are subject to the Mozilla Public License Version
moel@122
     6
  1.1 (the "License"); you may not use this file except in compliance with
moel@122
     7
  the License. You may obtain a copy of the License at
moel@122
     8
 
moel@122
     9
  http://www.mozilla.org/MPL/
moel@122
    10
moel@122
    11
  Software distributed under the License is distributed on an "AS IS" basis,
moel@122
    12
  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@122
    13
  for the specific language governing rights and limitations under the License.
moel@122
    14
moel@122
    15
  The Original Code is the Open Hardware Monitor code.
moel@122
    16
moel@122
    17
  The Initial Developer of the Original Code is 
moel@122
    18
  Michael Möller <m.moeller@gmx.ch>.
moel@122
    19
  Portions created by the Initial Developer are Copyright (C) 2009-2010
moel@122
    20
  the Initial Developer. All Rights Reserved.
moel@122
    21
moel@122
    22
  Contributor(s):
moel@122
    23
moel@122
    24
  Alternatively, the contents of this file may be used under the terms of
moel@122
    25
  either the GNU General Public License Version 2 or later (the "GPL"), or
moel@122
    26
  the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@122
    27
  in which case the provisions of the GPL or the LGPL are applicable instead
moel@122
    28
  of those above. If you wish to allow use of your version of this file only
moel@122
    29
  under the terms of either the GPL or the LGPL, and not to allow others to
moel@122
    30
  use your version of this file under the terms of the MPL, indicate your
moel@122
    31
  decision by deleting the provisions above and replace them with the notice
moel@122
    32
  and other provisions required by the GPL or the LGPL. If you do not delete
moel@122
    33
  the provisions above, a recipient may use your version of this file under
moel@122
    34
  the terms of any one of the MPL, the GPL or the LGPL.
moel@122
    35
 
moel@122
    36
*/
moel@122
    37
moel@122
    38
using System;
moel@122
    39
using System.Collections.Generic;
moel@122
    40
moel@122
    41
namespace OpenHardwareMonitor.GUI {
moel@122
    42
moel@122
    43
  public enum TemperatureUnit {
moel@122
    44
    Celcius = 0,
moel@122
    45
    Fahrenheit = 1
moel@122
    46
  }
moel@122
    47
moel@122
    48
  public class UnitManager {
moel@122
    49
moel@165
    50
    private PersistentSettings settings;
moel@165
    51
    private TemperatureUnit temperatureUnit;
moel@122
    52
moel@165
    53
    public UnitManager(PersistentSettings settings) {
moel@165
    54
      this.settings = settings;
moel@165
    55
      this.temperatureUnit = (TemperatureUnit)settings.Get("TemperatureUnit",
moel@122
    56
        (int)TemperatureUnit.Celcius);
moel@122
    57
    }
moel@122
    58
moel@165
    59
    public TemperatureUnit TemperatureUnit {
moel@122
    60
      get { return temperatureUnit; }
moel@122
    61
      set {
moel@165
    62
        this.temperatureUnit = value;
moel@165
    63
        this.settings.Set("TemperatureUnit", (int)temperatureUnit);
moel@122
    64
      }
moel@122
    65
    }
moel@122
    66
  }
moel@122
    67
}