2018-01-09 16:07:32 +03:00
|
|
|
#include "CommunitiesListItem.h"
|
2020-01-31 08:12:02 +03:00
|
|
|
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
2018-04-30 21:41:47 +03:00
|
|
|
#include "Utils.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "ui/Painter.h"
|
|
|
|
#include "ui/Ripple.h"
|
|
|
|
#include "ui/RippleOverlay.h"
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
CommunitiesListItem::CommunitiesListItem(QString group_id, QWidget *parent)
|
2018-01-09 16:07:32 +03:00
|
|
|
: QWidget(parent)
|
2018-07-14 12:08:16 +03:00
|
|
|
, groupId_(group_id)
|
2018-01-09 16:07:32 +03:00
|
|
|
{
|
2018-04-28 15:27:12 +03:00
|
|
|
setMouseTracking(true);
|
|
|
|
setAttribute(Qt::WA_Hover);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
QPainterPath path;
|
|
|
|
path.addRect(0, 0, parent->width(), height());
|
|
|
|
rippleOverlay_ = new RippleOverlay(this);
|
|
|
|
rippleOverlay_->setClipPath(path);
|
|
|
|
rippleOverlay_->setClipping(true);
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
if (groupId_ == "world")
|
2018-07-22 15:41:06 +03:00
|
|
|
avatar_ = QPixmap(":/icons/icons/ui/world.png");
|
2018-09-28 15:40:51 +03:00
|
|
|
else if (groupId_ == "tag:m.favourite")
|
|
|
|
avatar_ = QPixmap(":/icons/icons/ui/star.png");
|
|
|
|
else if (groupId_ == "tag:m.lowpriority")
|
|
|
|
avatar_ = QPixmap(":/icons/icons/ui/lowprio.png");
|
|
|
|
else if (groupId_.startsWith("tag:"))
|
|
|
|
avatar_ = QPixmap(":/icons/icons/ui/tag.png");
|
|
|
|
|
|
|
|
updateTooltip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CommunitiesListItem::setName(QString name)
|
|
|
|
{
|
|
|
|
name_ = name;
|
|
|
|
updateTooltip();
|
2018-01-09 16:07:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CommunitiesListItem::setPressedState(bool state)
|
|
|
|
{
|
|
|
|
if (isPressed_ != state) {
|
|
|
|
isPressed_ = state;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CommunitiesListItem::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->buttons() == Qt::RightButton) {
|
|
|
|
QWidget::mousePressEvent(event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
emit clicked(groupId_);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
|
|
|
setPressedState(true);
|
2018-04-28 15:27:12 +03:00
|
|
|
|
|
|
|
QPoint pos = event->pos();
|
|
|
|
qreal radiusEndValue = static_cast<qreal>(width()) / 3;
|
|
|
|
|
|
|
|
auto ripple = new Ripple(pos);
|
|
|
|
ripple->setRadiusEndValue(radiusEndValue);
|
|
|
|
ripple->setOpacityStartValue(0.15);
|
|
|
|
ripple->setColor("white");
|
|
|
|
ripple->radiusAnimation()->setDuration(200);
|
|
|
|
ripple->opacityAnimation()->setDuration(400);
|
|
|
|
rippleOverlay_->addRipple(ripple);
|
2018-01-09 16:07:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-04-28 15:27:12 +03:00
|
|
|
CommunitiesListItem::paintEvent(QPaintEvent *)
|
2018-01-09 16:07:32 +03:00
|
|
|
{
|
2018-04-28 15:27:12 +03:00
|
|
|
Painter p(this);
|
|
|
|
PainterHighQualityEnabler hq(p);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
|
|
|
if (isPressed_)
|
|
|
|
p.fillRect(rect(), highlightedBackgroundColor_);
|
|
|
|
else if (underMouse())
|
|
|
|
p.fillRect(rect(), hoverBackgroundColor_);
|
|
|
|
else
|
|
|
|
p.fillRect(rect(), backgroundColor_);
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
if (avatar_.isNull()) {
|
2018-04-28 15:27:12 +03:00
|
|
|
QFont font;
|
2018-09-30 13:24:36 +03:00
|
|
|
font.setPointSizeF(font.pointSizeF() * 1.3);
|
2018-01-09 16:07:32 +03:00
|
|
|
p.setFont(font);
|
2018-04-28 15:27:12 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
p.drawLetterAvatar(utils::firstChar(resolveName()),
|
2018-04-28 15:27:12 +03:00
|
|
|
avatarFgColor_,
|
|
|
|
avatarBgColor_,
|
|
|
|
width(),
|
|
|
|
height(),
|
|
|
|
IconSize);
|
2018-01-09 16:07:32 +03:00
|
|
|
} else {
|
|
|
|
p.save();
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
p.drawAvatar(avatar_, width(), height(), IconSize);
|
2018-01-09 16:07:32 +03:00
|
|
|
p.restore();
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 16:00:14 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
CommunitiesListItem::setAvatar(const QImage &img)
|
|
|
|
{
|
2018-07-14 12:08:16 +03:00
|
|
|
avatar_ = utils::scaleImageToPixmap(img, IconSize);
|
2018-05-11 16:00:14 +03:00
|
|
|
update();
|
|
|
|
}
|
2018-07-14 12:08:16 +03:00
|
|
|
|
|
|
|
QString
|
|
|
|
CommunitiesListItem::resolveName() const
|
|
|
|
{
|
|
|
|
if (!name_.isEmpty())
|
|
|
|
return name_;
|
2018-09-28 15:40:51 +03:00
|
|
|
if (groupId_.startsWith("tag:"))
|
|
|
|
return groupId_.right(groupId_.size() - strlen("tag:"));
|
2018-07-14 12:08:16 +03:00
|
|
|
if (!groupId_.startsWith("+"))
|
|
|
|
return QString("Group"); // Group with no name or id.
|
|
|
|
|
|
|
|
// Extract the localpart of the group.
|
|
|
|
auto firstPart = groupId_.split(':').at(0);
|
|
|
|
return firstPart.right(firstPart.size() - 1);
|
|
|
|
}
|
2018-09-28 15:40:51 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
CommunitiesListItem::updateTooltip()
|
|
|
|
{
|
|
|
|
if (groupId_ == "world")
|
|
|
|
setToolTip(tr("All rooms"));
|
|
|
|
else if (is_tag()) {
|
|
|
|
QString tag = groupId_.right(groupId_.size() - strlen("tag:"));
|
|
|
|
if (tag == "m.favourite")
|
|
|
|
setToolTip(tr("Favourite rooms"));
|
|
|
|
else if (tag == "m.lowpriority")
|
|
|
|
setToolTip(tr("Low priority rooms"));
|
2020-05-18 04:30:04 +03:00
|
|
|
else if (tag == "m.server_notice")
|
|
|
|
setToolTip(tr("Server Notices", "Tag translation for m.server_notice"));
|
2018-09-28 15:40:51 +03:00
|
|
|
else if (tag.startsWith("u."))
|
|
|
|
setToolTip(tag.right(tag.size() - 2) + tr(" (tag)"));
|
|
|
|
else
|
|
|
|
setToolTip(tag + tr(" (tag)"));
|
|
|
|
} else {
|
|
|
|
QString name = resolveName();
|
|
|
|
setToolTip(name + tr(" (community)"));
|
|
|
|
}
|
2018-09-30 13:24:36 +03:00
|
|
|
}
|