1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/group.h

81 lines
2.0 KiB
C
Raw Normal View History

2014-07-07 00:19:45 +08:00
/*
Copyright © 2014-2015 by The qTox Project
2014-07-07 00:19:45 +08:00
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre software: you can redistribute it and/or modify
2014-07-07 00:19:45 +08:00
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.
qTox is distributed in the hope that it will be useful,
2014-07-07 00:19:45 +08:00
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.
2014-07-07 00:19:45 +08:00
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
2014-07-07 00:19:45 +08:00
*/
2014-06-25 04:11:11 +08:00
#ifndef GROUP_H
#define GROUP_H
#include <QMap>
2014-09-11 21:44:34 +08:00
#include <QObject>
#include <QStringList>
2014-06-25 04:11:11 +08:00
#define RETRY_PEER_INFO_INTERVAL 500
class Friend;
2014-06-25 04:11:11 +08:00
class GroupWidget;
class GroupChatForm;
class ToxId;
2014-06-25 04:11:11 +08:00
class Group : public QObject
{
Q_OBJECT
public:
2014-11-13 20:11:23 +08:00
Group(int GroupId, QString Name, bool IsAvGroupchat);
2014-11-23 23:22:29 +08:00
virtual ~Group();
bool isAvGroupchat() const;
int getGroupId() const;
int getPeersCount() const;
void regeneratePeerList();
QStringList getPeerList() const;
bool isSelfPeerNumber(int peernumber) const;
2014-11-23 23:22:29 +08:00
GroupChatForm *getChatForm();
GroupWidget *getGroupWidget();
void setEventFlag(int f);
int getEventFlag() const;
void setMentionedFlag(int f);
int getMentionedFlag() const;
2014-06-25 04:11:11 +08:00
void updatePeer(int peerId, QString newName);
2014-11-06 08:22:50 +08:00
void setName(const QString& name);
QString getName() const;
2014-06-25 04:11:11 +08:00
QString resolveToxId(const ToxId &id) const;
2014-11-23 23:55:49 +08:00
signals:
void titleChanged(GroupWidget* widget);
void userListChanged(GroupWidget* widget);
2014-11-23 23:22:29 +08:00
private:
2014-06-25 04:11:11 +08:00
GroupWidget* widget;
GroupChatForm* chatForm;
QStringList peers;
2014-11-23 23:55:49 +08:00
QMap<QString, QString> toxids;
2014-06-28 07:46:13 +08:00
int hasNewMessages, userWasMentioned;
2014-11-23 23:22:29 +08:00
int groupId;
int nPeers;
int selfPeerNum = -1;
2014-11-13 20:11:23 +08:00
bool avGroupchat;
2014-11-23 23:22:29 +08:00
2014-06-25 04:11:11 +08:00
};
#endif // GROUP_H