/******************************************************************************\ * Copyright (c) 2004-2020 * * 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 * \******************************************************************************/ #pragma once #include #include #include #include #include #include #include #include #include #include #include "global.h" #include "util.h" #include "multicolorledbar.h" /* Classes ********************************************************************/ class CChannelFader : public QObject { Q_OBJECT public: CChannelFader ( QWidget* pNW, QHBoxLayout* pParentLayout ); void SetText ( const CChannelInfo& ChanInfo ); QString GetReceivedName() { return strReceivedName; } void SetChannelInfos ( const CChannelInfo& cChanInfo ); void Show() { pFrame->show(); } void Hide() { pFrame->hide(); } bool IsVisible() { return !pFrame->isHidden(); } bool IsSolo() { return pcbSolo->isChecked(); } bool IsMute() { return pcbMute->isChecked(); } void SetGUIDesign ( const EGUIDesign eNewDesign ); void SetDisplayChannelLevel ( const bool eNDCL ); bool GetDisplayChannelLevel(); void UpdateSoloState ( const bool bNewOtherSoloState ); void SetFaderLevel ( const int iLevel ); void SetPanValue ( const int iPan ); void SetFaderIsSolo ( const bool bIsSolo ); void SetFaderIsMute ( const bool bIsMute ); int GetFaderLevel() { return pFader->value(); } int GetPanValue() {return pPan->value(); } void Reset(); void SetChannelLevel ( const uint16_t iLevel ); protected: double CalcFaderGain ( const int value ); void SetMute ( const bool bState ); void SendFaderLevelToServer ( const int iLevel ); void SendPanValueToServer ( const int iPan ); void SetupFaderTag ( const ESkillLevel eSkillLevel ); QFrame* pFrame; QWidget* pLevelsBox; QWidget* pMuteSoloBox; CMultiColorLEDBar* plbrChannelLevel; QSlider* pFader; QSlider* pPan; QCheckBox* pcbMute; QCheckBox* pcbSolo; QGroupBox* pLabelInstBox; QLabel* plblLabel; QLabel* plblInstrument; QLabel* plblCountryFlag; QString strReceivedName; bool bOtherChannelIsSolo; public slots: void OnLevelValueChanged ( int value ) { SendFaderLevelToServer ( value ); } void OnPanValueChanged ( int value ) {SendPanValueToServer ( value ); } void OnMuteStateChanged ( int value ); signals: void gainValueChanged ( double value ); void panValueChanged (double value ); void soloStateChanged ( int value ); }; template class CAudioMixerBoardSlots : public CAudioMixerBoardSlots { public: void OnChGainValueChanged ( double dValue ) { UpdateGainValue ( slotId - 1, dValue ); } void OnChPanValueChanged ( double dValue ) { UpdatePanValue ( slotId - 1, dValue ); } protected: virtual void UpdateGainValue ( const int iChannelIdx, const double dValue ) = 0; virtual void UpdatePanValue ( const int iChannelIdx, const double dValue ) = 0; }; template<> class CAudioMixerBoardSlots<0> {}; class CAudioMixerBoard : public QScrollArea, public CAudioMixerBoardSlots { Q_OBJECT public: CAudioMixerBoard ( QWidget* parent = nullptr, Qt::WindowFlags f = nullptr ); void HideAll(); void ApplyNewConClientList ( CVector& vecChanInfo ); void SetServerName ( const QString& strNewServerName ); void SetGUIDesign ( const EGUIDesign eNewDesign ); void SetDisplayChannelLevels ( const bool eNDCL ); void SetFaderLevel ( const int iChannelIdx, const int iValue ); void SetChannelLevels ( const CVector& vecChannelLevel ); // settings CVector vecStoredFaderTags; CVector vecStoredFaderLevels; CVector vecStoredPanValues; CVector vecStoredFaderIsSolo; CVector vecStoredFaderIsMute; int iNewClientFaderLevel; protected: bool GetStoredFaderSettings (const CChannelInfo& ChanInfo, int& iStoredFaderLevel, int& iStoredPanValue, bool& bStoredFaderIsSolo, bool& bStoredFaderIsMute ); void StoreFaderSettings ( CChannelFader* pChanFader ); void UpdateSoloStates(); void OnGainValueChanged ( const int iChannelIdx, const double dValue ); CVector vecpChanFader; QGroupBox* pGroupBox; QHBoxLayout* pMainLayout; bool bDisplayChannelLevels; bool bNoFaderVisible; QString strServerName; virtual void UpdateGainValue ( const int iChannelIdx, const double dValue ); virtual void UpdatePanValue ( const int iChannelIdx, const double dValue ); template inline void connectFaderSignalsToMixerBoardSlots(); signals: void ChangeChanGain ( int iId, double dGain ); void ChangeChanPan ( int iId, double dPan ); void NumClientsChanged ( int iNewNumClients ); };