Add the function to Mute peers in ChatLobby via checkbox.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5142 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
notdefine 2012-05-05 14:22:21 +00:00
parent 2611da2f72
commit 94a6e1035a
2 changed files with 88 additions and 4 deletions

View file

@ -58,15 +58,23 @@ protected:
protected slots:
void changeNickname();
void changePartipationState(QListWidgetItem *item);
private:
void updateParticipantsList();
bool isParticipantMuted(QString &participant);
ChatLobbyId lobbyId;
time_t lastUpdateListTime;
/** Qt Designer generated object */
Ui::ChatLobbyDialog ui;
/** Ignored Users in Chatlobby */
QStringList *mutedParticipants;
};
#endif