2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
|
|
|
* Copyright (c) 2004-2013
|
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Volker Fischer
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
|
|
|
#include "audiomixerboard.h"
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************\
|
|
|
|
* CChanneFader *
|
|
|
|
\******************************************************************************/
|
|
|
|
CChannelFader::CChannelFader ( QWidget* pNW,
|
|
|
|
QHBoxLayout* pParentLayout )
|
|
|
|
{
|
|
|
|
// create new GUI control objects and store pointers to them (note that
|
|
|
|
// QWidget takes the ownership of the pMainGrid so that this only has
|
|
|
|
// to be created locally in this constructor)
|
2013-02-10 09:44:01 +01:00
|
|
|
pFrame = new QFrame ( pNW );
|
|
|
|
QVBoxLayout* pMainGrid = new QVBoxLayout ( pFrame );
|
|
|
|
pFader = new QSlider ( Qt::Vertical, pFrame );
|
|
|
|
pcbMute = new QCheckBox ( "Mute", pFrame );
|
|
|
|
pcbSolo = new QCheckBox ( "Solo", pFrame );
|
|
|
|
QGroupBox* pLabelInstBox = new QGroupBox ( pFrame );
|
|
|
|
pLabel = new QLabel ( "", pFrame );
|
|
|
|
pInstrument = new QLabel ( pFrame );
|
|
|
|
QHBoxLayout* pLabelGrid = new QHBoxLayout ( pLabelInstBox );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
// setup slider
|
|
|
|
pFader->setPageStep ( 1 );
|
|
|
|
pFader->setTickPosition ( QSlider::TicksBothSides );
|
|
|
|
pFader->setRange ( 0, AUD_MIX_FADER_MAX );
|
|
|
|
pFader->setTickInterval ( AUD_MIX_FADER_MAX / 9 );
|
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
// setup group box for label/instrument picture (use white background of
|
|
|
|
// label and set a thick black border with nice round edges)
|
|
|
|
pLabelInstBox->setStyleSheet (
|
|
|
|
"QGroupBox { border: 2px solid black;"
|
|
|
|
" border-radius: 4px;"
|
|
|
|
" padding: 3px;"
|
|
|
|
" background-color: white; }" );
|
|
|
|
|
|
|
|
// setup fader tag label (black bold text which is centered)
|
2013-01-23 11:41:13 +01:00
|
|
|
pLabel->setTextFormat ( Qt::PlainText );
|
2013-02-10 09:44:01 +01:00
|
|
|
pLabel->setAlignment ( Qt::AlignHCenter );
|
2013-01-23 11:41:13 +01:00
|
|
|
pLabel->setStyleSheet (
|
2013-02-10 09:44:47 +01:00
|
|
|
"QLabel { color: black;"
|
|
|
|
" font: bold; }" );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
// set margins of the layouts to zero to get maximum space for the controls
|
2013-01-23 11:41:13 +01:00
|
|
|
pMainGrid->setContentsMargins ( 0, 0, 0, 0 );
|
2013-02-10 09:44:01 +01:00
|
|
|
pLabelGrid->setContentsMargins ( 0, 0, 0, 0 );
|
2013-02-11 16:53:52 +01:00
|
|
|
pLabelGrid->setSpacing ( 2 ); // only minimal space between picture and text
|
2013-02-10 09:44:01 +01:00
|
|
|
|
|
|
|
// add user controls to the grids
|
|
|
|
pLabelGrid->addWidget ( pInstrument );
|
|
|
|
pLabelGrid->addWidget ( pLabel, 0 );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
pMainGrid->addWidget ( pFader, 0, Qt::AlignHCenter );
|
|
|
|
pMainGrid->addWidget ( pcbMute, 0, Qt::AlignLeft );
|
|
|
|
pMainGrid->addWidget ( pcbSolo, 0, Qt::AlignLeft );
|
|
|
|
pMainGrid->addWidget ( pLabelInstBox );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
// add fader frame to audio mixer board layout
|
|
|
|
pParentLayout->addWidget( pFrame );
|
|
|
|
|
|
|
|
// reset current fader
|
|
|
|
Reset();
|
|
|
|
|
|
|
|
// add help text to controls
|
2013-02-10 09:44:01 +01:00
|
|
|
pFader->setWhatsThis ( tr ( "<b>Mixer Fader:</b> Adjusts the audio level of "
|
2013-01-23 11:41:13 +01:00
|
|
|
"this channel. All connected clients at the server will be assigned "
|
2013-02-10 09:44:01 +01:00
|
|
|
"an audio fader at each client." ) );
|
|
|
|
pFader->setAccessibleName ( tr ( "Mixer level setting of the connected client "
|
|
|
|
"at the server" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
pcbMute->setWhatsThis ( tr ( "<b>Mute:</b> With the Mute checkbox, the current "
|
|
|
|
"audio channel can be muted." ) );
|
|
|
|
pcbMute->setAccessibleName ( tr ( "Mute button" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
pcbSolo->setWhatsThis ( tr ( "<b>Solo:</b> With the Solo checkbox, the current "
|
2013-01-23 11:41:13 +01:00
|
|
|
"audio channel can be set to solo which means that all other channels "
|
|
|
|
"except of the current channel are muted.<br>"
|
2013-02-10 09:44:01 +01:00
|
|
|
"Only one channel at a time can be set to solo." ) );
|
|
|
|
pcbSolo->setAccessibleName ( tr ( "Solo button" ) );
|
|
|
|
|
|
|
|
QString strFaderText = tr ( "<b>Fader Tag:</b> The fader tag "
|
|
|
|
"identifies the connected client. The tag name and the picture of your "
|
|
|
|
"instrument can be set in the main window." );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
pInstrument->setWhatsThis ( strFaderText );
|
|
|
|
pInstrument->setAccessibleName ( tr ( "Mixer channel instrument picture" ) );
|
|
|
|
pLabel->setWhatsThis ( strFaderText );
|
|
|
|
pLabel->setAccessibleName ( tr ( "Mixer channel label (fader tag)" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Connections -------------------------------------------------------------
|
|
|
|
QObject::connect ( pFader, SIGNAL ( valueChanged ( int ) ),
|
|
|
|
this, SLOT ( OnGainValueChanged ( int ) ) );
|
|
|
|
|
|
|
|
QObject::connect ( pcbMute, SIGNAL ( stateChanged ( int ) ),
|
|
|
|
this, SLOT ( OnMuteStateChanged ( int ) ) );
|
|
|
|
|
|
|
|
QObject::connect ( pcbSolo,
|
|
|
|
SIGNAL ( stateChanged ( int ) ),
|
|
|
|
SIGNAL ( soloStateChanged ( int ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::SetGUIDesign ( const EGUIDesign eNewDesign )
|
|
|
|
{
|
|
|
|
switch ( eNewDesign )
|
|
|
|
{
|
|
|
|
case GD_ORIGINAL:
|
|
|
|
// fader
|
|
|
|
pFader->setStyleSheet (
|
|
|
|
"QSlider { width: 45px;"
|
|
|
|
" border-image: url(:/png/fader/res/faderbackground.png) repeat;"
|
|
|
|
" border-top: 10px transparent;"
|
|
|
|
" border-bottom: 10px transparent;"
|
|
|
|
" border-left: 20px transparent;"
|
|
|
|
" border-right: -25px transparent; }"
|
|
|
|
"QSlider::groove { image: url();"
|
|
|
|
" padding-left: -38px;"
|
|
|
|
" padding-top: -10px;"
|
|
|
|
" padding-bottom: -15px; }"
|
|
|
|
"QSlider::handle { image: url(:/png/fader/res/faderhandle.png); }" );
|
|
|
|
|
|
|
|
// mute button
|
2013-02-11 16:53:52 +01:00
|
|
|
pcbMute->setText ( tr ( "MUTE" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
// solo button
|
2013-02-11 16:53:52 +01:00
|
|
|
pcbSolo->setText ( tr ( "SOLO" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// reset style sheet and set original paramters
|
|
|
|
pFader->setStyleSheet ( "" );
|
2013-02-11 16:53:52 +01:00
|
|
|
pcbMute->setText ( tr ( "Mute" ) );
|
|
|
|
pcbSolo->setText ( tr ( "Solo" ) );
|
2013-01-23 11:41:13 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::Reset()
|
|
|
|
{
|
|
|
|
// init gain value -> maximum value as definition according to server
|
|
|
|
pFader->setValue ( AUD_MIX_FADER_MAX );
|
|
|
|
|
|
|
|
// reset mute/solo check boxes
|
|
|
|
pcbMute->setChecked ( false );
|
|
|
|
pcbSolo->setChecked ( false );
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
// clear instrument picture and label text
|
|
|
|
pInstrument->setVisible ( false );
|
2013-01-23 11:41:13 +01:00
|
|
|
pLabel->setText ( "" );
|
|
|
|
|
|
|
|
bOtherChannelIsSolo = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::OnGainValueChanged ( int value )
|
|
|
|
{
|
|
|
|
// if mute flag is set or other channel is on solo, do not apply the new
|
|
|
|
// fader value
|
|
|
|
if ( ( pcbMute->checkState() == Qt::Unchecked ) && !bOtherChannelIsSolo )
|
|
|
|
{
|
|
|
|
// emit signal for new fader gain value
|
|
|
|
emit gainValueChanged ( CalcFaderGain ( value ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::OnMuteStateChanged ( int value )
|
|
|
|
{
|
|
|
|
// call muting function
|
|
|
|
SetMute ( static_cast<Qt::CheckState> ( value ) == Qt::Checked );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::SetMute ( const bool bState )
|
|
|
|
{
|
|
|
|
if ( bState )
|
|
|
|
{
|
|
|
|
// mute channel -> send gain of 0
|
|
|
|
emit gainValueChanged ( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// only unmute if no other channel is on solo
|
|
|
|
if ( !bOtherChannelIsSolo )
|
|
|
|
{
|
|
|
|
// mute was unchecked, get current fader value and apply
|
|
|
|
emit gainValueChanged ( CalcFaderGain ( pFader->value() ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::ResetSoloState()
|
|
|
|
{
|
|
|
|
// reset solo state -> since solo state means that this channel is not
|
|
|
|
// muted but all others, we simply have to uncheck the check box (make
|
|
|
|
// sure the setChecked does not fire a signal)
|
|
|
|
pcbSolo->blockSignals ( true );
|
|
|
|
{
|
|
|
|
pcbSolo->setChecked ( false );
|
|
|
|
}
|
|
|
|
pcbSolo->blockSignals ( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::SetOtherSoloState ( const bool bState )
|
|
|
|
{
|
|
|
|
// store state (must be done before the SetMute() call!)
|
|
|
|
bOtherChannelIsSolo = bState;
|
|
|
|
|
|
|
|
// check if we are in solo on state, in that case we first have to disable
|
|
|
|
// our solo state since only one channel can be set to solo
|
|
|
|
if ( bState && pcbSolo->isChecked() )
|
|
|
|
{
|
|
|
|
// we do not want to fire a signal with the following set function
|
|
|
|
// -> block signals temporarily
|
|
|
|
pcbSolo->blockSignals ( true );
|
|
|
|
{
|
|
|
|
pcbSolo->setChecked ( false );
|
|
|
|
}
|
|
|
|
pcbSolo->blockSignals ( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
// if other channel is solo, mute this channel, else enable channel gain
|
|
|
|
// (only enable channel gain if local mute switch is not set to on)
|
|
|
|
if ( !pcbMute->isChecked() )
|
|
|
|
{
|
|
|
|
SetMute ( bState );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CChannelFader::SetText ( const QString sText )
|
|
|
|
{
|
|
|
|
const int iBreakPos = MAX_LEN_FADER_TAG / 2;
|
|
|
|
|
|
|
|
// break text at predefined position, if text is too short, break anyway to
|
|
|
|
// make sure we have two lines for fader tag
|
|
|
|
QString sModText = sText;
|
|
|
|
|
|
|
|
if ( sModText.length() > iBreakPos )
|
|
|
|
{
|
|
|
|
sModText.insert ( iBreakPos, QString ( "\n" ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// insert line break at the beginning of the string -> make sure
|
|
|
|
// if we only have one line that the text appears at the bottom line
|
|
|
|
sModText.prepend ( QString ( "\n" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
pLabel->setText ( sModText );
|
|
|
|
}
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
void CChannelFader::SetInstrumentPicture ( const int iInstrument )
|
|
|
|
{
|
|
|
|
// get the resource reference string for this instrument
|
|
|
|
const QString strCurResourceRef =
|
|
|
|
CInstPictures::GetResourceReference ( iInstrument );
|
|
|
|
|
|
|
|
// first check if instrument picture is used or not and if it is valid
|
2013-02-11 18:55:36 +01:00
|
|
|
if ( CInstPictures::IsNotUsedInstrument ( iInstrument ) ||
|
|
|
|
strCurResourceRef.isEmpty() )
|
2013-02-11 16:53:52 +01:00
|
|
|
{
|
|
|
|
// disable instrument picture
|
|
|
|
pInstrument->setVisible ( false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// set correct picture
|
|
|
|
pInstrument->setPixmap ( QPixmap ( strCurResourceRef ) );
|
|
|
|
|
|
|
|
// enable instrument picture
|
|
|
|
pInstrument->setVisible ( true );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
double CChannelFader::CalcFaderGain ( const int value )
|
|
|
|
{
|
|
|
|
// convert actual slider range in gain values
|
|
|
|
// and normalize so that maximum gain is 1
|
|
|
|
return static_cast<double> ( value ) / AUD_MIX_FADER_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************\
|
|
|
|
* CAudioMixerBoard *
|
|
|
|
\******************************************************************************/
|
|
|
|
CAudioMixerBoard::CAudioMixerBoard ( QWidget* parent, Qt::WindowFlags ) :
|
|
|
|
QGroupBox ( parent )
|
|
|
|
{
|
|
|
|
// set title text (default: no server given)
|
|
|
|
SetServerName ( "" );
|
|
|
|
|
|
|
|
// add hboxlayout
|
|
|
|
pMainLayout = new QHBoxLayout ( this );
|
|
|
|
|
|
|
|
// create all mixer controls and make them invisible
|
|
|
|
vecpChanFader.Init ( MAX_NUM_CHANNELS );
|
|
|
|
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
|
|
|
|
{
|
|
|
|
vecpChanFader[i] = new CChannelFader ( this, pMainLayout );
|
|
|
|
vecpChanFader[i]->Hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert horizontal spacer
|
|
|
|
pMainLayout->addItem ( new QSpacerItem ( 0, 0, QSizePolicy::Expanding ) );
|
|
|
|
|
|
|
|
|
|
|
|
// Connections -------------------------------------------------------------
|
|
|
|
// CODE TAG: MAX_NUM_CHANNELS_TAG
|
|
|
|
// make sure we have MAX_NUM_CHANNELS connections!!!
|
|
|
|
QObject::connect ( vecpChanFader[0], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh0 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[1], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh1 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[2], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh2 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[3], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh3 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[4], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh4 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[5], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh5 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[6], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh6 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[7], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh7 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[8], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh8 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[9], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh9 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[10], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh10 ( double ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[11], SIGNAL ( gainValueChanged ( double ) ), this, SLOT ( OnGainValueChangedCh11 ( double ) ) );
|
|
|
|
|
|
|
|
QObject::connect ( vecpChanFader[0], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh0 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[1], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh1 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[2], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh2 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[3], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh3 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[4], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh4 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[5], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh5 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[6], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh6 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[7], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh7 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[8], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh8 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[9], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh9 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[10], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh10 ( int ) ) );
|
|
|
|
QObject::connect ( vecpChanFader[11], SIGNAL ( soloStateChanged ( int ) ), this, SLOT ( OnChSoloStateChangedCh11 ( int ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioMixerBoard::SetServerName ( const QString& strNewServerName )
|
|
|
|
{
|
|
|
|
// set title text of the group box
|
|
|
|
if ( strNewServerName.isEmpty() )
|
|
|
|
{
|
|
|
|
setTitle ( "Server" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setTitle ( strNewServerName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioMixerBoard::SetGUIDesign ( const EGUIDesign eNewDesign )
|
|
|
|
{
|
|
|
|
// apply GUI design to child GUI controls
|
|
|
|
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
|
|
|
|
{
|
|
|
|
vecpChanFader[i]->SetGUIDesign ( eNewDesign );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioMixerBoard::HideAll()
|
|
|
|
{
|
|
|
|
// make all controls invisible
|
|
|
|
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
|
|
|
|
{
|
|
|
|
vecpChanFader[i]->Hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// emit status of connected clients
|
|
|
|
emit NumClientsChanged ( 0 ); // -> no clients connected
|
|
|
|
}
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
void CAudioMixerBoard::ApplyNewConClientList ( CVector<CChannelInfo>& vecChanInfo )
|
2013-01-23 11:41:13 +01:00
|
|
|
{
|
|
|
|
// get number of connected clients
|
|
|
|
const int iNumConnectedClients = vecChanInfo.Size();
|
|
|
|
|
2013-02-10 09:44:01 +01:00
|
|
|
// search for channels with are already present and preserve their gain
|
|
|
|
// setting, for all other channels reset gain
|
2013-01-23 11:41:13 +01:00
|
|
|
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
|
|
|
|
{
|
|
|
|
bool bFaderIsUsed = false;
|
|
|
|
|
|
|
|
for ( int j = 0; j < iNumConnectedClients; j++ )
|
|
|
|
{
|
|
|
|
// check if current fader is used
|
|
|
|
if ( vecChanInfo[j].iChanID == i )
|
|
|
|
{
|
|
|
|
// check if fader was already in use -> preserve gain value
|
|
|
|
if ( !vecpChanFader[i]->IsVisible() )
|
|
|
|
{
|
|
|
|
vecpChanFader[i]->Reset();
|
|
|
|
|
|
|
|
// show fader
|
|
|
|
vecpChanFader[i]->Show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// by definition disable all Solo switches if the number of
|
|
|
|
// channels at the server has changed
|
|
|
|
vecpChanFader[i]->SetOtherSoloState ( false );
|
|
|
|
vecpChanFader[i]->ResetSoloState();
|
|
|
|
}
|
|
|
|
|
|
|
|
// update text
|
2013-02-11 16:53:52 +01:00
|
|
|
vecpChanFader[i]->
|
|
|
|
SetText ( GenFaderText ( vecChanInfo[j] ) );
|
|
|
|
|
|
|
|
// update other channel infos (only available for new protocol
|
|
|
|
// which is not compatible with old versions -> this way we make
|
|
|
|
// sure that the protocol which transferrs only the name does
|
|
|
|
// change the other client infos
|
|
|
|
// #### COMPATIBILITY OLD VERSION, TO BE REMOVED #### -> the "if-condition" can be removed later on...
|
|
|
|
if ( !vecChanInfo[j].bOnlyNameIsUsed )
|
|
|
|
{
|
|
|
|
// update instrument picture
|
|
|
|
vecpChanFader[i]->
|
|
|
|
SetInstrumentPicture ( vecChanInfo[j].iInstrument );
|
|
|
|
}
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
bFaderIsUsed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if current fader is not used, hide it
|
|
|
|
if ( !bFaderIsUsed )
|
|
|
|
{
|
|
|
|
vecpChanFader[i]->Hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// emit status of connected clients
|
|
|
|
emit NumClientsChanged ( iNumConnectedClients );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAudioMixerBoard::OnChSoloStateChanged ( const int iChannelIdx,
|
|
|
|
const int iValue )
|
|
|
|
{
|
|
|
|
// if channel iChannelIdx has just activated the solo switch, mute all
|
|
|
|
// other channels, else enable them again
|
|
|
|
const bool bSetOtherSoloState =
|
|
|
|
( static_cast<Qt::CheckState> ( iValue ) == Qt::Checked );
|
|
|
|
|
|
|
|
// apply "other solo state" for all other channels
|
|
|
|
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
|
|
|
|
{
|
|
|
|
if ( i != iChannelIdx )
|
|
|
|
{
|
|
|
|
// check if fader is in use
|
|
|
|
if ( vecpChanFader[i]->IsVisible() )
|
|
|
|
{
|
|
|
|
vecpChanFader[i]->SetOtherSoloState ( bSetOtherSoloState );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set "other solo state" always to false for the current fader at which the
|
|
|
|
// status was changed because if solo is enabled, it has to be "false" and
|
|
|
|
// in case solo is just disabled (check was removed by the user), also no
|
|
|
|
// other channel can be solo at this time
|
|
|
|
vecpChanFader[iChannelIdx]->SetOtherSoloState ( false );
|
|
|
|
}
|
|
|
|
|
2013-02-23 21:15:22 +01:00
|
|
|
void CAudioMixerBoard::OnGainValueChanged ( const int iChannelIdx,
|
|
|
|
const double dValue )
|
|
|
|
{
|
|
|
|
emit ChangeChanGain ( iChannelIdx, dValue );
|
|
|
|
}
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
QString CAudioMixerBoard::GenFaderText ( CChannelInfo& ChanInfo )
|
2013-01-23 11:41:13 +01:00
|
|
|
{
|
|
|
|
// if text is empty, show IP address instead
|
|
|
|
if ( ChanInfo.strName.isEmpty() )
|
|
|
|
{
|
|
|
|
// convert IP address to text and show it (use dummy port number
|
|
|
|
// since it is not used here)
|
|
|
|
const CHostAddress TempAddr =
|
|
|
|
CHostAddress ( QHostAddress ( ChanInfo.iIpAddr ), 0 );
|
|
|
|
|
|
|
|
return TempAddr.toString ( CHostAddress::SM_IP_NO_LAST_BYTE );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// show name of channel
|
|
|
|
return ChanInfo.strName;
|
|
|
|
}
|
|
|
|
}
|