1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/circlewidget.cpp
2015-06-26 10:53:01 +02:00

214 lines
6.3 KiB
C++

/*
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.
*/
#include "circlewidget.h"
#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>
#include <QMouseEvent>
#include <QDragEnterEvent>
#include <QMimeData>
#include <QDebug>
#include <cassert>
#include "friendlistlayout.h"
CircleWidget::CircleWidget(QWidget *parent)
: GenericChatItemWidget(parent)
{
setStyleSheet(Style::getStylesheet(":/ui/chatroomWidgets/circleWidget.css"));
container = new QWidget(this);
container->setObjectName("circleWidgetContainer");
container->setProperty("active", false);
mainLayout = new QVBoxLayout(this);
listLayout = new FriendListLayout();
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);
//topLayout->addSpacing(5);
//topLayout->addWidget(lineFrame, 1);
midLayout->addLayout(topLayout);
midLayout->addWidget(lineFrame);
midLayout->addStretch();
QHBoxLayout *statusLayout = new QHBoxLayout();
QLabel *onlineIconLabel = new QLabel(container);
onlineIconLabel->setAlignment(Qt::AlignCenter);
onlineIconLabel->setPixmap(QPixmap(":img/status/dot_online.svg"));
onlineLabel = new QLabel("0", container);
onlineLabel->setObjectName("status");
/*QLabel *awayIconLabel = new QLabel(container);
awayIconLabel->setAlignment(Qt::AlignCenter);
awayIconLabel->setPixmap(QPixmap(":img/status/dot_away.svg"));
QLabel *awayLabel = new QLabel("0", container);
awayLabel->setObjectName("status");*/
QLabel *offlineIconLabel = new QLabel(container);
offlineIconLabel->setAlignment(Qt::AlignCenter);
offlineIconLabel->setPixmap(QPixmap(":img/status/dot_offline.svg"));
offlineLabel = new QLabel("0", container);
offlineLabel->setObjectName("status");
statusLayout->addWidget(onlineIconLabel);
statusLayout->addSpacing(5);
statusLayout->addWidget(onlineLabel);
statusLayout->addSpacing(10);
//statusLayout->addWidget(awayIconLabel);
//statusLayout->addSpacing(5);
//statusLayout->addWidget(awayLabel);
//statusLayout->addSpacing(10);
statusLayout->addWidget(offlineIconLabel);
statusLayout->addSpacing(5);
statusLayout->addWidget(offlineLabel);
//statusLayout->addStretch();
//midLayout->addLayout(statusLayout);
topLayout->addStretch();
topLayout->addLayout(statusLayout);
midLayout->addStretch();
layout->addSpacing(10);
layout->addLayout(midLayout);
layout->addSpacing(10);
container->setLayout(layout);
mainLayout->addWidget(container);
setAcceptDrops(true);
}
void CircleWidget::addFriendWidget(FriendWidget *w, Status s)
{
qDebug() << "YOLO COMBO";
listLayout->addFriendWidget(w, s);
//if (s == Status::Offline)
updateOffline();
//else
updateOnline();
}
void CircleWidget::toggle()
{
expanded = !expanded;
if (expanded)
{
mainLayout->addLayout(listLayout);
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarDownArrow.svg"));
}
else
{
mainLayout->removeItem(listLayout);
arrowLabel->setPixmap(QPixmap(":/ui/chatArea/scrollBarRightArrow.svg"));
}
}
void CircleWidget::searchChatrooms(const QString &searchString, bool hideOnline, bool hideOffline, bool hideGroups)
{
listLayout->searchChatrooms(searchString, hideOnline, hideOffline, hideGroups);
}
void CircleWidget::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton)
toggle();
}
void CircleWidget::dragEnterEvent(QDragEnterEvent *event)
{
if (event->mimeData()->hasFormat("friend"))
event->acceptProposedAction();
container->setAttribute(Qt::WA_UnderMouse, true); // Simulate hover.
Style::repolish(container);
}
void CircleWidget::dragLeaveEvent(QDragLeaveEvent *)
{
container->setAttribute(Qt::WA_UnderMouse, false);
Style::repolish(container);
}
void CircleWidget::dropEvent(QDropEvent *event)
{
if (event->mimeData()->hasFormat("friend"))
{
if (!expanded)
toggle();
int friendId = event->mimeData()->data("friend").toInt();
Friend *f = FriendList::findFriend(friendId);
assert(f != nullptr);
FriendWidget *widget = f->getFriendWidget();
assert(widget != nullptr);
// 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();
}
container->setAttribute(Qt::WA_UnderMouse, false);
Style::repolish(container);
}
}
void CircleWidget::updateOnline()
{
onlineLabel->setText(QString::number(listLayout->friendOnlineCount()));
}
void CircleWidget::updateOffline()
{
offlineLabel->setText(QString::number(listLayout->friendOfflineCount()));
}