mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
fix: remove codec interfaces that are only needed in cisco epi now
This commit is contained in:
parent
e37c675da1
commit
5a55a701d6
4 changed files with 1 additions and 78 deletions
|
|
@ -1,12 +0,0 @@
|
|||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||
{
|
||||
public interface IVideoCodecUiExtensionsHandler : IVideoCodecUiExtensionsWebViewDisplayAction, IVideoCodecUiExtensionsClickedEvent
|
||||
{
|
||||
}
|
||||
|
||||
public interface IVideoCodecUiExtensions
|
||||
{
|
||||
IVideoCodecUiExtensionsHandler VideoCodecUiExtensionsHandler { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
using System;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||
{
|
||||
public interface IVideoCodecUiExtensionsWebViewDisplayAction
|
||||
{
|
||||
Action<UiWebViewDisplayActionArgs> UiWebViewDisplayAction { get; set; }
|
||||
}
|
||||
|
||||
public class UiWebViewDisplayActionArgs
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Required <0 - 2000> The URL of the web page.
|
||||
/// </summary>
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Fullscreen, Modal Full screen: Display the web page on the entire screen.Modal: Display the web page in a window.
|
||||
/// </summary>
|
||||
|
||||
public string Mode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// <0 - 255> The title of the web page.
|
||||
/// </summary>
|
||||
public string Title { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// <0 - 8192> An HTTP header field.You can add up 15 Header parameters in one command, each holding one HTTP header field.
|
||||
/// </summary>
|
||||
public string Header { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
public string Target { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
using System;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||
{
|
||||
public interface IVideoCodecUiExtensionsClickedEvent
|
||||
{
|
||||
event EventHandler<UiExtensionsClickedEventArgs> 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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue