2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
33 using System.Collections.Generic;
34 using System.Windows.Forms;
36 using LibCECTray.Properties;
38 namespace LibCECTray.settings
41 /// A setting of type CecVendorId that can be persisted in the registry
43 class CECSettingVendorId : CECSettingNumeric
45 public CECSettingVendorId(string keyName, string friendlyName, CecVendorId defaultValue, SettingChangedHandler changedHandler) :
46 base(CECSettingType.VendorId, keyName, friendlyName, (int)defaultValue, changedHandler, OnFormat, new List<int>
48 (int) CecVendorId.Unknown,
49 (int) CecVendorId.Akai,
50 (int) CecVendorId.Benq,
51 (int) CecVendorId.Daewoo,
52 (int) CecVendorId.Grundig,
54 (int) CecVendorId.Medion,
55 (int) CecVendorId.Onkyo,
56 (int) CecVendorId.Panasonic,
57 (int) CecVendorId.Philips,
58 (int) CecVendorId.Pioneer,
59 (int) CecVendorId.Samsung,
60 (int) CecVendorId.Sharp,
61 (int) CecVendorId.Sony,
62 (int) CecVendorId.Toshiba,
63 (int) CecVendorId.Vizio,
64 (int) CecVendorId.Yamaha
69 private static void OnFormat(object sender, ListControlConvertEventArgs listControlConvertEventArgs)
72 if (int.TryParse((string)listControlConvertEventArgs.Value, out iValue))
73 listControlConvertEventArgs.Value = FormatValue(iValue);
76 private static string FormatValue(int value)
78 switch ((CecVendorId)value)
80 case CecVendorId.Akai:
82 case CecVendorId.Benq:
84 case CecVendorId.Daewoo:
86 case CecVendorId.Grundig:
90 case CecVendorId.Medion:
92 case CecVendorId.Onkyo:
94 case CecVendorId.Panasonic:
96 case CecVendorId.Philips:
98 case CecVendorId.Pioneer:
100 case CecVendorId.Samsung:
102 case CecVendorId.Sharp:
104 case CecVendorId.Sony:
106 case CecVendorId.Toshiba:
108 case CecVendorId.Vizio:
110 case CecVendorId.Yamaha:
113 return Resources.autodetect;
117 public new CecVendorId Value
119 get { return base.Value >= 0 && base.Value <= 0xFFFFFF ? (CecVendorId)base.Value : CecVendorId.Unknown; }
120 set { base.Value = (int)value; }
123 public new CecVendorId DefaultValue
125 get { return base.DefaultValue >= 0 && base.DefaultValue <= 0xFFFFFF ? (CecVendorId)base.DefaultValue : CecVendorId.Unknown; }
126 set { base.DefaultValue = (int)value; }