Handle users joining and leaving properly in audio context and gui

Before this change signals when users were joining or leaving
the voice room were not properly handled. A new signal in audio
context is emitted now and gui will rebuild the user list when it
is emitted.
This commit is contained in:
Roland Winklmeier
2015-03-13 20:56:04 +01:00
committed by Klaus Basan
parent a50e45e451
commit 0760a67138
5 changed files with 29 additions and 5 deletions

View File

@@ -84,6 +84,9 @@ namespace BlackCore
//! \details the flag indicates, whether a room got connected or disconnected
void changedVoiceRooms(const BlackMisc::Audio::CVoiceRoomList &voiceRooms, bool connected);
//! Voice room members changed
void changedVoiceRoomMembers();
//! Audio volume changed
//! \sa setVoiceOutputVolume
void changedAudioVolume(int volume);