replaced cec-config-gui by libCEC tray
[deb_libcec.git] / src / LibCecTray / controller / applications / internal / XBMCControllerUI.cs
1 /*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2012 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
33 using System;
34 using System.Windows.Forms;
35 using LibCECTray.Properties;
36
37 namespace LibCECTray.controller.applications.@internal
38 {
39 internal partial class XBMCControllerUI : ControllerTabPage
40 {
41 public XBMCControllerUI()
42 {
43 InitializeComponent();
44 }
45
46 public XBMCControllerUI(XBMCController controller)
47 {
48 _controller = controller;
49 InitializeComponent();
50 Name = controller.UiName;
51 Text = controller.UiName;
52
53 _controller.StartFullScreen.ReplaceControls(this, Controls, cbStartFullScreen);
54 _controller.UseTVLanguage.ReplaceControls(this, Controls, cbUseTvLanguage);
55 _controller.StandbyScreensaver.ReplaceControls(this, Controls, cbStandbyScreensaver);
56 _controller.PowerOffOnStandby.ReplaceControls(this, Controls, cbStandbyTvStandby);
57 _controller.SendInactiveSource.ReplaceControls(this, Controls, cbInactiveSource);
58
59 SetEnabled(false);
60 }
61
62 public override sealed string Text
63 {
64 get { return base.Text; }
65 set { base.Text = value; }
66 }
67
68 public override sealed void SetEnabled(bool val)
69 {
70 SetControlEnabled(bStartApplication, !_controller.IsRunning() && !_controller.SuppressApplicationStart && val);
71 SetControlEnabled(_controller.StartFullScreen.ValueControl, val);
72 SetControlEnabled(_controller.StandbyScreensaver.ValueControl, val);
73 SetControlEnabled(_controller.UseTVLanguage.ValueControl, val);
74 SetControlEnabled(_controller.ActivateSource.ValueControl, val);
75 SetControlEnabled(_controller.PowerOffOnStandby.ValueControl, val);
76 SetControlEnabled(_controller.SendInactiveSource.ValueControl, val);
77 SetControlEnabled(bSaveConfig, val);
78 SetControlEnabled(bLoadConfig, val);
79 SetControlEnabled(bConfigure, val);
80 }
81
82 public override void SetStartButtonEnabled(bool val)
83 {
84 SetControlEnabled(bStartApplication, !_controller.IsRunning() && !_controller.SuppressApplicationStart && val);
85 }
86
87 private void BConfigureClick(object sender, EventArgs e)
88 {
89 bConfigure.Enabled = false;
90 ConfigureApplication appConfig = new ConfigureApplication(_controller);
91 appConfig.Disposed += delegate { bConfigure.Enabled = true; };
92 DisplayDialog(appConfig, false);
93 }
94
95 private readonly XBMCController _controller;
96
97 private void BStartApplicationClick(object sender, EventArgs e)
98 {
99 if (MessageBox.Show(Resources.start_xbmc_exit_tray, Resources.title_are_you_sure, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes)
100 {
101 bStartApplication.Enabled = false;
102 _controller.Start(true);
103 }
104 }
105
106 private void BLoadConfigClick(object sender, EventArgs e)
107 {
108 _controller.LoadXMLConfiguration();
109 }
110
111 private void BSaveConfigClick(object sender, EventArgs e)
112 {
113 _controller.SaveXMLConfiguration();
114 }
115 }
116 }