jamulus/src/clientsettingsdlg.h

117 lines
4.1 KiB
C
Raw Normal View History

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.,
* 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>
#include <QMessageBox>
2013-01-23 11:41:13 +01:00
#include "global.h"
#include "client.h"
#include "settings.h"
2013-01-23 11:41:13 +01:00
#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:
CClientSettingsDlg ( CClient* pNCliP,
CClientSettings* pNSetP,
QWidget* parent = nullptr,
Qt::WindowFlags f = nullptr );
2013-01-23 11:41:13 +01:00
void SetStatus ( const CMultiColorLED::ELightColor eStatus ) { ledNetw->SetLight ( eStatus ); }
void ResetStatusAndPingLED()
{
ledNetw->Reset();
ledOverallDelay->Reset();
}
void SetPingTimeResult ( const int iPingTime,
const int iOverallDelayMs,
const CMultiColorLED::ELightColor eOverallDelayLEDColor );
2013-01-23 11:41:13 +01:00
void UpdateDisplay();
2013-01-23 11:41:13 +01:00
protected:
void UpdateJitterBufferFrame();
void UpdateSoundCardFrame();
void UpdateSoundChannelSelectionFrame();
QString GenSndCrdBufferDelayString ( const int iFrameSize,
2013-01-23 11:41:13 +01:00
const QString strAddText = "" );
virtual void showEvent ( QShowEvent* ) { UpdateDisplay(); }
CClient* pClient;
CClientSettings* pSettings;
QTimer TimerStatus;
QButtonGroup SndCrdBufferDelayButtonGroup;
2013-01-23 11:41:13 +01:00
public slots:
void OnTimerStatus() { UpdateDisplay(); }
void OnNetBufValueChanged ( int value );
void OnNetBufServerValueChanged ( int value );
void OnAutoJitBufStateChanged ( int value );
void OnDisplayChannelLevelsStateChanged ( int value );
void OnEnableOPUS64StateChanged ( int value );
2013-01-23 11:41:13 +01:00
void OnCentralServerAddressEditingFinished();
void OnNewClientLevelEditingFinished() { pSettings->iNewClientFaderLevel = edtNewClientLevel->text().toInt(); }
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 );
void OnAudioQualityActivated ( int iQualityIdx );
void OnGUIDesignActivated ( int iDesignIdx );
2013-01-23 11:41:13 +01:00
void OnDriverSetupClicked();
void OnLanguageChanged ( QString strLanguage ) { pSettings->strLanguage = strLanguage; }
2013-01-23 11:41:13 +01:00
signals:
void GUIDesignChanged();
void DisplayChannelLevelsChanged();
2014-02-24 20:51:57 +01:00
void AudioChannelsChanged();
2013-01-23 11:41:13 +01:00
};