mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
Further mock testing into UI
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
{
|
{
|
||||||
// Video Codec
|
// Video Codec
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 1234 - 0 = Connect, 1 = End
|
/// 1234: values 0 = Connect, 1 = End
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const uint VCStagingConnectButtonMode = 1234;
|
public const uint VCStagingConnectButtonMode = 1234;
|
||||||
|
|
||||||
|
|||||||
@@ -202,9 +202,8 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||||||
|
|
||||||
void InCallFeedback_OutputChange(object sender, EventArgs e)
|
void InCallFeedback_OutputChange(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
#warning mode does not change!
|
|
||||||
var inCall = Codec.InCallFeedback.BoolValue;
|
var inCall = Codec.InCallFeedback.BoolValue;
|
||||||
Debug.Console(2, "*#* Codec Driver InCallFeedback change={0}", InCall);
|
Debug.Console(1, "*#* Codec Driver InCallFeedback change={0}", InCall);
|
||||||
TriList.UShortInput[UIUshortJoin.VCStagingConnectButtonMode].UShortValue = (ushort)(inCall ? 1 : 0);
|
TriList.UShortInput[UIUshortJoin.VCStagingConnectButtonMode].UShortValue = (ushort)(inCall ? 1 : 0);
|
||||||
StagingBarInterlock.ShowInterlocked(
|
StagingBarInterlock.ShowInterlocked(
|
||||||
inCall ? UIBoolJoin.VCStagingActivePopoverVisible : UIBoolJoin.VCStagingInactivePopoverVisible);
|
inCall ? UIBoolJoin.VCStagingActivePopoverVisible : UIBoolJoin.VCStagingInactivePopoverVisible);
|
||||||
@@ -212,13 +211,11 @@ namespace PepperDash.Essentials.UIDrivers.VC
|
|||||||
if (Codec.InCallFeedback.BoolValue) // Call is starting
|
if (Codec.InCallFeedback.BoolValue) // Call is starting
|
||||||
{
|
{
|
||||||
// Header icon
|
// Header icon
|
||||||
// Add end call button to stage
|
|
||||||
// Volume bar needs to have mic mute
|
// Volume bar needs to have mic mute
|
||||||
}
|
}
|
||||||
else // ending
|
else // ending
|
||||||
{
|
{
|
||||||
// Header icon
|
// Header icon
|
||||||
// Remove end call
|
|
||||||
// Volume bar no mic mute (or hidden if no source?)
|
// Volume bar no mic mute (or hidden if no source?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user