mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-14 09:29:30 -04:00
* 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:
parent
cb795b3c67
commit
65bb6a65d7
9 changed files with 453 additions and 501 deletions
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue