2015-05-28 01:17:12 +08:00
|
|
|
/*
|
2015-06-12 03:27:54 +08:00
|
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
|
2015-05-28 01:17:12 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-12 03:27:54 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2015-05-28 01:17:12 +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.
|
2015-06-12 03:27:54 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2015-05-28 01:17:12 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-12 03:27:54 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-12 03:27:54 +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/>.
|
2015-05-28 01:17:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CIRCLEWIDGET_H
|
|
|
|
#define CIRCLEWIDGET_H
|
|
|
|
|
2015-06-12 03:27:54 +08:00
|
|
|
#include "categorywidget.h"
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-12 03:27:54 +08:00
|
|
|
class CircleWidget final : public CategoryWidget
|
2015-05-28 01:17:12 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-06-17 04:26:20 +08:00
|
|
|
CircleWidget(FriendListWidget* parent, int id);
|
2015-06-13 02:52:05 +08:00
|
|
|
~CircleWidget();
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-17 04:26:20 +08:00
|
|
|
void editName();
|
2015-06-04 04:18:40 +08:00
|
|
|
static CircleWidget* getFromID(int id);
|
2015-06-02 02:39:40 +08:00
|
|
|
|
|
|
|
signals:
|
2015-06-11 00:11:50 +08:00
|
|
|
void renameRequested(CircleWidget* circleWidget, const QString &newName);
|
2015-06-02 02:39:40 +08:00
|
|
|
|
2015-05-28 01:17:12 +08:00
|
|
|
protected:
|
2015-06-11 00:11:50 +08:00
|
|
|
virtual void contextMenuEvent(QContextMenuEvent* event) final override;
|
|
|
|
virtual void dragEnterEvent(QDragEnterEvent* event) final override;
|
|
|
|
virtual void dragLeaveEvent(QDragLeaveEvent* event) final override;
|
|
|
|
virtual void dropEvent(QDropEvent* event) final override;
|
2015-05-28 01:17:12 +08:00
|
|
|
|
|
|
|
private:
|
2015-06-12 03:27:54 +08:00
|
|
|
virtual void onSetName() final override;
|
|
|
|
virtual void onExpand() final override;
|
|
|
|
virtual void onAddFriendWidget(FriendWidget* w) final override;
|
2015-06-04 04:18:40 +08:00
|
|
|
void updateID(int index);
|
2015-06-12 03:27:54 +08:00
|
|
|
|
2015-06-04 04:18:40 +08:00
|
|
|
static QHash<int, CircleWidget*> circleList;
|
|
|
|
int id;
|
2015-05-28 01:17:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CIRCLEWIDGET_H
|