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

214 lines
6.3 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-28 01:17:12 +08:00
#include <QDragEnterEvent>
#include <QMimeData>
#include <QDebug>
#include <cassert>
2015-05-28 08:45:23 +08:00
#include "friendlistlayout.h"
2015-05-28 01:17:12 +08:00
CircleWidget::CircleWidget(QWidget *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");
container->setProperty("active", false);
mainLayout = new QVBoxLayout(this);
2015-05-29 00:58:44 +08:00
listLayout = new FriendListLayout();
2015-05-28 01:17:12 +08:00
QHBoxLayout *layout = new QHBoxLayout();
QVBoxLayout *midLayout = new QVBoxLayout;
QHBoxLayout *topLayout = new QHBoxLayout;
this->layout()->setSpacing(0);
this->layout()->setMargin(0);
container->setFixedHeight(55);
setLayoutDirection(Qt::LeftToRight);
midLayout->addStretch();
arrowLabel = new QLabel(">", container);
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
arrowLabel->setStyleSheet("color: white;");
topLayout->addWidget(arrowLabel);
topLayout->addSpacing(5);
QLabel *nameLabel = new QLabel("Circle", container);
nameLabel->setObjectName("name");
topLayout->addWidget(nameLabel);
QFrame *lineFrame = new QFrame(container);
lineFrame->setObjectName("line");
lineFrame->setFrameShape(QFrame::HLine);
2015-05-29 00:58:44 +08:00
//topLayout->addSpacing(5);
//topLayout->addWidget(lineFrame, 1);
2015-05-28 01:17:12 +08:00
midLayout->addLayout(topLayout);
2015-05-29 00:58:44 +08:00
midLayout->addWidget(lineFrame);
2015-05-28 01:17:12 +08:00
midLayout->addStretch();
QHBoxLayout *statusLayout = new QHBoxLayout();
QLabel *onlineIconLabel = new QLabel(container);
onlineIconLabel->setAlignment(Qt::AlignCenter);
onlineIconLabel->setPixmap(QPixmap(":img/status/dot_online.svg"));
2015-05-29 00:58:44 +08:00
onlineLabel = new QLabel("0", container);
2015-05-28 01:17:12 +08:00
onlineLabel->setObjectName("status");
2015-05-29 00:58:44 +08:00
/*QLabel *awayIconLabel = new QLabel(container);
2015-05-28 01:17:12 +08:00
awayIconLabel->setAlignment(Qt::AlignCenter);
awayIconLabel->setPixmap(QPixmap(":img/status/dot_away.svg"));
QLabel *awayLabel = new QLabel("0", container);
2015-05-29 00:58:44 +08:00
awayLabel->setObjectName("status");*/
2015-05-28 01:17:12 +08:00
QLabel *offlineIconLabel = new QLabel(container);
offlineIconLabel->setAlignment(Qt::AlignCenter);
offlineIconLabel->setPixmap(QPixmap(":img/status/dot_offline.svg"));
2015-05-29 00:58:44 +08:00
offlineLabel = new QLabel("0", container);
2015-05-28 01:17:12 +08:00
offlineLabel->setObjectName("status");
statusLayout->addWidget(onlineIconLabel);
statusLayout->addSpacing(5);
statusLayout->addWidget(onlineLabel);
statusLayout->addSpacing(10);
2015-05-29 00:58:44 +08:00
//statusLayout->addWidget(awayIconLabel);
//statusLayout->addSpacing(5);
//statusLayout->addWidget(awayLabel);
//statusLayout->addSpacing(10);
2015-05-28 01:17:12 +08:00
statusLayout->addWidget(offlineIconLabel);
statusLayout->addSpacing(5);
statusLayout->addWidget(offlineLabel);
2015-05-29 00:58:44 +08:00
//statusLayout->addStretch();
2015-05-28 01:17:12 +08:00
2015-05-29 00:58:44 +08:00
//midLayout->addLayout(statusLayout);
topLayout->addStretch();
topLayout->addLayout(statusLayout);
2015-05-28 01:17:12 +08:00
midLayout->addStretch();
layout->addSpacing(10);
layout->addLayout(midLayout);
layout->addSpacing(10);
container->setLayout(layout);
mainLayout->addWidget(container);
setAcceptDrops(true);
}
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-29 00:58:44 +08:00
qDebug() << "YOLO COMBO";
2015-05-28 08:45:23 +08:00
listLayout->addFriendWidget(w, s);
2015-05-29 00:58:44 +08:00
//if (s == Status::Offline)
updateOffline();
//else
updateOnline();
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-28 08:45:23 +08:00
mainLayout->addLayout(listLayout);
2015-05-28 01:17:12 +08:00
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarDownArrow.svg"));
}
else
{
2015-05-28 08:45:23 +08:00
mainLayout->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);
}
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->updateOffline();
circleWidget->updateOnline();
}
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::updateOnline()
{
onlineLabel->setText(QString::number(listLayout->friendOnlineCount()));
}
void CircleWidget::updateOffline()
{
offlineLabel->setText(QString::number(listLayout->friendOfflineCount()));
}