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.
70 lines
2.2 KiB
70 lines
2.2 KiB
/* |
|
Copyright © 2014-2019 by The qTox Project Contributors |
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox. |
|
|
|
qTox 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. |
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>. |
|
*/ |
|
|
|
#ifndef GROUPWIDGET_H |
|
#define GROUPWIDGET_H |
|
|
|
#include "genericchatroomwidget.h" |
|
|
|
#include "src/model/chatroom/groupchatroom.h" |
|
#include "src/core/groupid.h" |
|
|
|
#include <memory> |
|
|
|
class GroupWidget final : public GenericChatroomWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
GroupWidget(std::shared_ptr<GroupChatroom> chatroom, bool compact); |
|
~GroupWidget(); |
|
void setAsInactiveChatroom() final override; |
|
void setAsActiveChatroom() final override; |
|
void updateStatusLight() final override; |
|
void resetEventFlags() final override; |
|
QString getStatusString() const final override; |
|
Group* getGroup() const final override; |
|
const Contact* getContact() const final override; |
|
void setName(const QString& name); |
|
void editName(); |
|
|
|
signals: |
|
void groupWidgetClicked(GroupWidget* widget); |
|
void removeGroup(const GroupId& groupId); |
|
|
|
protected: |
|
void contextMenuEvent(QContextMenuEvent* event) final override; |
|
void mousePressEvent(QMouseEvent* event) final override; |
|
void mouseMoveEvent(QMouseEvent* event) final override; |
|
void dragEnterEvent(QDragEnterEvent* ev) override; |
|
void dragLeaveEvent(QDragLeaveEvent* ev) override; |
|
void dropEvent(QDropEvent* ev) override; |
|
|
|
private slots: |
|
void retranslateUi(); |
|
void updateTitle(const QString& author, const QString& newName); |
|
void updateUserCount(int numPeers); |
|
|
|
public: |
|
GroupId groupId; |
|
|
|
private: |
|
std::shared_ptr<GroupChatroom> chatroom; |
|
}; |
|
|
|
#endif // GROUPWIDGET_H
|
|
|