Imported Upstream version 2.2.0
[deb_libcec.git] / src / LibCecTray / settings / CECSettingVendorId.cs
CommitLineData
cbbe90dd
JB
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
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.
13 *
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.
18 *
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.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
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/
31 */
32
33using System.Collections.Generic;
34using System.Windows.Forms;
35using CecSharp;
36using LibCECTray.Properties;
37
38namespace LibCECTray.settings
39{
40 /// <summary>
41 /// A setting of type CecVendorId that can be persisted in the registry
42 /// </summary>
43 class CECSettingVendorId : CECSettingNumeric
44 {
45 public CECSettingVendorId(string keyName, string friendlyName, CecVendorId defaultValue, SettingChangedHandler changedHandler) :
46 base(CECSettingType.VendorId, keyName, friendlyName, (int)defaultValue, changedHandler, OnFormat, new List<int>
47 {
48 (int) CecVendorId.Unknown,
49 (int) CecVendorId.Akai,
50 (int) CecVendorId.Benq,
51 (int) CecVendorId.Daewoo,
52 (int) CecVendorId.Grundig,
53 (int) CecVendorId.LG,
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
65 })
66 {
67 }
68
69 private static void OnFormat(object sender, ListControlConvertEventArgs listControlConvertEventArgs)
70 {
71 int iValue;
72 if (int.TryParse((string)listControlConvertEventArgs.Value, out iValue))
73 listControlConvertEventArgs.Value = FormatValue(iValue);
74 }
75
76 private static string FormatValue(int value)
77 {
78 switch ((CecVendorId)value)
79 {
80 case CecVendorId.Akai:
81 return "Akai";
82 case CecVendorId.Benq:
83 return "Benq";
84 case CecVendorId.Daewoo:
85 return "Daewoo";
86 case CecVendorId.Grundig:
87 return "Grundig";
88 case CecVendorId.LG:
89 return "LG";
90 case CecVendorId.Medion:
91 return "Medion";
92 case CecVendorId.Onkyo:
93 return "Onkyo";
94 case CecVendorId.Panasonic:
95 return "Panasonic";
96 case CecVendorId.Philips:
97 return "Philips";
98 case CecVendorId.Pioneer:
99 return "Pioneer";
100 case CecVendorId.Samsung:
101 return "Samsung";
102 case CecVendorId.Sharp:
103 return "Sharp";
104 case CecVendorId.Sony:
105 return "Sony";
106 case CecVendorId.Toshiba:
107 return "Toshiba";
108 case CecVendorId.Vizio:
109 return "Vizio";
110 case CecVendorId.Yamaha:
111 return "Yamaha";
112 default:
113 return Resources.autodetect;
114 }
115 }
116
117 public new CecVendorId Value
118 {
119 get { return base.Value >= 0 && base.Value <= 0xFFFFFF ? (CecVendorId)base.Value : CecVendorId.Unknown; }
120 set { base.Value = (int)value; }
121 }
122
123 public new CecVendorId DefaultValue
124 {
125 get { return base.DefaultValue >= 0 && base.DefaultValue <= 0xFFFFFF ? (CecVendorId)base.DefaultValue : CecVendorId.Unknown; }
126 set { base.DefaultValue = (int)value; }
127 }
128 }
129
130}