* Fixed Colors and Fonts for Private and Group Chat.

* Fixed Chat Delay.
 * Cleaned up Options->Server, removing unneccessary stuff.
 * Cleaned up Config Friend, removing stuff.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@472 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-04-05 12:14:49 +00:00
parent cb795b3c67
commit 65bb6a65d7
9 changed files with 453 additions and 501 deletions

View file

@ -114,7 +114,7 @@ void NotifyQt::UpdateGUI()
bool uNeigh = iface->hasChanged(RsIface::Neighbour);
bool uFri = iface->hasChanged(RsIface::Friend);
bool uTrans = iface->hasChanged(RsIface::Transfer);
bool uChat = iface->hasChanged(RsIface::Chat);
//bool uChat = iface->hasChanged(RsIface::Chat);
bool uMsg = iface->hasChanged(RsIface::Message);
bool uChan = iface->hasChanged(RsIface::Channel);
bool uRecom = iface->hasChanged(RsIface::Recommend);
@ -132,7 +132,7 @@ static time_t lastTs = 0;
uNeigh = true;
uFri = true;
uTrans = true;
uChat = true;
//uChat = true;
uMsg = true;
uChan = true;
uRecom = true;
@ -148,8 +148,8 @@ static time_t lastTs = 0;
if (uTrans)
displayTransfers();
if (uChat)
displayChat();
//if (uChat)
// displayChat();
if (uMsg)
displayMessages();

View file

@ -127,6 +127,7 @@ virtual bool MessageRead(std::string mid) = 0;
/****************************************/
/* Chat */
virtual bool chatAvailable() = 0;
virtual bool ChatSend(ChatInfo &ci) = 0;
virtual bool getNewChat(std::list<ChatInfo> &chats) = 0;