mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.9 KiB
71 lines
1.9 KiB
/* |
|
Copyright (C) 2014 by Project Tox <https://tox.im> |
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox. |
|
|
|
This program is libre 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 3 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 COPYING file for more details. |
|
*/ |
|
|
|
#include "group.h" |
|
#include "widget/groupwidget.h" |
|
#include "widget/form/groupchatform.h" |
|
#include "friendlist.h" |
|
#include "friend.h" |
|
#include "core.h" |
|
#include <QDebug> |
|
#include <QTimer> |
|
|
|
Group::Group(int GroupId, QString Name) |
|
: groupId(GroupId), nPeers{0} |
|
{ |
|
widget = new GroupWidget(groupId, Name); |
|
chatForm = new GroupChatForm(this); |
|
|
|
//in groupchats, we only notify on messages containing your name <-- dumb |
|
// sound notifications should be on all messages, but system popup notification |
|
// on naming is appropriate |
|
hasNewMessages = 0; |
|
userWasMentioned = 0; |
|
} |
|
|
|
Group::~Group() |
|
{ |
|
delete chatForm; |
|
delete widget; |
|
} |
|
|
|
void Group::addPeer(int peerId, QString name) |
|
{ |
|
if (peers.contains(peerId)) |
|
qWarning() << "Group::addPeer: peerId already used, overwriting anyway"; |
|
if (name.isEmpty()) |
|
peers[peerId] = "<Unknown>"; |
|
else |
|
peers[peerId] = name; |
|
nPeers++; |
|
widget->onUserListChanged(); |
|
chatForm->onUserListChanged(); |
|
} |
|
|
|
void Group::removePeer(int peerId) |
|
{ |
|
peers.remove(peerId); |
|
nPeers--; |
|
widget->onUserListChanged(); |
|
chatForm->onUserListChanged(); |
|
} |
|
|
|
void Group::updatePeer(int peerId, QString name) |
|
{ |
|
peers[peerId] = name; |
|
widget->onUserListChanged(); |
|
chatForm->onUserListChanged(); |
|
}
|
|
|