99 lines
3.3 KiB
C++
Executable file
99 lines
3.3 KiB
C++
Executable file
/******************************************************************************\
|
|
* Copyright (c) 2004-2010
|
|
*
|
|
* 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.h>
|
|
#include <qstring.h>
|
|
#include <qlineedit.h>
|
|
#include <qpushbutton.h>
|
|
#include <qprogressbar.h>
|
|
#include <qwhatsthis.h>
|
|
#include <qtimer.h>
|
|
#include <qslider.h>
|
|
#include <qradiobutton.h>
|
|
#include <qmenubar.h>
|
|
#include <qlayout.h>
|
|
#include <qbuttongroup.h>
|
|
#include "global.h"
|
|
#include "client.h"
|
|
#include "multicolorled.h"
|
|
#ifdef _WIN32
|
|
# include "../windows/moc/clientsettingsdlgbase.h"
|
|
#else
|
|
# if defined ( __APPLE__ ) || defined ( __MACOSX )
|
|
# include "ui_clientsettingsdlgbase.h"
|
|
# else
|
|
# include "moc/clientsettingsdlgbase.h"
|
|
# endif
|
|
#endif
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
// update time for GUI controls
|
|
#define DISPLAY_UPDATE_TIME 1000 // ms
|
|
#define PING_UPDATE_TIME 500 // 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 );
|
|
|
|
protected:
|
|
void UpdateJitterBufferFrame();
|
|
void UpdateSoundCardFrame();
|
|
QString GenSndCrdBufferDelayString ( const int iFrameSize,
|
|
const QString strAddText = "" );
|
|
|
|
virtual void showEvent ( QShowEvent* showEvent );
|
|
virtual void hideEvent ( QHideEvent* hideEvent );
|
|
|
|
CClient* pClient;
|
|
QTimer TimerStatus;
|
|
QTimer TimerPing;
|
|
QButtonGroup SndCrdBufferDelayButtonGroup;
|
|
void UpdateDisplay();
|
|
|
|
public slots:
|
|
void OnTimerStatus() { UpdateDisplay(); }
|
|
void OnTimerPing();
|
|
void OnSliderNetBuf ( int value );
|
|
void OnSliderSndCrdBufferDelay ( int value );
|
|
void OnAutoJitBuf ( int value );
|
|
void OnOpenChatOnNewMessageStateChanged ( int value );
|
|
void OnGUIDesignFancyStateChanged ( int value );
|
|
void OnUseHighQualityAudioStateChanged ( int value );
|
|
void OnSndCrdBufferDelayButtonGroupClicked ( QAbstractButton* button );
|
|
void OnPingTimeResult ( int iPingTime );
|
|
void OnSoundCrdSelection ( int iSndDevIdx );
|
|
void OnDriverSetupBut();
|
|
|
|
signals:
|
|
void GUIDesignChanged();
|
|
};
|