LibCecSharp: more cosmetics
[deb_libcec.git] / src / cec-config-gui / actions / SendStandby.cs
1 using CecSharp;
2
3 namespace CecConfigGui.actions
4 {
5 class SendStandby : UpdateProcess
6 {
7 public SendStandby(ref LibCecSharp lib, CecLogicalAddress address)
8 {
9 Lib = lib;
10 Address = address;
11 }
12
13 public override void Process()
14 {
15 SendEvent(UpdateEventType.StatusText, "Sending the 'standby' command to " + Lib.ToString(Address) + "...");
16 SendEvent(UpdateEventType.ProgressBar, 50);
17
18 bool bResult = Lib.StandbyDevices(Address);
19 SendEvent(UpdateEventType.StatusText, bResult ? "Command sent successfully." : "The 'standby' command was not acked.");
20 SendEvent(UpdateEventType.ProgressBar, 100);
21 }
22
23 private LibCecSharp Lib;
24 private CecLogicalAddress Address;
25 }
26 }