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

245 lines
7.2 KiB
C++
Raw Normal View History

2015-05-28 01:17:12 +08:00
/*
Copyright © 2015 by The qTox Project Contributors
2015-05-28 01:17:12 +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
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.
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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2015-05-28 01:17:12 +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
*/
#include <QVariant>
#include <QBoxLayout>
2015-05-28 22:28:11 +08:00
#include <QMouseEvent>
2015-05-28 01:17:12 +08:00
#include <QDragEnterEvent>
#include <QMimeData>
2015-05-29 06:36:21 +08:00
#include <QMenu>
2015-05-28 01:17:12 +08:00
#include <cassert>
#include "circlewidget.h"
#include "contentdialog.h"
#include "friendwidget.h"
#include "friendlistwidget.h"
#include "tool/croppinglabel.h"
#include "widget.h"
#include "src/friend.h"
#include "src/friendlist.h"
#include "src/persistence/settings.h"
QHash<int, CircleWidget*> CircleWidget::circleList;
CircleWidget::CircleWidget(FriendListWidget* parent, int id)
: CategoryWidget(parent)
, id(id)
2015-05-28 01:17:12 +08:00
{
setName(Settings::getInstance().getCircleName(id), false);
circleList[id] = this;
connect(nameLabel, &CroppingLabel::editFinished, [this](const QString &newName)
{
if (!newName.isEmpty())
2015-06-11 00:11:50 +08:00
emit renameRequested(this, newName);
});
connect(nameLabel, &CroppingLabel::editRemoved, [this]()
{
if (isCompact())
nameLabel->minimizeMaximumWidth();
});
setExpanded(Settings::getInstance().getCircleExpanded(id), false);
updateStatus();
2015-05-28 01:17:12 +08:00
}
CircleWidget::~CircleWidget()
{
if (circleList[id] == this)
circleList.remove(id);
}
void CircleWidget::editName()
{
CategoryWidget::editName();
}
CircleWidget* CircleWidget::getFromID(int id)
{
auto circleIt = circleList.find(id);
if (circleIt != circleList.end())
return circleIt.value();
return nullptr;
2015-05-29 06:36:21 +08:00
}
void CircleWidget::contextMenuEvent(QContextMenuEvent* event)
2015-05-29 06:36:21 +08:00
{
QMenu menu;
QAction* renameAction = menu.addAction(tr("Rename circle", "Menu for renaming a circle"));
QAction* removeAction = menu.addAction(tr("Remove circle", "Menu for removing a circle"));
QAction* openAction = nullptr;
if (friendOfflineLayout()->count() + friendOnlineLayout()->count() > 0)
openAction = menu.addAction(tr("Open all in new window"));
2015-05-29 06:36:21 +08:00
QAction* selectedItem = menu.exec(mapToGlobal(event->pos()));
if (selectedItem)
{
if (selectedItem == renameAction)
{
editName();
}
else if (selectedItem == removeAction)
{
FriendListWidget* friendList = static_cast<FriendListWidget*>(parentWidget());
moveFriendWidgets(friendList);
friendList->removeCircleWidget(this);
int replacedCircle = Settings::getInstance().removeCircle(id);
auto circleReplace = circleList.find(replacedCircle);
if (circleReplace != circleList.end())
circleReplace.value()->updateID(id);
else
assert(true); // This should never happen.
circleList.remove(replacedCircle);
}
else if (selectedItem == openAction)
{
ContentDialog* dialog = Widget::getInstance()->createContentDialog();
for (int i = 0; i < friendOnlineLayout()->count(); ++i)
{
FriendWidget* friendWidget = qobject_cast<FriendWidget*>(friendOnlineLayout()->itemAt(i)->widget());
if (friendWidget != nullptr)
{
Friend* f = friendWidget->getFriend();
dialog->addFriend(friendWidget->friendId, f->getDisplayedName());
}
}
for (int i = 0; i < friendOfflineLayout()->count(); ++i)
{
FriendWidget* friendWidget = qobject_cast<FriendWidget*>(friendOfflineLayout()->itemAt(i)->widget());
if (friendWidget != nullptr)
{
Friend* f = friendWidget->getFriend();
dialog->addFriend(friendWidget->friendId, f->getDisplayedName());
}
}
dialog->show();
dialog->ensureSplitterVisible();
}
}
setContainerAttribute(Qt::WA_UnderMouse, false);
2015-05-29 06:36:21 +08:00
}
void CircleWidget::dragEnterEvent(QDragEnterEvent* event)
2015-05-28 01:17:12 +08:00
{
ToxId toxId(event->mimeData()->text());
Friend *f = FriendList::findFriend(toxId.getPublicKey());
if (f != nullptr)
2015-05-28 01:17:12 +08:00
event->acceptProposedAction();
setContainerAttribute(Qt::WA_UnderMouse, true); // Simulate hover.
2015-05-28 22:28:11 +08:00
}
void CircleWidget::dragLeaveEvent(QDragLeaveEvent* )
2015-05-28 22:28:11 +08:00
{
setContainerAttribute(Qt::WA_UnderMouse, false);
2015-05-28 01:17:12 +08:00
}
void CircleWidget::dropEvent(QDropEvent* event)
2015-05-28 01:17:12 +08:00
{
setExpanded(true, false);
2015-05-28 01:17:12 +08:00
// Check, that the element is dropped from qTox
QObject *o = event->source();
FriendWidget *widget = qobject_cast<FriendWidget*>(o);
if (!widget)
return;
2015-05-28 01:17:12 +08:00
// Check, that the user has a friend with the same ToxId
ToxId toxId(event->mimeData()->text());
Friend *f = FriendList::findFriend(toxId.getPublicKey());
if (!f)
return;
2015-05-29 00:58:44 +08:00
// Save CircleWidget before changing the Id
int circleId = Settings::getInstance().getFriendCircleID(toxId.getPublicKey());
CircleWidget* circleWidget = getFromID(circleId);
2015-05-29 00:58:44 +08:00
addFriendWidget(widget, f->getStatus());
Settings::getInstance().savePersonal();
2015-05-28 22:28:11 +08:00
if (circleWidget != nullptr)
{
circleWidget->updateStatus();
Widget::getInstance()->searchCircle(circleWidget);
2015-05-28 01:17:12 +08:00
}
setContainerAttribute(Qt::WA_UnderMouse, false);
2015-05-28 01:17:12 +08:00
}
2015-05-29 00:58:44 +08:00
void CircleWidget::onSetName()
{
Settings::getInstance().setCircleName(id, getName());
}
void CircleWidget::onExpand()
{
Settings::getInstance().setCircleExpanded(id, isExpanded());
Settings::getInstance().savePersonal();
}
void CircleWidget::onAddFriendWidget(FriendWidget* w)
2015-05-29 00:58:44 +08:00
{
Friend* f = FriendList::findFriend(w->friendId);
ToxPk toxId = f->getPublicKey();
Settings::getInstance().setFriendCircleID(toxId, id);
2015-05-29 00:58:44 +08:00
}
void CircleWidget::updateID(int index)
{
// For when a circle gets destroyed, another takes its id.
// This function updates all friends widgets for this new id.
if (id == index)
return;
id = index;
circleList[id] = this;
for (int i = 0; i < friendOnlineLayout()->count(); ++i)
{
FriendWidget* friendWidget = qobject_cast<FriendWidget*>(friendOnlineLayout()->itemAt(i)->widget());
if (friendWidget != nullptr)
Settings::getInstance().setFriendCircleID(FriendList::findFriend(friendWidget->friendId)->getPublicKey(), id);
}
for (int i = 0; i < friendOfflineLayout()->count(); ++i)
{
FriendWidget* friendWidget = qobject_cast<FriendWidget*>(friendOfflineLayout()->itemAt(i)->widget());
if (friendWidget != nullptr)
Settings::getInstance().setFriendCircleID(FriendList::findFriend(friendWidget->friendId)->getPublicKey(), id);
}
}