Commit | Line | Data |
---|---|---|
f017f3c4 LOK |
1 | /* |
2 | * This file is part of the libCEC(R) library. | |
3 | * | |
16f47961 | 4 | * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved. |
f017f3c4 LOK |
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 | ||
33 | using System.Windows.Forms; | |
34 | using LibCECTray.ui; | |
35 | ||
36 | namespace LibCECTray.settings | |
37 | { | |
38 | /// <summary> | |
39 | /// A setting of type bool that can be persisted in the registry | |
40 | /// </summary> | |
41 | class CECSettingBool : CECSettingNumeric | |
42 | { | |
43 | public CECSettingBool(string keyName, string friendlyName, bool defaultValue, SettingChangedHandler changedHandler) : | |
44 | base(CECSettingType.Bool, keyName, friendlyName, defaultValue ? 1 : 0, changedHandler) | |
45 | { | |
46 | } | |
47 | ||
48 | public new bool Value | |
49 | { | |
50 | get { return base.Value == 1; } | |
51 | set | |
52 | { | |
53 | base.Value = value ? 1 : 0; | |
54 | CheckBox control = BaseValueControl as CheckBox; | |
55 | if (control != null && Form != null) | |
56 | Form.SetCheckboxChecked(control, value); | |
57 | } | |
58 | } | |
59 | ||
60 | public new bool DefaultValue | |
61 | { | |
62 | get { return base.DefaultValue == 1; } | |
63 | set { base.DefaultValue = value ? 1 : 0; } | |
64 | } | |
65 | ||
66 | public new CheckBox ValueControl | |
67 | { | |
68 | get | |
69 | { | |
70 | if (BaseValueControl == null) | |
71 | { | |
72 | CheckBox control = new CheckBox | |
73 | { | |
74 | AutoSize = true, | |
75 | Size = new System.Drawing.Size(150, 17), | |
76 | Text = Label.Text, | |
77 | UseVisualStyleBackColor = true, | |
78 | Enabled = InitialEnabledValue, | |
79 | Checked = Value | |
80 | }; | |
81 | control.CheckedChanged += delegate { Value = control.Checked; }; | |
82 | BaseValueControl = control; | |
83 | } | |
84 | return BaseValueControl as CheckBox; | |
85 | } | |
86 | } | |
87 | ||
88 | public void ReplaceControls(IAsyncControls form, Control.ControlCollection controls, Control labelControl, CheckBox valueControl) | |
89 | { | |
90 | Form = form; | |
91 | ReplaceControl(controls, labelControl, Label); | |
92 | ReplaceControl(controls, valueControl, ValueControl); | |
93 | } | |
94 | ||
95 | public void ReplaceControls(IAsyncControls form, Control.ControlCollection controls, CheckBox valueControl) | |
96 | { | |
97 | Form = form; | |
98 | ReplaceControl(controls, valueControl, ValueControl); | |
99 | } | |
100 | } | |
101 | } |