jamulus/src/clientsettingsdlg.cpp

176 lines
6.2 KiB
C++
Raw Normal View History

/******************************************************************************\
* Copyright (c) 2004-2006
*
* 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 "clientsettingsdlg.h"
/* Implementation *************************************************************/
CClientSettingsDlg::CClientSettingsDlg ( CClient* pNCliP, QWidget* parent,
Qt::WindowFlags f ) : pClient ( pNCliP ), QDialog ( parent, f )
{
setupUi ( this );
/* Init timing jitter text label */
TextLabelStdDevTimer->setText ( "" );
/* init slider controls --- */
/* sound buffer in */
2007-09-08 12:45:14 +02:00
SliderSndBufIn->setRange ( 2, AUD_SLIDER_LENGTH );
const int iCurNumInBuf = pClient->GetSndInterface()->GetInNumBuf();
2007-09-08 12:45:14 +02:00
SliderSndBufIn->setValue ( iCurNumInBuf );
TextSndBufIn->setText ( "In: " + QString().setNum ( iCurNumInBuf ) );
/* sound buffer out */
2007-09-08 12:45:14 +02:00
SliderSndBufOut->setRange ( 2, AUD_SLIDER_LENGTH );
const int iCurNumOutBuf = pClient->GetSndInterface()->GetOutNumBuf();
2007-09-08 12:45:14 +02:00
SliderSndBufOut->setValue ( iCurNumOutBuf );
TextSndBufOut->setText ( "Out: " + QString().setNum ( iCurNumOutBuf ) );
/* network buffer */
2007-09-08 12:45:14 +02:00
SliderNetBuf->setRange ( 0, MAX_NET_BUF_SIZE_NUM_BL );
const int iCurNumNetBuf = pClient->GetSockBufSize();
2007-09-08 12:45:14 +02:00
SliderNetBuf->setValue ( iCurNumNetBuf );
TextNetBuf->setText ( "Size: " + QString().setNum ( iCurNumNetBuf ) );
/* network buffer size factor in */
2007-09-08 12:45:14 +02:00
SliderNetBufSiFactIn->setRange ( 1, MAX_NET_BLOCK_SIZE_FACTOR );
const int iCurNetBufSiFactIn = pClient->GetNetwBufSizeFactIn();
2007-09-08 12:45:14 +02:00
SliderNetBufSiFactIn->setValue ( iCurNetBufSiFactIn );
TextNetBufSiFactIn->setText ( "In:\n" + QString().setNum (
double ( iCurNetBufSiFactIn * MIN_BLOCK_DURATION_MS ), 'f', 2 ) +
" ms" );
/* network buffer size factor out */
2007-09-08 12:45:14 +02:00
SliderNetBufSiFactOut->setRange ( 1, MAX_NET_BLOCK_SIZE_FACTOR );
const int iCurNetBufSiFactOut = pClient->GetNetwBufSizeFactOut();
2007-09-08 12:45:14 +02:00
SliderNetBufSiFactOut->setValue ( iCurNetBufSiFactOut );
TextNetBufSiFactOut->setText ( "Out:\n" + QString().setNum (
double ( iCurNetBufSiFactOut * MIN_BLOCK_DURATION_MS), 'f', 2 ) +
" ms" );
/* connections ---------------------------------------------------------- */
/* timers */
2007-09-08 12:45:14 +02:00
QObject::connect ( &TimerStatus, SIGNAL ( timeout() ),
this, SLOT ( OnTimerStatus() ) );
/* sliders */
2007-09-08 12:45:14 +02:00
QObject::connect ( SliderSndBufIn, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnSliderSndBufInChange ( int ) ) );
QObject::connect ( SliderSndBufOut, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnSliderSndBufOutChange ( int ) ) );
2007-09-08 12:45:14 +02:00
QObject::connect ( SliderNetBuf, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnSliderNetBuf ( int ) ) );
2007-09-08 12:45:14 +02:00
QObject::connect ( SliderNetBufSiFactIn, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnSliderNetBufSiFactIn ( int ) ) );
QObject::connect ( SliderNetBufSiFactOut, SIGNAL ( valueChanged ( int ) ),
this, SLOT ( OnSliderNetBufSiFactOut ( int ) ) );
/* timers --------------------------------------------------------------- */
/* start timer for status bar */
2007-09-08 12:45:14 +02:00
TimerStatus.start ( DISPLAY_UPDATE_TIME );
}
2007-09-08 12:45:14 +02:00
void CClientSettingsDlg::OnSliderSndBufInChange ( int value )
{
2007-09-08 12:45:14 +02:00
pClient->GetSndInterface()->SetInNumBuf ( value );
TextSndBufIn->setText ( "In: " + QString().setNum ( value ) );
UpdateDisplay();
}
2007-09-08 12:45:14 +02:00
void CClientSettingsDlg::OnSliderSndBufOutChange ( int value )
{
2007-09-08 12:45:14 +02:00
pClient->GetSndInterface()->SetOutNumBuf ( value );
TextSndBufOut->setText ( "Out: " + QString().setNum ( value ) );
UpdateDisplay();
}
2007-09-08 12:45:14 +02:00
void CClientSettingsDlg::OnSliderNetBuf ( int value )
{
pClient->SetSockBufSize ( value );
2007-09-08 12:45:14 +02:00
TextNetBuf->setText ( "Size: " + QString().setNum ( value ) );
UpdateDisplay();
}
2007-09-08 12:45:14 +02:00
void CClientSettingsDlg::OnSliderNetBufSiFactIn ( int value )
{
pClient->SetNetwBufSizeFactIn ( value );
2007-09-08 12:45:14 +02:00
TextNetBufSiFactIn->setText ( "In:\n" + QString().setNum (
double ( value * MIN_BLOCK_DURATION_MS ), 'f', 2 ) +
" ms" );
UpdateDisplay();
}
2007-09-08 12:45:14 +02:00
void CClientSettingsDlg::OnSliderNetBufSiFactOut ( int value )
{
pClient->SetNetwBufSizeFactOut ( value );
2007-09-08 12:45:14 +02:00
TextNetBufSiFactOut->setText ( "Out:\n" + QString().setNum (
double ( value * MIN_BLOCK_DURATION_MS ), 'f', 2 ) +
" ms" );
UpdateDisplay();
}
void CClientSettingsDlg::UpdateDisplay()
{
/* response time */
2007-09-08 12:45:14 +02:00
TextLabelStdDevTimer->setText ( QString().
setNum ( pClient->GetTimingStdDev(), 'f', 2 ) + " ms" );
}
void CClientSettingsDlg::SetStatus ( const int iMessType, const int iStatus )
{
2007-09-08 12:45:14 +02:00
switch ( iMessType )
{
case MS_SOUND_IN:
2007-09-08 12:45:14 +02:00
CLEDSoundIn->SetLight ( iStatus );
break;
case MS_SOUND_OUT:
2007-09-08 12:45:14 +02:00
CLEDSoundOut->SetLight ( iStatus );
break;
case MS_JIT_BUF_PUT:
2007-09-08 12:45:14 +02:00
CLEDNetwPut->SetLight ( iStatus );
break;
case MS_JIT_BUF_GET:
2007-09-08 12:45:14 +02:00
CLEDNetwGet->SetLight ( iStatus );
break;
case MS_PROTOCOL:
2007-09-08 12:45:14 +02:00
CLEDProtocolStatus->SetLight ( iStatus );
case MS_RESET_ALL:
CLEDSoundIn->Reset();
CLEDSoundOut->Reset();
CLEDNetwPut->Reset();
CLEDNetwGet->Reset();
CLEDProtocolStatus->Reset();
break;
}
}