2009-11-29 04:36:42 +01:00
|
|
|
/******************************************************************************\
|
2011-02-22 19:56:52 +01:00
|
|
|
* Copyright (c) 2004-2011
|
2009-11-29 04:36:42 +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.,
|
|
|
|
* 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 "global.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "multicolorled.h"
|
|
|
|
#include "audiomixerboard.h"
|
|
|
|
#include "clientsettingsdlg.h"
|
|
|
|
#include "chatdlg.h"
|
2011-03-29 09:21:00 +02:00
|
|
|
#include "connectdlg.h"
|
2009-11-29 04:36:42 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include "../windows/moc/llconclientdlgbase.h"
|
|
|
|
#else
|
2010-04-09 19:54:34 +02:00
|
|
|
# ifdef _IS_QMAKE_CONFIG
|
2010-02-18 21:35:48 +01:00
|
|
|
# include "ui_llconclientdlgbase.h"
|
|
|
|
# else
|
|
|
|
# include "moc/llconclientdlgbase.h"
|
|
|
|
# endif
|
2009-11-29 04:36:42 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
|
|
// text strings for connection button for connect and disconnect
|
|
|
|
#define CON_BUT_CONNECTTEXT "C&onnect"
|
|
|
|
#define CON_BUT_DISCONNECTTEXT "D&isconnect"
|
|
|
|
|
|
|
|
// update time for GUI controls
|
2011-03-31 09:10:43 +02:00
|
|
|
#define LEVELMETER_UPDATE_TIME_MS 100 // ms
|
|
|
|
#define LED_BAR_UPDATE_TIME_MS 1000 // ms
|
2009-11-29 04:36:42 +01:00
|
|
|
|
|
|
|
// range for signal level meter
|
|
|
|
#define LOW_BOUND_SIG_METER ( -50.0 ) // dB
|
2011-01-09 15:20:58 +01:00
|
|
|
#define UPPER_BOUND_SIG_METER ( 0.0 ) // dB
|
2009-11-29 04:36:42 +01:00
|
|
|
|
2011-01-20 21:17:48 +01:00
|
|
|
// number of ping times > upper bound until error message is shown
|
|
|
|
#define NUM_HIGH_PINGS_UNTIL_ERROR 5
|
|
|
|
|
2009-11-29 04:36:42 +01:00
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
|
|
class CLlconClientDlg : public QDialog, private Ui_CLlconClientDlgBase
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CLlconClientDlg ( CClient* pNCliP, const bool bNewConnectOnStartup,
|
|
|
|
const bool bNewDisalbeLEDs,
|
|
|
|
QWidget* parent = 0, Qt::WindowFlags f = 0 );
|
|
|
|
|
|
|
|
protected:
|
2010-03-24 21:10:25 +01:00
|
|
|
void SetGUIDesign ( const EGUIDesign eNewDesign );
|
|
|
|
void SetMyWindowTitle ( const int iNumClients );
|
|
|
|
void ShowChatWindow();
|
|
|
|
void UpdateAudioFaderSlider();
|
|
|
|
void UpdateRevSelection();
|
|
|
|
void ConnectDisconnect ( const bool bDoStart );
|
2009-11-29 04:36:42 +01:00
|
|
|
|
2010-03-24 21:10:25 +01:00
|
|
|
CClient* pClient;
|
|
|
|
bool bConnected;
|
|
|
|
bool bUnreadChatMessage;
|
|
|
|
QTimer TimerSigMet;
|
|
|
|
QTimer TimerStatus;
|
2011-01-09 15:20:58 +01:00
|
|
|
QTimer TimerPing;
|
2009-11-29 04:36:42 +01:00
|
|
|
|
2010-03-24 21:10:25 +01:00
|
|
|
virtual void customEvent ( QEvent* Event );
|
|
|
|
virtual void closeEvent ( QCloseEvent* Event );
|
|
|
|
void UpdateDisplay();
|
2009-11-29 04:36:42 +01:00
|
|
|
|
2010-03-24 21:10:25 +01:00
|
|
|
QMenu* pViewMenu;
|
|
|
|
QMenuBar* pMenu;
|
2009-11-29 04:36:42 +01:00
|
|
|
|
2010-03-24 21:10:25 +01:00
|
|
|
CClientSettingsDlg ClientSettingsDlg;
|
|
|
|
CChatDlg ChatDlg;
|
2011-03-29 09:21:00 +02:00
|
|
|
CConnectDlg ConnectDlg;
|
2009-11-29 04:36:42 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnConnectDisconBut();
|
|
|
|
void OnTimerSigMet();
|
2011-04-11 21:09:01 +02:00
|
|
|
|
|
|
|
void OnTimerStatus()
|
|
|
|
{ UpdateDisplay(); }
|
|
|
|
|
2011-01-09 15:20:58 +01:00
|
|
|
void OnTimerPing();
|
|
|
|
void OnPingTimeResult ( int iPingTime );
|
2011-03-30 09:55:43 +02:00
|
|
|
void OnCLPingTimeResult ( CHostAddress InetAddr, int iPingTime );
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnOpenGeneralSettings();
|
2011-04-11 21:09:01 +02:00
|
|
|
|
|
|
|
void OnOpenChatDialog()
|
|
|
|
{ ShowChatWindow(); }
|
|
|
|
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnSliderAudInFader ( int value );
|
2011-04-11 21:09:01 +02:00
|
|
|
|
|
|
|
void OnSliderAudReverb ( int value )
|
|
|
|
{ pClient->SetReverbLevel ( value ); }
|
|
|
|
|
|
|
|
void OnRevSelL()
|
|
|
|
{ pClient->SetReverbOnLeftChan ( true ); }
|
|
|
|
|
|
|
|
void OnRevSelR()
|
|
|
|
{ pClient->SetReverbOnLeftChan ( false ); }
|
|
|
|
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnConClientListMesReceived ( CVector<CChannelShortInfo> vecChanInfo );
|
|
|
|
void OnFaderTagTextChanged ( const QString& strNewName );
|
|
|
|
void OnChatTextReceived ( QString strChatText );
|
2011-04-11 21:09:01 +02:00
|
|
|
|
|
|
|
void OnChangeChanGain ( int iId, double dGain )
|
|
|
|
{ pClient->SetRemoteChanGain ( iId, dGain ); }
|
|
|
|
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnNewLocalInputText ( QString strChatText )
|
2011-04-11 21:09:01 +02:00
|
|
|
{ pClient->CreateChatTextMes ( strChatText ); }
|
|
|
|
|
|
|
|
void OnReqServerListQuery ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLReqServerListMes ( InetAddr ); }
|
|
|
|
|
2011-04-14 22:47:55 +02:00
|
|
|
void OnCreateCLPingMes ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLPingMes ( InetAddr ); }
|
|
|
|
|
2011-04-11 21:09:01 +02:00
|
|
|
void OnCLServerListReceived ( CHostAddress InetAddr,
|
|
|
|
CVector<CServerInfo> vecServerInfo )
|
2011-04-14 08:46:21 +02:00
|
|
|
{ ConnectDlg.SetServerList ( InetAddr, vecServerInfo ); }
|
2011-04-11 21:09:01 +02:00
|
|
|
|
2010-03-05 21:19:12 +01:00
|
|
|
void OnLineEditServerAddrTextChanged ( const QString );
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnLineEditServerAddrActivated ( int index );
|
|
|
|
void OnDisconnected();
|
|
|
|
void OnStopped();
|
2011-04-11 21:09:01 +02:00
|
|
|
|
|
|
|
void OnGUIDesignChanged()
|
|
|
|
{ SetGUIDesign ( pClient->GetGUIDesign() ); }
|
|
|
|
|
2010-03-24 21:10:25 +01:00
|
|
|
void OnStereoCheckBoxChanged() { UpdateRevSelection(); }
|
2009-11-29 04:36:42 +01:00
|
|
|
void OnNumClientsChanged ( int iNewNumClients );
|
|
|
|
};
|