mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
30 lines
803 B
C#
30 lines
803 B
C#
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
/// <summary>
|
|
/// Defines the required elements for layout control
|
|
/// </summary>
|
|
public interface IHasCodecLayouts
|
|
{
|
|
/// <summary>
|
|
/// Feedback that indicates the current layout on the local display
|
|
/// </summary>
|
|
StringFeedback LocalLayoutFeedback { get; }
|
|
|
|
/// <summary>
|
|
/// Toggles the local layout
|
|
/// </summary>
|
|
void LocalLayoutToggle();
|
|
|
|
/// <summary>
|
|
/// Toggles the local layout to single prominent
|
|
/// </summary>
|
|
void LocalLayoutToggleSingleProminent();
|
|
|
|
/// <summary>
|
|
/// Toggle the MinMax layout
|
|
/// </summary>
|
|
void MinMaxLayoutToggle();
|
|
}
|
|
} |