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>
|
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
|
|
|
|
2015-05-29 06:36:21 +08:00
|
|
|
CircleWidget::CircleWidget(FriendListWidget *parent)
|
2015-05-28 08:45:23 +08:00
|
|
|
: GenericChatItemWidget(parent)
|
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");
|
2015-05-31 03:10:43 +08:00
|
|
|
container->setLayoutDirection(Qt::LeftToRight);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +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
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
// name text
|
|
|
|
nameLabel = new QLabel(this);
|
2015-05-28 01:17:12 +08:00
|
|
|
nameLabel->setObjectName("name");
|
2015-05-31 03:10:43 +08:00
|
|
|
nameLabel->setTextFormat(Qt::PlainText);
|
|
|
|
nameLabel->setText("Circle");
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
arrowLabel = new QLabel(this);
|
|
|
|
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
fullLayout = new QVBoxLayout(this);
|
|
|
|
fullLayout->setSpacing(0);
|
|
|
|
fullLayout->setMargin(0);
|
|
|
|
fullLayout->addWidget(container);
|
2015-05-29 21:26:43 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
lineFrame = new QFrame(container);
|
|
|
|
lineFrame->setObjectName("line");
|
|
|
|
lineFrame->setFrameShape(QFrame::HLine);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
listLayout = new FriendListLayout();
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
setAcceptDrops(true);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
onCompactChanged(isCompact());
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
//renameCircle();
|
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);
|
2015-05-31 03:10:43 +08:00
|
|
|
updateStatus();
|
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;
|
|
|
|
if (expanded)
|
2015-05-28 01:17:12 +08:00
|
|
|
{
|
2015-05-31 03:10:43 +08:00
|
|
|
fullLayout->addLayout(listLayout);
|
2015-05-28 01:17:12 +08:00
|
|
|
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarDownArrow.svg"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-05-31 03:10:43 +08:00
|
|
|
fullLayout->removeItem(listLayout);
|
2015-05-28 01:17:12 +08:00
|
|
|
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-28 22:28:11 +08:00
|
|
|
void CircleWidget::searchChatrooms(const QString &searchString, bool hideOnline, bool hideOffline, bool hideGroups)
|
2015-05-28 01:17:12 +08:00
|
|
|
{
|
2015-05-28 22:28:11 +08:00
|
|
|
listLayout->searchChatrooms(searchString, hideOnline, hideOffline, hideGroups);
|
|
|
|
}
|
|
|
|
|
2015-05-29 21:26:43 +08:00
|
|
|
QString CircleWidget::getName() const
|
|
|
|
{
|
|
|
|
return nameLabel->text();
|
|
|
|
}
|
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
void CircleWidget::setName(const QString &name)
|
|
|
|
{
|
|
|
|
nameLabel->setText(name);
|
|
|
|
}
|
|
|
|
|
2015-05-29 06:36:21 +08:00
|
|
|
void CircleWidget::renameCircle()
|
|
|
|
{
|
|
|
|
qDebug() << nameLabel->parentWidget()->layout();
|
|
|
|
QLineEdit *lineEdit = new QLineEdit(nameLabel->text());
|
2015-05-31 03:10:43 +08:00
|
|
|
topLayout->removeWidget(nameLabel);
|
|
|
|
topLayout->insertWidget(3, lineEdit);
|
|
|
|
nameLabel->setVisible(false);
|
|
|
|
//topLayout->replaceWidget(nameLabel, lineEdit);
|
2015-05-29 06:36:21 +08:00
|
|
|
//nameLabel->parentWidget()->layout()
|
|
|
|
//static_cast<QBoxLayout*>(nameLabel->parentWidget()->layout())->insertWidget(nameLabel->parentWidget()->layout()->indexOf(nameLabel) - 1, lineEdit);
|
|
|
|
//nameLabel->parentWidget()->layout()->replaceWidget(nameLabel, lineEdit);
|
2015-05-31 03:10:43 +08:00
|
|
|
//nameLabel->setVisible(false);
|
2015-05-29 06:36:21 +08:00
|
|
|
lineEdit->selectAll();
|
|
|
|
lineEdit->setFocus();
|
|
|
|
connect(lineEdit, &QLineEdit::editingFinished, [this, lineEdit]()
|
|
|
|
{
|
2015-05-31 03:10:43 +08:00
|
|
|
this->topLayout->removeWidget(lineEdit);
|
|
|
|
this->topLayout->insertWidget(3, nameLabel);
|
|
|
|
//this->topLayout->replaceWidget(lineEdit, nameLabel);
|
|
|
|
//this->nameLabel->setVisible(true);
|
2015-05-29 06:36:21 +08:00
|
|
|
//lineEdit->parentWidget()->layout()->replaceWidget(lineEdit, nameLabel);
|
2015-05-31 03:10:43 +08:00
|
|
|
this->nameLabel->setText(lineEdit->text());
|
|
|
|
nameLabel->setVisible(true);
|
2015-05-29 06:36:21 +08:00
|
|
|
lineEdit->deleteLater();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
void CircleWidget::onCompactChanged(bool _compact)
|
2015-05-29 21:26:43 +08:00
|
|
|
{
|
2015-05-31 03:10:43 +08:00
|
|
|
delete topLayout;
|
|
|
|
delete mainLayout;
|
|
|
|
|
|
|
|
topLayout = new QHBoxLayout;
|
|
|
|
topLayout->setSpacing(0);
|
|
|
|
topLayout->setMargin(0);
|
|
|
|
|
|
|
|
setProperty("compact", _compact);
|
|
|
|
|
|
|
|
if (property("compact").toBool())
|
|
|
|
{
|
|
|
|
mainLayout = nullptr;
|
|
|
|
|
|
|
|
container->setFixedHeight(25);
|
|
|
|
container->setLayout(topLayout);
|
|
|
|
|
|
|
|
topLayout->addSpacing(18);
|
|
|
|
topLayout->addWidget(arrowLabel);
|
|
|
|
topLayout->addSpacing(5);
|
|
|
|
topLayout->addWidget(nameLabel);
|
|
|
|
topLayout->addSpacing(5);
|
|
|
|
topLayout->addWidget(lineFrame, 1);
|
|
|
|
topLayout->addSpacing(5);
|
|
|
|
topLayout->addWidget(statusLabel);
|
|
|
|
topLayout->addSpacing(5);
|
|
|
|
topLayout->activate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug() << "LTSE";
|
|
|
|
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);
|
|
|
|
topLayout->addStretch();
|
|
|
|
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
|
|
|
|
2015-05-31 03:10: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());
|
|
|
|
while (listLayout->friendLayouts[Online]->count() != 0)
|
|
|
|
{
|
|
|
|
QWidget *getWidget = listLayout->friendLayouts[Online]->takeAt(0)->widget();
|
|
|
|
assert(getWidget != nullptr);
|
|
|
|
|
|
|
|
FriendWidget *friendWidget = dynamic_cast<FriendWidget*>(getWidget);
|
|
|
|
friendList->moveWidget(friendWidget, FriendList::findFriend(friendWidget->friendId)->getStatus(), true);
|
|
|
|
}
|
|
|
|
while (listLayout->friendLayouts[Offline]->count() != 0)
|
|
|
|
{
|
|
|
|
QWidget *getWidget = listLayout->friendLayouts[Offline]->takeAt(0)->widget();
|
2015-05-29 21:26:43 +08:00
|
|
|
assert(getWidget != nullptr);
|
2015-05-29 06:36:21 +08:00
|
|
|
|
|
|
|
FriendWidget *friendWidget = dynamic_cast<FriendWidget*>(getWidget);
|
|
|
|
friendList->moveWidget(friendWidget, FriendList::findFriend(friendWidget->friendId)->getStatus(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
friendList->removeCircleWidget(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
2015-05-31 03:10:43 +08:00
|
|
|
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
|
|
|
|
2015-05-31 03:10:43 +08:00
|
|
|
void CircleWidget::updateStatus()
|
2015-05-29 00:58:44 +08:00
|
|
|
{
|
2015-05-31 03:10:43 +08:00
|
|
|
statusLabel->setText(QString::number(listLayout->friendOnlineCount()) + QStringLiteral(" / ") + QString::number(listLayout->friendTotalCount()));
|
2015-05-29 00:58:44 +08:00
|
|
|
}
|