2 using System.Collections.Generic;
6 namespace CecConfigGui.actions
8 class UpdateDeviceInfo : ShowDeviceInfo
10 public UpdateDeviceInfo(CecConfigGUI gui, ref LibCecSharp lib, DeviceInformation dialog) :
11 base(gui, ref lib, dialog.Address)
16 public override void ShowDialog(CecConfigGUI gui, CecLogicalAddress address, ref LibCecSharp lib,
17 bool devicePresent, CecVendorId vendor, bool isActiveSource, ushort physicalAddress,
18 CecVersion version, CecPowerStatus power, string osdName, string menuLanguage)
20 Dialog.Update(devicePresent, vendor, isActiveSource, physicalAddress, version, power, osdName, menuLanguage);
23 private DeviceInformation Dialog;