added list of participants in lobby, handled large messages using splitted display (cannot ensure rebuilt message yet.)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4745 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2011-12-29 14:19:53 +00:00
parent fb263f2fcc
commit 94608c8467
5 changed files with 68 additions and 60 deletions

View file

@ -30,6 +30,7 @@ class QTextEdit;
class QTextCharFormat;
class AttachFileItem;
class ChatInfo;
class QListWidget ;
#include <retroshare/rsmsgs.h>
#include "ChatStyle.h"
@ -61,7 +62,10 @@ class ChatLobbyDialog: public PopupChatDialog
void setNickName(const QString&) ;
private:
void updateFriendsList() ;
ChatLobbyId lobby_id ;
QListWidget *friendsListWidget ;
};
#endif