2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
2020-01-01 15:41:43 +01:00
|
|
|
* Copyright (c) 2004-2020
|
2013-01-23 11:41:13 +01:00
|
|
|
*
|
|
|
|
* 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.,
|
2020-06-08 22:58:11 +02:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2013-01-23 11:41:13 +01:00
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2020-06-24 17:26:36 +02:00
|
|
|
#pragma once
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QString>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QWhatsThis>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QSlider>
|
|
|
|
#include <QRadioButton>
|
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QButtonGroup>
|
2020-06-03 07:10:50 +02:00
|
|
|
#include <QMessageBox>
|
2013-01-23 11:41:13 +01:00
|
|
|
#include "global.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "multicolorled.h"
|
|
|
|
#include "ui_clientsettingsdlgbase.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
|
|
// update time for GUI controls
|
|
|
|
#define DISPLAY_UPDATE_TIME 1000 // ms
|
|
|
|
|
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
|
|
class CClientSettingsDlg : public QDialog, private Ui_CClientSettingsDlgBase
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-08-26 21:58:59 +02:00
|
|
|
CClientSettingsDlg ( CClient* pNCliP,
|
2019-05-17 22:55:46 +02:00
|
|
|
QWidget* parent = nullptr,
|
|
|
|
Qt::WindowFlags f = nullptr );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2014-01-05 19:26:38 +01:00
|
|
|
void SetStatus ( const CMultiColorLED::ELightColor eStatus ) { ledNetw->SetLight ( eStatus ); }
|
2014-01-21 22:19:51 +01:00
|
|
|
|
|
|
|
void ResetStatusAndPingLED()
|
|
|
|
{
|
|
|
|
ledNetw->Reset();
|
|
|
|
ledOverallDelay->Reset();
|
|
|
|
}
|
2014-01-03 09:54:49 +01:00
|
|
|
|
2014-01-05 19:26:38 +01:00
|
|
|
void SetPingTimeResult ( const int iPingTime,
|
|
|
|
const int iOverallDelayMs,
|
|
|
|
const CMultiColorLED::ELightColor eOverallDelayLEDColor );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-03-10 09:19:41 +01:00
|
|
|
void UpdateDisplay();
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
protected:
|
|
|
|
void UpdateJitterBufferFrame();
|
|
|
|
void UpdateSoundCardFrame();
|
|
|
|
void UpdateSoundChannelSelectionFrame();
|
|
|
|
QString GenSndCrdBufferDelayString ( const int iFrameSize,
|
|
|
|
const QString strAddText = "" );
|
|
|
|
|
|
|
|
virtual void showEvent ( QShowEvent* ) { UpdateDisplay(); }
|
|
|
|
|
|
|
|
CClient* pClient;
|
|
|
|
QTimer TimerStatus;
|
|
|
|
QButtonGroup SndCrdBufferDelayButtonGroup;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnTimerStatus() { UpdateDisplay(); }
|
|
|
|
void OnNetBufValueChanged ( int value );
|
|
|
|
void OnNetBufServerValueChanged ( int value );
|
|
|
|
void OnAutoJitBufStateChanged ( int value );
|
2020-03-30 22:36:25 +02:00
|
|
|
void OnDisplayChannelLevelsStateChanged ( int value );
|
2020-04-17 21:21:37 +02:00
|
|
|
void OnEnableOPUS64StateChanged ( int value );
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnCentralServerAddressEditingFinished();
|
2015-11-25 16:52:00 +01:00
|
|
|
void OnNewClientLevelEditingFinished();
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnSndCrdBufferDelayButtonGroupClicked ( QAbstractButton* button );
|
|
|
|
void OnSoundcardActivated ( int iSndDevIdx );
|
|
|
|
void OnLInChanActivated ( int iChanIdx );
|
|
|
|
void OnRInChanActivated ( int iChanIdx );
|
|
|
|
void OnLOutChanActivated ( int iChanIdx );
|
|
|
|
void OnROutChanActivated ( int iChanIdx );
|
2014-02-24 20:51:57 +01:00
|
|
|
void OnAudioChannelsActivated ( int iChanIdx );
|
2013-08-15 21:15:01 +02:00
|
|
|
void OnAudioQualityActivated ( int iQualityIdx );
|
2020-06-11 16:42:50 +02:00
|
|
|
void OnGUIDesignActivated ( int iDesignIdx );
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnDriverSetupClicked();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void GUIDesignChanged();
|
2020-03-30 22:36:25 +02:00
|
|
|
void DisplayChannelLevelsChanged();
|
2014-02-24 20:51:57 +01:00
|
|
|
void AudioChannelsChanged();
|
2015-11-25 16:52:00 +01:00
|
|
|
void NewClientLevelChanged();
|
2013-01-23 11:41:13 +01:00
|
|
|
};
|