2015-06-12 03:27:54 +08:00
|
|
|
/*
|
|
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "categorywidget.h"
|
|
|
|
#include "friendlistlayout.h"
|
|
|
|
#include "friendlistwidget.h"
|
|
|
|
#include "friendwidget.h"
|
|
|
|
#include "src/widget/style.h"
|
|
|
|
#include "tool/croppinglabel.h"
|
|
|
|
#include <QBoxLayout>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
|
|
|
void emitChatroomWidget(QLayout* layout, int index)
|
|
|
|
{
|
|
|
|
GenericChatroomWidget* chatWidget = dynamic_cast<GenericChatroomWidget*>(layout->itemAt(index)->widget());
|
|
|
|
if (chatWidget != nullptr)
|
|
|
|
emit chatWidget->chatroomWidgetClicked(chatWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
CategoryWidget::CategoryWidget(QWidget* parent)
|
|
|
|
: GenericChatItemWidget(parent)
|
|
|
|
{
|
|
|
|
setStyleSheet(Style::getStylesheet(":/ui/chatroomWidgets/circleWidget.css"));
|
|
|
|
|
|
|
|
container = new QWidget(this);
|
|
|
|
container->setObjectName("circleWidgetContainer");
|
|
|
|
container->setLayoutDirection(Qt::LeftToRight);
|
|
|
|
|
|
|
|
statusLabel = new QLabel(this);
|
|
|
|
statusLabel->setObjectName("status");
|
|
|
|
statusLabel->setTextFormat(Qt::PlainText);
|
|
|
|
|
|
|
|
statusPic.setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
|
|
|
|
|
|
|
|
fullLayout = new QVBoxLayout(this);
|
|
|
|
fullLayout->setSpacing(0);
|
|
|
|
fullLayout->setMargin(0);
|
|
|
|
fullLayout->addWidget(container);
|
|
|
|
|
|
|
|
lineFrame = new QFrame(container);
|
|
|
|
lineFrame->setObjectName("line");
|
|
|
|
lineFrame->setFrameShape(QFrame::HLine);
|
|
|
|
lineFrame->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
|
|
|
|
lineFrame->resize(0, 0);
|
|
|
|
|
|
|
|
listLayout = new FriendListLayout();
|
|
|
|
listWidget = new QWidget(this);
|
|
|
|
listWidget->setLayout(listLayout);
|
|
|
|
fullLayout->addWidget(listWidget);
|
|
|
|
|
|
|
|
setAcceptDrops(true);
|
|
|
|
|
|
|
|
onCompactChanged(isCompact());
|
2015-06-12 21:53:44 +08:00
|
|
|
|
|
|
|
setExpanded(true);
|
|
|
|
updateStatus();
|
2015-06-12 03:27:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CategoryWidget::isExpanded() const
|
|
|
|
{
|
|
|
|
return expanded;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::setExpanded(bool isExpanded)
|
|
|
|
{
|
|
|
|
expanded = isExpanded;
|
|
|
|
listWidget->setVisible(isExpanded);
|
2015-06-17 04:26:20 +08:00
|
|
|
listWidget->move(1000, 1000);
|
2015-06-12 03:27:54 +08:00
|
|
|
if (isExpanded)
|
|
|
|
{
|
|
|
|
statusPic.setPixmap(QPixmap(":/ui/chatArea/scrollBarDownArrow.svg"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
statusPic.setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
|
|
|
|
}
|
|
|
|
|
2015-06-17 04:26:20 +08:00
|
|
|
// The listWidget will recieve a enterEvent for some reason if now visible.
|
|
|
|
// Using the following, we prevent that.
|
|
|
|
hide();
|
|
|
|
show();
|
|
|
|
|
|
|
|
// However, the above also removes the hover, so we need to reenable it.
|
|
|
|
if (underMouse())
|
|
|
|
setContainerAttribute(Qt::WA_UnderMouse, true); // Simulate hover.
|
|
|
|
|
2015-06-12 03:27:54 +08:00
|
|
|
onExpand();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::setName(const QString &name)
|
|
|
|
{
|
|
|
|
nameLabel->setText(name);
|
|
|
|
if (isCompact())
|
|
|
|
nameLabel->minimizeMaximumWidth();
|
|
|
|
onSetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::editName()
|
|
|
|
{
|
|
|
|
nameLabel->editBegin();
|
|
|
|
nameLabel->setMaximumWidth(QWIDGETSIZE_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::addFriendWidget(FriendWidget* w, Status s)
|
|
|
|
{
|
|
|
|
listLayout->addFriendWidget(w, s);
|
|
|
|
updateStatus();
|
|
|
|
onAddFriendWidget(w);
|
|
|
|
}
|
|
|
|
|
2015-06-15 21:48:34 +08:00
|
|
|
void CategoryWidget::removeFriendWidget(FriendWidget* w, Status s)
|
|
|
|
{
|
|
|
|
listLayout->removeFriendWidget(w, s);
|
|
|
|
updateStatus();
|
|
|
|
}
|
|
|
|
|
2015-06-12 03:27:54 +08:00
|
|
|
void CategoryWidget::updateStatus()
|
|
|
|
{
|
|
|
|
statusLabel->setText(QString::number(listLayout->friendOnlineCount()) + QStringLiteral(" / ") + QString::number(listLayout->friendTotalCount()));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CategoryWidget::hasChatrooms() const
|
|
|
|
{
|
|
|
|
return listLayout->hasChatrooms();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::search(const QString &searchString, bool updateAll, bool hideOnline, bool hideOffline)
|
|
|
|
{
|
|
|
|
if (updateAll)
|
|
|
|
{
|
|
|
|
listLayout->searchChatrooms(searchString, hideOnline, hideOffline);
|
|
|
|
}
|
|
|
|
bool inCategory = searchString.isEmpty() && !(hideOnline && hideOffline);
|
|
|
|
setVisible(inCategory || listLayout->hasChatrooms());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CategoryWidget::cycleContacts(bool forward)
|
|
|
|
{
|
|
|
|
if (listLayout->friendTotalCount() == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (forward)
|
|
|
|
{
|
|
|
|
if (listLayout->getLayoutOnline()->count() != 0)
|
|
|
|
{
|
|
|
|
setExpanded(true);
|
|
|
|
emitChatroomWidget(listLayout->getLayoutOnline(), 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (listLayout->getLayoutOffline()->count() != 0)
|
|
|
|
{
|
|
|
|
setExpanded(true);
|
|
|
|
emitChatroomWidget(listLayout->getLayoutOffline(), 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (listLayout->getLayoutOffline()->count() != 0)
|
|
|
|
{
|
|
|
|
setExpanded(true);
|
|
|
|
emitChatroomWidget(listLayout->getLayoutOffline(), listLayout->getLayoutOffline()->count() - 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (listLayout->getLayoutOnline()->count() != 0)
|
|
|
|
{
|
|
|
|
setExpanded(true);
|
|
|
|
emitChatroomWidget(listLayout->getLayoutOnline(), listLayout->getLayoutOnline()->count() - 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CategoryWidget::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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::onCompactChanged(bool _compact)
|
|
|
|
{
|
|
|
|
delete topLayout;
|
|
|
|
delete mainLayout;
|
|
|
|
|
|
|
|
topLayout = new QHBoxLayout;
|
|
|
|
topLayout->setSpacing(0);
|
|
|
|
topLayout->setMargin(0);
|
|
|
|
|
|
|
|
setCompact(_compact);
|
|
|
|
|
|
|
|
if (isCompact())
|
|
|
|
{
|
|
|
|
nameLabel->minimizeMaximumWidth();
|
|
|
|
|
|
|
|
mainLayout = nullptr;
|
|
|
|
|
|
|
|
container->setFixedHeight(25);
|
|
|
|
container->setLayout(topLayout);
|
|
|
|
|
|
|
|
topLayout->addSpacing(18);
|
|
|
|
topLayout->addWidget(&statusPic);
|
|
|
|
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(&statusPic);
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
Style::repolish(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::mouseReleaseEvent(QMouseEvent* event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
setExpanded(!expanded);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::setContainerAttribute(Qt::WidgetAttribute attribute, bool enabled)
|
|
|
|
{
|
|
|
|
container->setAttribute(attribute, enabled);
|
|
|
|
Style::repolish(container);
|
|
|
|
}
|
|
|
|
|
|
|
|
QLayout* CategoryWidget::friendOfflineLayout() const
|
|
|
|
{
|
|
|
|
return listLayout->getLayoutOffline();
|
|
|
|
}
|
|
|
|
|
|
|
|
QLayout* CategoryWidget::friendOnlineLayout() const
|
|
|
|
{
|
|
|
|
return listLayout->getLayoutOnline();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CategoryWidget::moveFriendWidgets(FriendListWidget* friendList)
|
|
|
|
{
|
|
|
|
listLayout->moveFriendWidgets(friendList);
|
|
|
|
}
|