2006-12-18 15:39:33 +01:00
|
|
|
/******************************************************************************\
|
2009-02-22 12:07:18 +01:00
|
|
|
* Copyright (c) 2004-2009
|
2006-12-18 15:39:33 +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
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2008-01-20 19:07:13 +01:00
|
|
|
#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>
|
2006-12-18 15:39:33 +01:00
|
|
|
#include "global.h"
|
|
|
|
#include "client.h"
|
2006-11-03 19:54:12 +01:00
|
|
|
#include "multicolorled.h"
|
2006-12-09 16:00:24 +01:00
|
|
|
#include "audiomixerboard.h"
|
2006-12-18 15:39:33 +01:00
|
|
|
#include "clientsettingsdlg.h"
|
2008-07-24 18:20:25 +02:00
|
|
|
#include "chatdlg.h"
|
2006-12-18 15:39:33 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include "../windows/moc/llconclientdlgbase.h"
|
|
|
|
#else
|
|
|
|
# include "moc/llconclientdlgbase.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
2007-09-08 12:45:14 +02:00
|
|
|
// text strings for connection button for connect and disconnect
|
2006-12-18 15:39:33 +01:00
|
|
|
#define CON_BUT_CONNECTTEXT "C&onnect"
|
|
|
|
#define CON_BUT_DISCONNECTTEXT "D&isconnect"
|
|
|
|
|
2007-09-08 12:45:14 +02:00
|
|
|
// update time for GUI controls
|
|
|
|
#define LEVELMETER_UPDATE_TIME 100 // ms
|
|
|
|
#define STATUSBAR_UPDATE_TIME 1000 // ms
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2007-09-08 12:45:14 +02:00
|
|
|
// range for signal level meter
|
|
|
|
#define LOW_BOUND_SIG_METER ( -50.0 ) // dB
|
|
|
|
#define UPPER_BOUND_SIG_METER ( 0.0 ) // dB
|
2006-01-28 12:29:22 +01:00
|
|
|
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
2008-01-14 23:14:17 +01:00
|
|
|
class CLlconClientDlg : public QDialog, private Ui_CLlconClientDlgBase
|
2006-12-18 15:39:33 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2009-05-26 22:01:23 +02:00
|
|
|
CLlconClientDlg ( CClient* pNCliP, const bool bNewConnectOnStartup,
|
2009-06-13 10:14:11 +02:00
|
|
|
const bool bNewDisalbeLEDs,
|
2009-05-26 22:01:23 +02:00
|
|
|
QWidget* parent = 0, Qt::WindowFlags f = 0 );
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2006-11-20 00:14:22 +01:00
|
|
|
protected:
|
2009-09-19 10:28:24 +02:00
|
|
|
void SetGUIDesign ( const EGUIDesign eNewDesign );
|
2008-07-24 18:20:25 +02:00
|
|
|
void ShowChatWindow();
|
2009-02-17 13:32:50 +01:00
|
|
|
void UpdateAudioFaderSlider();
|
2009-08-17 19:39:40 +02:00
|
|
|
void ConnectDisconnect ( const bool bDoStart );
|
2008-07-24 18:20:25 +02:00
|
|
|
|
2006-12-18 15:39:33 +01:00
|
|
|
CClient* pClient;
|
|
|
|
bool bConnected;
|
2009-08-21 18:12:18 +02:00
|
|
|
bool bUnreadChatMessage;
|
2006-12-18 15:39:33 +01:00
|
|
|
QTimer TimerSigMet;
|
2006-11-25 15:46:57 +01:00
|
|
|
QTimer TimerStatus;
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2008-01-15 21:07:55 +01:00
|
|
|
virtual void customEvent ( QEvent* Event );
|
|
|
|
virtual void closeEvent ( QCloseEvent* Event );
|
2006-11-25 15:46:57 +01:00
|
|
|
void UpdateDisplay();
|
2006-11-20 00:14:22 +01:00
|
|
|
|
2008-01-15 21:07:55 +01:00
|
|
|
QMenu* pSettingsMenu;
|
2006-11-25 15:46:57 +01:00
|
|
|
QMenuBar* pMenu;
|
2006-01-28 12:29:22 +01:00
|
|
|
|
2006-11-25 15:46:57 +01:00
|
|
|
CClientSettingsDlg ClientSettingsDlg;
|
2008-07-24 18:20:25 +02:00
|
|
|
CChatDlg ChatDlg;
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnConnectDisconBut();
|
|
|
|
void OnTimerSigMet();
|
2006-11-25 15:46:57 +01:00
|
|
|
void OnTimerStatus() { UpdateDisplay(); }
|
2006-12-18 15:39:33 +01:00
|
|
|
void OnOpenGeneralSettings();
|
2008-07-24 18:20:25 +02:00
|
|
|
void OnOpenChatDialog() { ShowChatWindow(); }
|
2009-02-17 13:32:50 +01:00
|
|
|
void OnSliderAudInFader ( int value );
|
2008-02-02 10:35:58 +01:00
|
|
|
void OnSliderAudReverb ( int value ) { pClient->SetReverbLevel ( value ); }
|
|
|
|
void OnRevSelL() { pClient->SetReverbOnLeftChan ( true ); }
|
|
|
|
void OnRevSelR() { pClient->SetReverbOnLeftChan ( false ); }
|
2006-12-09 16:00:24 +01:00
|
|
|
void OnConClientListMesReceived ( CVector<CChannelShortInfo> vecChanInfo )
|
|
|
|
{ MainMixerBoard->ApplyNewConClientList ( vecChanInfo ); }
|
|
|
|
void OnChangeChanGain ( int iId, double dGain )
|
|
|
|
{ pClient->SetRemoteChanGain ( iId, dGain ); }
|
2006-12-10 12:06:14 +01:00
|
|
|
void OnFaderTagTextChanged ( const QString& strNewName );
|
2008-07-24 18:20:25 +02:00
|
|
|
void OnChatTextReceived ( QString strChatText );
|
|
|
|
void OnNewLocalInputText ( QString strChatText )
|
|
|
|
{ pClient->SendTextMess ( strChatText ); }
|
2009-05-04 13:27:05 +02:00
|
|
|
void OnLineEditServerAddrTextChanged ( const QString sNewText );
|
|
|
|
void OnLineEditServerAddrActivated ( int index );
|
2009-08-17 18:20:15 +02:00
|
|
|
void OnDisconnected();
|
2009-08-19 09:23:33 +02:00
|
|
|
void OnStopped();
|
2009-09-19 10:28:24 +02:00
|
|
|
void OnGUIDesignChanged() { SetGUIDesign ( pClient->GetGUIDesign() ); }
|
2006-12-18 15:39:33 +01:00
|
|
|
};
|