2012-08-05 16:12:55 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 RetroShare Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "ChatUserNotify.h"
|
|
|
|
#include "gui/notifyqt.h"
|
|
|
|
#include "gui/MainWindow.h"
|
|
|
|
#include "gui/chat/ChatDialog.h"
|
2014-12-29 16:41:05 -05:00
|
|
|
#include "gui/settings/rsharesettings.h"
|
2012-08-05 16:12:55 -04:00
|
|
|
|
|
|
|
#include <retroshare/rsnotify.h>
|
|
|
|
#include <retroshare/rsmsgs.h>
|
|
|
|
|
|
|
|
ChatUserNotify::ChatUserNotify(QObject *parent) :
|
2014-12-29 16:41:05 -05:00
|
|
|
UserNotify(parent)
|
2012-08-05 16:12:55 -04:00
|
|
|
{
|
2014-12-29 16:41:05 -05:00
|
|
|
connect(NotifyQt::getInstance(), SIGNAL(chatMessageReceived(ChatMessage)), this, SLOT(chatMessageReceived(ChatMessage)));
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|
|
|
|
|
2014-07-24 16:01:12 -04:00
|
|
|
bool ChatUserNotify::hasSetting(QString *name, QString *group)
|
2012-08-05 16:12:55 -04:00
|
|
|
{
|
2014-07-24 16:01:12 -04:00
|
|
|
if (name) *name = tr("Private Chat");
|
|
|
|
if (group) *group = "PrivateChat";
|
2012-08-05 16:12:55 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon ChatUserNotify::getIcon()
|
|
|
|
{
|
|
|
|
return QIcon(":/images/chat.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon ChatUserNotify::getMainIcon(bool hasNew)
|
|
|
|
{
|
2013-08-20 12:57:05 -04:00
|
|
|
return hasNew ? QIcon(":/images/user/friends24_notify.png") : QIcon(":/images/groupchat.png");
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int ChatUserNotify::getNewCount()
|
|
|
|
{
|
2014-12-29 16:41:05 -05:00
|
|
|
int sum = 0;
|
|
|
|
for(std::map<ChatId, int>::iterator mit = mWaitingChats.begin(); mit != mWaitingChats.end(); ++mit)
|
|
|
|
{
|
|
|
|
sum += mit->second;
|
|
|
|
}
|
|
|
|
return sum;
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatUserNotify::iconClicked()
|
|
|
|
{
|
|
|
|
ChatDialog *chatDialog = NULL;
|
2014-12-29 16:41:05 -05:00
|
|
|
if (mWaitingChats.empty() == false) {
|
|
|
|
chatDialog = ChatDialog::getChat(mWaitingChats.begin()->first, RS_CHAT_OPEN | RS_CHAT_FOCUS);
|
|
|
|
mWaitingChats.erase(mWaitingChats.begin());
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (chatDialog == NULL) {
|
|
|
|
MainWindow::showWindow(MainWindow::Friends);
|
|
|
|
}
|
2014-12-29 16:41:05 -05:00
|
|
|
updateIcon();
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|
|
|
|
|
2014-12-29 16:41:05 -05:00
|
|
|
void ChatUserNotify::chatMessageReceived(ChatMessage msg)
|
2012-08-05 16:12:55 -04:00
|
|
|
{
|
2014-12-29 16:41:05 -05:00
|
|
|
if(ChatDialog::getExistingChat(msg.chat_id) || (Settings->getChatFlags() & RS_CHAT_OPEN) || msg.chat_id.isGxsId())
|
|
|
|
ChatDialog::chatMessageReceived(msg);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// this implicitly counts broadcast messages, because broadcast messages are not handled by chat dialog
|
|
|
|
bool found = false;
|
|
|
|
for(std::map<ChatId, int>::iterator mit = mWaitingChats.begin(); mit != mWaitingChats.end(); ++mit)
|
|
|
|
{
|
|
|
|
if(msg.chat_id.isSameEndpoint(mit->first))
|
|
|
|
{
|
|
|
|
mit->second++;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found)
|
|
|
|
mWaitingChats[msg.chat_id] = 1;
|
|
|
|
updateIcon();
|
|
|
|
}
|
2012-08-05 16:12:55 -04:00
|
|
|
}
|