Imported Upstream version 2.2.0
[deb_libcec.git] / src / LibCecTray / controller / applications / internal / XBMCControllerUI.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;
34using System.Windows.Forms;
35using LibCECTray.Properties;
36
37namespace 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 _controller.PausePlaybackOnDeactivate.ReplaceControls(this, Controls, cbPauseOnDeactivate);
59
60 SetEnabled(false);
61 }
62
63 public override sealed string Text
64 {
65 get { return base.Text; }
66 set { base.Text = value; }
67 }
68
69 public override sealed void SetEnabled(bool val)
70 {
71 SetControlEnabled(bStartApplication, !_controller.IsRunning() && !_controller.SuppressApplicationStart && val);
72 SetControlEnabled(_controller.StartFullScreen.ValueControl, val);
73 SetControlEnabled(_controller.StandbyScreensaver.ValueControl, val);
74 SetControlEnabled(_controller.UseTVLanguage.ValueControl, val);
75 SetControlEnabled(_controller.ActivateSource.ValueControl, val);
76 SetControlEnabled(_controller.PowerOffOnStandby.ValueControl, val);
77 SetControlEnabled(_controller.SendInactiveSource.ValueControl, val);
78 SetControlEnabled(bSaveConfig, val);
79 SetControlEnabled(bLoadConfig, val);
80 SetControlEnabled(bConfigure, _controller.CanConfigureProcess && val);
81 SetControlEnabled(_controller.PausePlaybackOnDeactivate.ValueControl, val);
82 }
83
84 public override void SetStartButtonEnabled(bool val)
85 {
86 SetControlEnabled(bStartApplication, !_controller.IsRunning() && !_controller.SuppressApplicationStart && val);
87 }
88
89 private void BConfigureClick(object sender, EventArgs e)
90 {
91 bConfigure.Enabled = false;
92 ConfigureApplication appConfig = new ConfigureApplication(_controller);
93 appConfig.Disposed += delegate { bConfigure.Enabled = true; };
94 DisplayDialog(appConfig, false);
95 }
96
97 private readonly XBMCController _controller;
98
99 private void BStartApplicationClick(object sender, EventArgs e)
100 {
101 if (MessageBox.Show(Resources.start_xbmc_exit_tray, Resources.title_are_you_sure, MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes)
102 {
103 bStartApplication.Enabled = false;
104 _controller.Start(true);
105 }
106 }
107
108 private void BLoadConfigClick(object sender, EventArgs e)
109 {
110 _controller.LoadXMLConfiguration();
111 }
112
113 private void BSaveConfigClick(object sender, EventArgs e)
114 {
115 _controller.SaveXMLConfiguration();
116 }
117 }
118}