3 namespace CecConfigGui.actions
5 class UpdateDeviceInfo : ShowDeviceInfo
7 public UpdateDeviceInfo(CecConfigGUI gui, ref LibCecSharp lib, DeviceInformation dialog) :
8 base(gui, ref lib, dialog.Address)
13 public override void ShowDialog(CecConfigGUI gui, CecLogicalAddress address, ref LibCecSharp lib,
14 bool devicePresent, CecVendorId vendor, bool isActiveSource, ushort physicalAddress,
15 CecVersion version, CecPowerStatus power, string osdName, string menuLanguage)
17 Dialog.Update(devicePresent, vendor, isActiveSource, physicalAddress, version, power, osdName, menuLanguage);
20 private DeviceInformation Dialog;