101 lines
3.5 KiB
C++
Executable file
101 lines
3.5 KiB
C++
Executable file
/******************************************************************************\
|
|
* 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 <QLabel>
|
|
#include <QString>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QProgressBar>
|
|
#include <QWhatsThis>
|
|
#include <QTimer>
|
|
#include <QSlider>
|
|
#include <QRadioButton>
|
|
#include <QMenuBar>
|
|
#include <QLayout>
|
|
#include <QButtonGroup>
|
|
#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:
|
|
CClientSettingsDlg ( CClient* pNCliP, QWidget* parent = 0,
|
|
Qt::WindowFlags f = 0 );
|
|
|
|
void SetStatus ( const int iMessType, const int iStatus );
|
|
void SetPingTimeResult ( const int iPingTime,
|
|
const int iOverallDelayMs,
|
|
const int iOverallDelayLEDColor );
|
|
|
|
void UpdateDisplay();
|
|
|
|
protected:
|
|
void UpdateJitterBufferFrame();
|
|
void UpdateSoundCardFrame();
|
|
void UpdateSoundChannelSelectionFrame();
|
|
void UpdateCentralServerDependency();
|
|
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 OnSliderSndCrdBufferDelay ( int value );
|
|
void OnAutoJitBufStateChanged ( int value );
|
|
void OnOpenChatOnNewMessageStateChanged ( int value );
|
|
void OnGUIDesignFancyStateChanged ( int value );
|
|
void OnUseStereoStateChanged ( int value );
|
|
void OnDefaultCentralServerStateChanged ( int value );
|
|
void OnCentralServerAddressEditingFinished();
|
|
void OnSndCrdBufferDelayButtonGroupClicked ( QAbstractButton* button );
|
|
void OnSoundcardActivated ( int iSndDevIdx );
|
|
void OnLInChanActivated ( int iChanIdx );
|
|
void OnRInChanActivated ( int iChanIdx );
|
|
void OnLOutChanActivated ( int iChanIdx );
|
|
void OnROutChanActivated ( int iChanIdx );
|
|
void OnAudioQualityActivated ( int iQualityIdx );
|
|
void OnDriverSetupClicked();
|
|
|
|
signals:
|
|
void GUIDesignChanged();
|
|
void StereoCheckBoxChanged();
|
|
};
|