diff --git a/.gitignore b/.gitignore index 36d84cbc..c9469ffd 100644 --- a/.gitignore +++ b/.gitignore @@ -391,3 +391,4 @@ FodyWeavers.xsd essentials-framework/Essentials Interfaces/PepperDash_Essentials_Interfaces/PepperDash_Essentials_Interfaces.csproj .DS_Store /._PepperDash.Essentials.sln +.vscode/settings.json diff --git a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensions.cs b/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensions.cs deleted file mode 100644 index 32e7f0c8..00000000 --- a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensions.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces -{ - public interface IVideoCodecUiExtensionsHandler : IVideoCodecUiExtensionsWebViewDisplayAction, IVideoCodecUiExtensionsClickedEvent - { - } - - public interface IVideoCodecUiExtensions - { - IVideoCodecUiExtensionsHandler VideoCodecUiExtensionsHandler { get; set; } - } - -} \ No newline at end of file diff --git a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs b/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs deleted file mode 100644 index 1c9cafa0..00000000 --- a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; - -namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces -{ - public interface IVideoCodecUiExtensionsWebViewDisplayAction - { - Action UiWebViewDisplayAction { get; set; } - } - - public class UiWebViewDisplayActionArgs - { - - /// - /// Required <0 - 2000> The URL of the web page. - /// - public string Url { get; set; } - - /// - /// Fullscreen, Modal Full screen: Display the web page on the entire screen.Modal: Display the web page in a window. - /// - - public string Mode { get; set; } - - /// - /// <0 - 255> The title of the web page. - /// - public string Title { get; set; } - - /// - /// <0 - 8192> An HTTP header field.You can add up 15 Header parameters in one command, each holding one HTTP header field. - /// - public string Header { get; set; } - - /// - /// OSD, Controller, PersistentWebApp Controller: Only for Cisco internal use. - /// OSD: Close the web view that is displayed on the screen of the device.PersistentWebApp: Only for Cisco internal use. - /// - public string Target { get; set; } - } - -} diff --git a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedEvent.cs b/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedEvent.cs deleted file mode 100644 index 9e9bb63d..00000000 --- a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedEvent.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; - -namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces -{ - public interface IVideoCodecUiExtensionsClickedEvent - { - event EventHandler UiExtensionsClickedEvent; - } - - public class UiExtensionsClickedEventArgs : EventArgs - { - public bool Clicked { get; set; } - public string Id { get; set; } - - public UiExtensionsClickedEventArgs(bool clicked, string id) - { - Clicked = clicked; - Id = id; - } - - public UiExtensionsClickedEventArgs() - { - } - } -}