GUI/UserRadioGroup.cs
author moel.mich
Sun, 19 Jun 2011 12:41:18 +0000
changeset 298 96263190189a
parent 295 a1c06df9928d
child 344 3145aadca3d2
permissions -rw-r--r--
Added support for saving and restoring the sensor history for the last 24h. The sensor history is now saved in a reduced format (duplicate values are removed, gaps are marked with a NAN sensor value.
     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) 2011
    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.Windows.Forms;
    41 using OpenHardwareMonitor.Utilities;
    42 
    43 namespace OpenHardwareMonitor.GUI {
    44   public class UserRadioGroup {
    45     private string name;
    46     private int value;
    47     private MenuItem[] menuItems;
    48     private event EventHandler changed;
    49     private PersistentSettings settings;
    50 
    51     public UserRadioGroup(string name, int value,
    52       MenuItem[] menuItems, PersistentSettings settings) {
    53       this.settings = settings;
    54       this.name = name;
    55       if (name != null)
    56         this.value = settings.GetValue(name, value);
    57       else
    58         this.value = value;
    59       this.menuItems = menuItems;
    60       this.value = Math.Max(Math.Min(this.value, menuItems.Length - 1), 0);
    61 
    62       for (int i = 0; i < this.menuItems.Length; i++) {
    63         this.menuItems[i].Checked = i == this.value;
    64         int index = i;
    65         this.menuItems[i].Click += delegate(object sender, EventArgs e) {
    66           this.Value = index;
    67         };
    68       }      
    69     }
    70 
    71     public int Value {
    72       get { return value; }
    73       set {
    74         if (this.value != value) {
    75           this.value = value;
    76           if (this.name != null)
    77             settings.SetValue(name, value);
    78           for (int i = 0; i < this.menuItems.Length; i++) 
    79             this.menuItems[i].Checked = i == value;
    80           if (changed != null)
    81             changed(this, null);
    82         }
    83       }
    84     }
    85 
    86     public event EventHandler Changed {
    87       add {
    88         changed += value;
    89         if (changed != null)
    90           changed(this, null);
    91       }
    92       remove {
    93         changed -= value;
    94       }
    95     }
    96   }
    97 }