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/
34 using System.ComponentModel;
36 using System.Windows.Forms;
39 namespace LibCECTray.controller.applications
41 partial class CecButtonConfigUI : Form
43 public CecButtonConfigUI(CecButtonConfigItem button)
46 InitializeComponent();
48 var keys = Enum.GetValues(typeof (WindowsAPI.VirtualKeyCode));
49 string[] friendlyNames = new string[keys.Length];
50 for (int i = 0; i < keys.Length; i++)
51 friendlyNames[i] = WindowsAPI.GetVirtualKeyName((WindowsAPI.VirtualKeyCode)keys.GetValue(i));
52 Array.Sort(friendlyNames);
53 foreach (var item in friendlyNames)
54 cbAddKey.Items.Add(item);
56 button.SettingChanged += delegate
58 _lastSelectedText = 0;
59 tbAction.Text = button.Value.AsFriendlyString().Trim();
62 lButtonName.Text = button.Label.Text;
63 tbAction.Text = button.Value.AsFriendlyString().Trim();
66 cbAddAction.Items.Add(ApplicationInput.FriendlyActionName(ActionType.CloseControllerApplication));
67 cbAddAction.Items.Add(ApplicationInput.FriendlyActionName(ActionType.StartApplication));
69 // take the icon of the main window
70 ComponentResourceManager resources = new ComponentResourceManager(typeof(CECTray));
71 Icon = resources.GetObject("$this.Icon") as Icon;
74 private void ButtonControlCheckSelection(object sender, MouseEventArgs e)
76 ButtonControlCheckSelection();
79 private void ButtonControlCheckSelection(object sender, KeyEventArgs e)
81 ButtonControlCheckSelection();
84 private void ButtonControlCheckSelection()
86 if (tbAction.SelectionStart != _lastSelectedText)
88 _lastSelectedText = SelectionChanged(tbAction.SelectionStart) ? 0 : tbAction.SelectionStart;
92 private bool SelectionChanged(int selection)
94 _button.Value = _button.Value.RemoveItem(selection);
98 public CecButtonConfigUI()
100 InitializeComponent();
103 private void BCloseClick(object sender, EventArgs e)
108 private void BDefaultClick(object sender, EventArgs e)
110 _button.Value = _button.DefaultValue;
113 private void BClearClick(object sender, EventArgs e)
115 _button.Value = null;
118 private void BAddKeyClick(object sender, EventArgs e)
120 foreach (var item in Enum.GetValues(typeof(WindowsAPI.VirtualKeyCode)))
122 if (cbAddKey.Text.Equals(WindowsAPI.GetVirtualKeyName((WindowsAPI.VirtualKeyCode)item)))
124 _button.Value = _button.Value.AddKey((WindowsAPI.VirtualKeyCode) item);
130 private void BAddActionClick(object sender, EventArgs e)
132 foreach (var item in Enum.GetValues(typeof(ActionType)))
134 if (cbAddAction.Text.ToUpper().Equals(ApplicationInput.FriendlyActionName((ActionType)item).ToUpper()))
136 _button.Value = _button.Value.AddAction((ActionType)item);
142 private int _lastSelectedText;
143 private readonly CecButtonConfigItem _button;