show channel numbers if --ctrlmidich is used (#241, #95)

This commit is contained in:
Volker Fischer 2020-06-06 15:51:54 +02:00
parent ab92abfd63
commit 33073658c6
4 changed files with 16 additions and 1 deletions

View File

@ -16,6 +16,8 @@
- avoid showing IP address if no name in the musician profile is given (#316)
- show channel numbers if --ctrlmidich is used (#241, #95)
- bug fix: on MacOS declare an activity to ensure the process doesn't get throttled
by OS level Nap, Sleep, and Thread Priority systems, coded by AronVietti (#23)
@ -23,7 +25,6 @@
3.5.5 (2020-05-26)
- added banjo/mandolin instrument icons created by atsampson (#283)

View File

@ -29,6 +29,7 @@
CClientDlg::CClientDlg ( CClient* pNCliP,
CSettings* pNSetP,
const QString& strConnOnStartupAddress,
const int iCtrlMIDIChannel,
const bool bNewShowComplRegConnList,
const bool bShowAnalyzerConsole,
QWidget* parent,
@ -37,6 +38,7 @@ CClientDlg::CClientDlg ( CClient* pNCliP,
pClient ( pNCliP ),
pSettings ( pNSetP ),
bConnectDlgWasShown ( false ),
bMIDICtrlUsed ( iCtrlMIDIChannel != INVALID_MIDI_CH ),
ClientSettingsDlg ( pNCliP, parent, Qt::Window ),
ChatDlg ( parent, Qt::Window ),
ConnectDlg ( pNCliP, bNewShowComplRegConnList, parent, Qt::Dialog ),
@ -812,6 +814,15 @@ void CClientDlg::OnLicenceRequired ( ELicenceType eLicenceType )
void CClientDlg::OnConClientListMesReceived ( CVector<CChannelInfo> vecChanInfo )
{
// show channel numbers if --ctrlmidich is used (#241, #95)
if ( bMIDICtrlUsed )
{
for ( int i = 0; i < vecChanInfo.Size(); i++ )
{
vecChanInfo[i].strName.prepend ( QString().setNum ( vecChanInfo[i].iChanID ) + ":" );
}
}
// update mixer board with the additional client infos
MainMixerBoard->ApplyNewConClientList ( vecChanInfo );
}

View File

@ -72,6 +72,7 @@ public:
CClientDlg ( CClient* pNCliP,
CSettings* pNSetP,
const QString& strConnOnStartupAddress,
const int iCtrlMIDIChannel,
const bool bNewShowComplRegConnList,
const bool bShowAnalyzerConsole,
QWidget* parent = nullptr,
@ -96,6 +97,7 @@ protected:
bool bConnected;
bool bConnectDlgWasShown;
bool bMIDICtrlUsed;
QTimer TimerSigMet;
QTimer TimerBuffersLED;
QTimer TimerStatus;

View File

@ -608,6 +608,7 @@ int main ( int argc, char** argv )
CClientDlg ClientDlg ( &Client,
&Settings,
strConnOnStartupAddress,
iCtrlMIDIChannel,
bShowComplRegConnList,
bShowAnalyzerConsole,
nullptr,