2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
2015-12-31 14:14:09 +01:00
|
|
|
* Copyright (c) 2004-2016
|
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.,
|
|
|
|
* 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 "global.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "multicolorled.h"
|
|
|
|
#include "audiomixerboard.h"
|
|
|
|
#include "clientsettingsdlg.h"
|
|
|
|
#include "chatdlg.h"
|
|
|
|
#include "connectdlg.h"
|
2013-02-23 21:15:48 +01:00
|
|
|
#include "analyzerconsole.h"
|
2013-03-24 11:49:25 +01:00
|
|
|
#include "ui_clientdlgbase.h"
|
2015-12-18 21:17:31 +01:00
|
|
|
#if defined ( __APPLE__ ) || defined ( __MACOSX )
|
|
|
|
# if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0)
|
|
|
|
# include <QtMac>
|
|
|
|
# endif
|
|
|
|
#endif
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
#define LEVELMETER_UPDATE_TIME_MS 100 // ms
|
2014-01-03 09:54:49 +01:00
|
|
|
#define BUFFER_LED_UPDATE_TIME_MS 300 // ms
|
2013-01-23 11:41:13 +01:00
|
|
|
#define LED_BAR_UPDATE_TIME_MS 1000 // ms
|
|
|
|
|
|
|
|
// range for signal level meter
|
|
|
|
#define LOW_BOUND_SIG_METER ( -50.0 ) // dB
|
|
|
|
#define UPPER_BOUND_SIG_METER ( 0.0 ) // dB
|
|
|
|
|
|
|
|
// number of ping times > upper bound until error message is shown
|
|
|
|
#define NUM_HIGH_PINGS_UNTIL_ERROR 5
|
|
|
|
|
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
2013-03-24 16:42:23 +01:00
|
|
|
class CClientDlg : public QDialog, private Ui_CClientDlgBase
|
2013-01-23 11:41:13 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-03-24 16:42:23 +01:00
|
|
|
CClientDlg ( CClient* pNCliP,
|
|
|
|
CSettings* pNSetP,
|
2015-03-25 21:29:52 +01:00
|
|
|
const QString& strConnOnStartupAddress,
|
2013-03-24 16:42:23 +01:00
|
|
|
const bool bNewShowComplRegConnList,
|
|
|
|
const bool bShowAnalyzerConsole,
|
|
|
|
QWidget* parent = 0,
|
|
|
|
Qt::WindowFlags f = 0 );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void SetGUIDesign ( const EGUIDesign eNewDesign );
|
|
|
|
void SetMyWindowTitle ( const int iNumClients );
|
2013-05-03 21:11:01 +02:00
|
|
|
void ShowConnectionSetupDialog();
|
2015-01-31 09:18:17 +01:00
|
|
|
void ShowMusicianProfileDialog();
|
2013-01-23 11:41:13 +01:00
|
|
|
void ShowGeneralSettings();
|
2014-02-25 15:38:12 +01:00
|
|
|
void ShowChatWindow ( const bool bForceRaise = true );
|
2013-03-02 20:52:13 +01:00
|
|
|
void ShowAnalyzerConsole();
|
2013-01-23 11:41:13 +01:00
|
|
|
void UpdateAudioFaderSlider();
|
|
|
|
void UpdateRevSelection();
|
2013-05-03 21:11:01 +02:00
|
|
|
void Connect ( const QString& strSelectedAddress,
|
|
|
|
const QString& strMixerBoardLabel );
|
|
|
|
void Disconnect();
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
CClient* pClient;
|
|
|
|
CSettings* pSettings;
|
|
|
|
|
|
|
|
bool bConnected;
|
|
|
|
QTimer TimerSigMet;
|
2014-01-03 09:54:49 +01:00
|
|
|
QTimer TimerBuffersLED;
|
2013-01-23 11:41:13 +01:00
|
|
|
QTimer TimerStatus;
|
|
|
|
QTimer TimerPing;
|
|
|
|
|
|
|
|
virtual void closeEvent ( QCloseEvent* Event );
|
|
|
|
void UpdateDisplay();
|
|
|
|
|
|
|
|
QMenu* pViewMenu;
|
|
|
|
QMenuBar* pMenu;
|
2013-02-11 16:53:52 +01:00
|
|
|
QMenu* pInstrPictPopupMenu;
|
2015-01-24 16:38:39 +01:00
|
|
|
QMenu* pCountryFlagPopupMenu;
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
CClientSettingsDlg ClientSettingsDlg;
|
|
|
|
CChatDlg ChatDlg;
|
|
|
|
CConnectDlg ConnectDlg;
|
2013-03-02 20:52:13 +01:00
|
|
|
CAnalyzerConsole AnalyzerConsole;
|
2015-01-31 09:18:17 +01:00
|
|
|
CMusProfDlg MusicianProfileDlg;
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnAboutToQuit() { pSettings->Save(); }
|
|
|
|
|
|
|
|
void OnConnectDisconBut();
|
|
|
|
void OnTimerSigMet();
|
2014-01-03 09:54:49 +01:00
|
|
|
void OnTimerBuffersLED();
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
void OnTimerStatus() { UpdateDisplay(); }
|
|
|
|
|
|
|
|
void OnTimerPing();
|
|
|
|
void OnPingTimeResult ( int iPingTime );
|
|
|
|
void OnCLPingTimeWithNumClientsReceived ( CHostAddress InetAddr,
|
|
|
|
int iPingTime,
|
|
|
|
int iNumClients );
|
|
|
|
|
2014-02-23 10:46:25 +01:00
|
|
|
#ifdef ENABLE_CLIENT_VERSION_AND_OS_DEBUGGING
|
2014-02-21 22:25:26 +01:00
|
|
|
void OnCLVersionAndOSReceived ( CHostAddress InetAddr,
|
|
|
|
COSUtil::EOpSystemType eOSType,
|
|
|
|
QString strVersion )
|
|
|
|
{ ConnectDlg.SetVersionAndOSType ( InetAddr, eOSType, strVersion ); }
|
2014-02-23 10:46:25 +01:00
|
|
|
#endif
|
2014-02-21 22:25:26 +01:00
|
|
|
|
2013-05-03 21:11:01 +02:00
|
|
|
void OnOpenConnectionSetupDialog() { ShowConnectionSetupDialog(); }
|
2015-01-31 09:18:17 +01:00
|
|
|
void OnOpenMusicianProfileDialog() { ShowMusicianProfileDialog(); }
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnOpenGeneralSettings() { ShowGeneralSettings(); }
|
|
|
|
void OnOpenChatDialog() { ShowChatWindow(); }
|
2013-03-02 20:52:13 +01:00
|
|
|
void OnOpenAnalyzerConsole() { ShowAnalyzerConsole(); }
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
void OnSettingsStateChanged ( int value );
|
|
|
|
void OnChatStateChanged ( int value );
|
2015-01-31 11:04:15 +01:00
|
|
|
void OnProfileStateChanged ( int value );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
void OnAudioPanValueChanged ( int value );
|
|
|
|
|
|
|
|
void OnAudioReverbValueChanged ( int value )
|
|
|
|
{ pClient->SetReverbLevel ( value ); }
|
|
|
|
|
|
|
|
void OnReverbSelLClicked()
|
|
|
|
{ pClient->SetReverbOnLeftChan ( true ); }
|
|
|
|
|
|
|
|
void OnReverbSelRClicked()
|
|
|
|
{ pClient->SetReverbOnLeftChan ( false ); }
|
|
|
|
|
2013-02-11 16:53:52 +01:00
|
|
|
void OnConClientListMesReceived ( CVector<CChannelInfo> vecChanInfo );
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnChatTextReceived ( QString strChatText );
|
2015-01-23 20:43:18 +01:00
|
|
|
void OnLicenceRequired ( ELicenceType eLicenceType );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
void OnChangeChanGain ( int iId, double dGain )
|
|
|
|
{ pClient->SetRemoteChanGain ( iId, dGain ); }
|
|
|
|
|
|
|
|
void OnNewLocalInputText ( QString strChatText )
|
|
|
|
{ pClient->CreateChatTextMes ( strChatText ); }
|
|
|
|
|
|
|
|
void OnReqServerListQuery ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLReqServerListMes ( InetAddr ); }
|
|
|
|
|
|
|
|
void OnCreateCLServerListPingMes ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLServerListPingMes ( InetAddr ); }
|
|
|
|
|
2014-02-21 22:25:26 +01:00
|
|
|
void OnCreateCLServerListReqVerAndOSMes ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLServerListReqVerAndOSMes ( InetAddr ); }
|
|
|
|
|
2015-12-09 16:50:30 +01:00
|
|
|
void OnCreateCLServerListReqConnClientsListMes ( CHostAddress InetAddr )
|
|
|
|
{ pClient->CreateCLServerListReqConnClientsListMes ( InetAddr ); }
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnCLServerListReceived ( CHostAddress InetAddr,
|
|
|
|
CVector<CServerInfo> vecServerInfo )
|
|
|
|
{ ConnectDlg.SetServerList ( InetAddr, vecServerInfo ); }
|
|
|
|
|
2015-12-09 16:50:30 +01:00
|
|
|
void OnCLConnClientsListMesReceived ( CHostAddress InetAddr,
|
|
|
|
CVector<CChannelInfo> vecChanInfo )
|
|
|
|
{ ConnectDlg.SetConnClientsList ( InetAddr, vecChanInfo ); }
|
|
|
|
|
2013-05-03 21:11:01 +02:00
|
|
|
void OnConnectDlgAccepted();
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnDisconnected();
|
|
|
|
|
2014-07-26 08:07:50 +02:00
|
|
|
#ifdef USE_LEGACY_CELT
|
2013-03-10 09:19:41 +01:00
|
|
|
void OnUpstreamRateChanged()
|
|
|
|
{ ClientSettingsDlg.UpdateDisplay(); }
|
2014-07-26 08:07:50 +02:00
|
|
|
#endif
|
2013-03-10 09:19:41 +01:00
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnGUIDesignChanged()
|
|
|
|
{ SetGUIDesign ( pClient->GetGUIDesign() ); }
|
|
|
|
|
2014-02-24 20:51:57 +01:00
|
|
|
void OnAudioChannelsChanged() { UpdateRevSelection(); }
|
2013-01-23 11:41:13 +01:00
|
|
|
void OnNumClientsChanged ( int iNewNumClients );
|
2015-11-25 16:52:00 +01:00
|
|
|
void OnNewClientLevelChanged() { MainMixerBoard->iNewClientFaderLevel = pClient->iNewClientFaderLevel; }
|
2013-01-23 11:41:13 +01:00
|
|
|
};
|