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

450 lines
12 KiB
C++
Raw Normal View History

2015-05-28 01:17:12 +08:00
/*
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.
*/
2015-05-28 08:45:23 +08:00
#include "circlewidget.h"
2015-05-28 01:17:12 +08:00
#include "src/misc/style.h"
#include "src/misc/settings.h"
#include "src/friendlist.h"
#include "src/friend.h"
#include "src/widget/friendwidget.h"
#include <QVariant>
#include <QLabel>
#include <QBoxLayout>
2015-05-28 22:28:11 +08:00
#include <QMouseEvent>
2015-05-29 06:36:21 +08:00
#include <QLineEdit>
#include "src/misc/settings.h"
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 <QDebug>
#include <cassert>
2015-05-28 08:45:23 +08:00
#include "friendlistlayout.h"
2015-05-29 06:36:21 +08:00
#include "friendlistwidget.h"
2015-05-28 08:45:23 +08:00
#include "croppinglabel.h"
void maxCropLabel(CroppingLabel* label)
{
QFontMetrics metrics = label->fontMetrics();
// Text width + padding. Without padding, we'll have elipses.
label->setMaximumWidth(metrics.width(label->fullText()) + metrics.width("..."));
}
QHash<int, CircleWidget*> CircleWidget::circleList;
CircleWidget::CircleWidget(FriendListWidget *parent, int id_)
2015-05-28 08:45:23 +08:00
: GenericChatItemWidget(parent)
, id(id_)
2015-05-28 01:17:12 +08:00
{
setStyleSheet(Style::getStylesheet(":/ui/chatroomWidgets/circleWidget.css"));
2015-05-28 22:28:11 +08:00
container = new QWidget(this);
2015-05-28 01:17:12 +08:00
container->setObjectName("circleWidgetContainer");
container->setLayoutDirection(Qt::LeftToRight);
2015-05-28 01:17:12 +08:00
// status text
statusLabel = new QLabel("0 / 0", this);
statusLabel->setObjectName("status");
statusLabel->setTextFormat(Qt::PlainText);
2015-05-28 01:17:12 +08:00
// name text
nameLabel->setText("Circle");
2015-05-28 01:17:12 +08:00
arrowLabel = new QLabel(this);
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
2015-05-28 01:17:12 +08:00
fullLayout = new QVBoxLayout(this);
fullLayout->setSpacing(0);
fullLayout->setMargin(0);
fullLayout->addWidget(container);
2015-05-29 21:26:43 +08:00
lineFrame = new QFrame(container);
lineFrame->setObjectName("line");
lineFrame->setFrameShape(QFrame::HLine);
lineFrame->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
lineFrame->resize(0, 0);
2015-05-28 01:17:12 +08:00
listLayout = new FriendListLayout();
listWidget = new QWidget(this);
listWidget->setLayout(listLayout);
2015-06-05 00:30:24 +08:00
fullLayout->addWidget(listWidget);
setAcceptDrops(true);
onCompactChanged(isCompact());
2015-05-28 01:17:12 +08:00
if (id != -1)
{
// Set name before connecting text change.
setName(Settings::getInstance().getCircleName(id));
}
connect(nameLabel, &CroppingLabel::textChanged, [this](const QString &newName, const QString &oldName)
{
if (isCompact())
maxCropLabel(nameLabel);
nameLabel->setText(oldName);
emit renameRequested(newName);
Settings::getInstance().setCircleName(id, newName);
});
bool isNew = false;
auto circleIt = circleList.find(id);
if (circleIt == circleList.end())
{
if (id == -1)
{
isNew = true;
id = Settings::getInstance().addCircle("Circle");
}
}
circleList.insert(id, this);
if (isNew)
renameCircle();
2015-06-05 00:30:24 +08:00
listWidget->setVisible(Settings::getInstance().getCircleExpanded(id));
//expand();
//Settings::getInstance().setCircleExpanded(id, isExpanded);
2015-05-28 01:17:12 +08:00
}
2015-05-28 08:45:23 +08:00
void CircleWidget::addFriendWidget(FriendWidget *w, Status s)
2015-05-28 01:17:12 +08:00
{
2015-05-28 08:45:23 +08:00
listLayout->addFriendWidget(w, s);
updateStatus();
Settings::getInstance().setFriendCircleIndex(FriendList::findFriend(w->friendId)->getToxId(), id);
2015-05-28 01:17:12 +08:00
}
2015-05-29 21:26:43 +08:00
void CircleWidget::expand()
{
if (expanded)
return;
toggle();
}
2015-05-28 01:17:12 +08:00
void CircleWidget::toggle()
{
2015-05-29 00:58:44 +08:00
expanded = !expanded;
listWidget->setVisible(expanded);
2015-05-29 00:58:44 +08:00
if (expanded)
2015-05-28 01:17:12 +08:00
{
2015-06-05 00:30:24 +08:00
//fullLayout->addLayout(listLayout);
2015-05-28 01:17:12 +08:00
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarDownArrow.svg"));
}
else
{
2015-06-05 00:30:24 +08:00
//fullLayout->removeItem(listLayout);
2015-05-28 01:17:12 +08:00
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
}
2015-06-05 00:30:24 +08:00
Settings::getInstance().setCircleExpanded(id, expanded);
2015-05-28 01:17:12 +08:00
}
void CircleWidget::searchChatrooms(const QString &searchString, bool hideOnline, bool hideOffline)
2015-05-28 01:17:12 +08:00
{
listLayout->searchChatrooms(searchString, hideOnline, hideOffline);
2015-05-29 21:26:43 +08:00
}
void CircleWidget::setName(const QString &name)
{
nameLabel->setText(name);
}
2015-05-29 06:36:21 +08:00
void CircleWidget::renameCircle()
{
nameLabel->editStart();
nameLabel->setMaximumWidth(QWIDGETSIZE_MAX);
}
void emitChatroomWidget(QLayout* layout, int index)
{
GenericChatroomWidget* chatWidget = dynamic_cast<GenericChatroomWidget*>(layout->itemAt(index)->widget());
if (chatWidget != nullptr)
emit chatWidget->chatroomWidgetClicked(chatWidget);
}
bool CircleWidget::cycleContacts(bool forward)
{
if (listLayout->friendTotalCount() == 0)
{
return false;
}
if (forward)
{
if (listLayout->getLayoutOnline()->count() != 0)
{
expand();
emitChatroomWidget(listLayout->getLayoutOnline(), 0);
return true;
}
else if (listLayout->getLayoutOffline()->count() != 0)
{
expand();
emitChatroomWidget(listLayout->getLayoutOffline(), 0);
return true;
}
}
else
{
if (listLayout->getLayoutOffline()->count() != 0)
{
expand();
emitChatroomWidget(listLayout->getLayoutOffline(), listLayout->getLayoutOffline()->count() - 1);
return true;
}
else if (listLayout->getLayoutOnline()->count() != 0)
{
expand();
emitChatroomWidget(listLayout->getLayoutOnline(), listLayout->getLayoutOnline()->count() - 1);
return true;
}
}
return false;
}
bool CircleWidget::cycleContacts(FriendWidget *activeChatroomWidget, bool forward)
{
int index = -1;
QLayout* currentLayout = nullptr;
FriendWidget* friendWidget = dynamic_cast<FriendWidget*>(activeChatroomWidget);
if (friendWidget != nullptr)
{
currentLayout = listLayout->getLayoutOnline();
index = listLayout->indexOfFriendWidget(friendWidget, true);
if (index == -1)
{
currentLayout = listLayout->getLayoutOffline();
index = listLayout->indexOfFriendWidget(friendWidget, false);
}
}
else
return false;
index += forward ? 1 : -1;
for (;;)
{
// Bounds checking.
if (index < 0)
{
if (currentLayout == listLayout->getLayoutOffline())
currentLayout = listLayout->getLayoutOnline();
else
return false;
index = currentLayout->count() - 1;
continue;
}
else if (index >= currentLayout->count())
{
if (currentLayout == listLayout->getLayoutOnline())
currentLayout = listLayout->getLayoutOffline();
else
return false;
index = 0;
continue;
}
GenericChatroomWidget* chatWidget = dynamic_cast<GenericChatroomWidget*>(currentLayout->itemAt(index)->widget());
if (chatWidget != nullptr)
emit chatWidget->chatroomWidgetClicked(chatWidget);
return true;
}
return false;
}
bool CircleWidget::hasChatrooms() const
2015-06-05 00:30:24 +08:00
{
return listLayout->hasChatrooms();
2015-06-05 00:30:24 +08:00
}
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::onCompactChanged(bool _compact)
2015-05-29 21:26:43 +08:00
{
delete topLayout;
delete mainLayout;
topLayout = new QHBoxLayout;
topLayout->setSpacing(0);
topLayout->setMargin(0);
setProperty("compact", _compact);
if (property("compact").toBool())
{
maxCropLabel(nameLabel);
mainLayout = nullptr;
container->setFixedHeight(25);
container->setLayout(topLayout);
topLayout->addSpacing(18);
topLayout->addWidget(arrowLabel);
topLayout->addSpacing(5);
topLayout->addWidget(nameLabel, 100);
topLayout->addWidget(lineFrame, 1);
topLayout->addSpacing(5);
topLayout->addWidget(statusLabel);
topLayout->addSpacing(5);
topLayout->activate();
}
else
{
nameLabel->setMaximumWidth(QWIDGETSIZE_MAX);
mainLayout = new QVBoxLayout();
mainLayout->setSpacing(0);
mainLayout->setContentsMargins(20, 0, 20, 0);
container->setFixedHeight(55);
container->setLayout(mainLayout);
topLayout->addWidget(arrowLabel);
topLayout->addSpacing(10);
topLayout->addWidget(nameLabel, 1);
topLayout->addSpacing(5);
topLayout->addWidget(statusLabel);
topLayout->activate();
mainLayout->addStretch();
mainLayout->addLayout(topLayout);
mainLayout->addWidget(lineFrame);
mainLayout->addStretch();
mainLayout->activate();
}
2015-05-29 21:26:43 +08:00
Style::repolish(this);
2015-05-29 21:26:43 +08:00
}
2015-05-29 06:36:21 +08:00
void CircleWidget::contextMenuEvent(QContextMenuEvent *event)
{
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 *selectedItem = menu.exec(mapToGlobal(event->pos()));
if (selectedItem == renameAction)
renameCircle();
else if (selectedItem == removeAction)
{
FriendListWidget *friendList = static_cast<FriendListWidget*>(parentWidget());
listLayout->moveFriendWidgets(friendList);
2015-05-29 06:36:21 +08:00
friendList->removeCircleWidget(this);
circleList.remove(id);
int replacedCircle = Settings::getInstance().removeCircle(id);
auto circleReplace = circleList.find(replacedCircle);
if (circleReplace != circleList.end())
circleReplace.value()->updateID(id);
2015-05-29 06:36:21 +08:00
}
}
2015-05-28 22:28:11 +08:00
void CircleWidget::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton)
toggle();
2015-05-28 01:17:12 +08:00
}
void CircleWidget::dragEnterEvent(QDragEnterEvent *event)
{
if (event->mimeData()->hasFormat("friend"))
event->acceptProposedAction();
2015-05-28 22:28:11 +08:00
container->setAttribute(Qt::WA_UnderMouse, true); // Simulate hover.
Style::repolish(container);
}
void CircleWidget::dragLeaveEvent(QDragLeaveEvent *)
{
container->setAttribute(Qt::WA_UnderMouse, false);
Style::repolish(container);
2015-05-28 01:17:12 +08:00
}
void CircleWidget::dropEvent(QDropEvent *event)
{
if (event->mimeData()->hasFormat("friend"))
{
2015-05-29 00:58:44 +08:00
if (!expanded)
2015-05-28 08:45:23 +08:00
toggle();
2015-05-28 01:17:12 +08:00
int friendId = event->mimeData()->data("friend").toInt();
Friend *f = FriendList::findFriend(friendId);
assert(f != nullptr);
FriendWidget *widget = f->getFriendWidget();
assert(widget != nullptr);
2015-05-29 00:58:44 +08:00
// Update old circle after moved.
CircleWidget *circleWidget = dynamic_cast<CircleWidget*>(widget->parent());
addFriendWidget(widget, f->getStatus());
if (circleWidget != nullptr)
{
// In case the status was changed while moving, update both.
circleWidget->updateStatus();
2015-05-29 00:58:44 +08:00
}
2015-05-28 22:28:11 +08:00
container->setAttribute(Qt::WA_UnderMouse, false);
Style::repolish(container);
2015-05-28 01:17:12 +08:00
}
}
2015-05-29 00:58:44 +08:00
void CircleWidget::updateStatus()
2015-05-29 00:58:44 +08:00
{
statusLabel->setText(QString::number(listLayout->friendOnlineCount()) + QStringLiteral(" / ") + QString::number(listLayout->friendTotalCount()));
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.
id = index;
circleList[id] = this;
for (int i = 0; i < listLayout->getLayoutOnline()->count(); ++i)
{
FriendWidget* friendWidget = dynamic_cast<FriendWidget*>(listLayout->getLayoutOnline()->itemAt(i));
if (friendWidget != nullptr)
{
qDebug() << "My yolo slow";
Settings::getInstance().setFriendCircleIndex(FriendList::findFriend(friendWidget->friendId)->getToxId(), id);
}
}
for (int i = 0; i < listLayout->getLayoutOffline()->count(); ++i)
{
FriendWidget* friendWidget = dynamic_cast<FriendWidget*>(listLayout->getLayoutOffline()->itemAt(i));
if (friendWidget != nullptr)
{
qDebug() << "My yolo slow";
Settings::getInstance().setFriendCircleIndex(FriendList::findFriend(friendWidget->friendId)->getToxId(), id);
}
}
}