mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 21:04:48 +00:00
Significantly restructure camera control interfaces and event arguments. Removed obsolete interfaces like `IHasCameras` and `CameraSelectedEventArgs`, and introduced generic event argument classes for improved type safety. Added `IHasCamerasWithControls` for better management of camera controls. Corrected the `IHasCameraMuteWithUnmuteReqeust` interface name. Reintroduced the `eCameraControlMode` enum to define camera control modes. These changes enhance the organization, clarity, and functionality of the camera control system.
24 lines
697 B
C#
24 lines
697 B
C#
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Cameras
|
|
{
|
|
/// <summary>
|
|
/// Interface for devices that have a far end camera control
|
|
/// </summary>
|
|
public interface IHasFarEndCameraControl : IKeyName
|
|
{
|
|
/// <summary>
|
|
/// Gets the far end camera, which is typically a CameraBase object that represents the camera at the far end of a call
|
|
/// </summary>
|
|
CameraBase FarEndCamera { get; }
|
|
|
|
/// <summary>
|
|
/// Feedback that indicates whether the far end camera is being controlled
|
|
/// </summary>
|
|
BoolFeedback ControllingFarEndCameraFeedback { get; }
|
|
|
|
}
|
|
}
|