3 namespace CecConfigGui.actions
5 class SendImageViewOn : UpdateProcess
7 public SendImageViewOn(ref LibCecSharp lib, CecLogicalAddress address)
13 public override void Process()
15 SendEvent(UpdateEventType.StatusText, "Sending the 'power on' command to " + Lib.ToString(Address) + "...");
16 SendEvent(UpdateEventType.ProgressBar, 50);
18 bool bResult = Lib.PowerOnDevices(Address);
19 SendEvent(UpdateEventType.StatusText, bResult ? "Command sent successfully." : "The 'image view on' command was not acked.");
20 SendEvent(UpdateEventType.ProgressBar, 100);
23 private LibCecSharp Lib;
24 private CecLogicalAddress Address;