2018-03-25 00:16:15 +03:00
|
|
|
#include "Avatar.h"
|
|
|
|
#include "AvatarProvider.h"
|
|
|
|
#include "Config.h"
|
|
|
|
#include "DropShadow.h"
|
2018-04-14 14:12:36 +03:00
|
|
|
#include "SuggestionsPopup.hpp"
|
2018-03-25 00:16:15 +03:00
|
|
|
#include "Utils.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QStyleOption>
|
|
|
|
|
|
|
|
constexpr int PopupHMargin = 5;
|
|
|
|
constexpr int PopupItemMargin = 4;
|
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
PopupItem::PopupItem(QWidget *parent)
|
2018-03-25 00:16:15 +03:00
|
|
|
: QWidget(parent)
|
|
|
|
, avatar_{new Avatar(this)}
|
2018-04-10 11:47:23 +03:00
|
|
|
, hovering_{false}
|
2018-03-25 00:16:15 +03:00
|
|
|
{
|
|
|
|
setMouseTracking(true);
|
|
|
|
setAttribute(Qt::WA_Hover);
|
|
|
|
|
|
|
|
topLayout_ = new QHBoxLayout(this);
|
|
|
|
topLayout_->setContentsMargins(
|
|
|
|
PopupHMargin, PopupItemMargin, PopupHMargin, PopupItemMargin);
|
2018-04-27 01:57:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PopupItem::paintEvent(QPaintEvent *)
|
|
|
|
{
|
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
QPainter p(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
|
|
|
|
|
|
if (underMouse() || hovering_)
|
|
|
|
p.fillRect(rect(), hoverColor_);
|
|
|
|
}
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
UserItem::UserItem(QWidget *parent, const QString &user_id)
|
|
|
|
: PopupItem(parent)
|
|
|
|
, userId_{user_id}
|
|
|
|
{
|
2018-03-25 00:16:15 +03:00
|
|
|
QFont font;
|
|
|
|
font.setPixelSize(conf::popup::font);
|
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
auto displayName = Cache::displayName(ChatPage::instance()->currentRoom(), userId_);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
|
|
|
avatar_->setSize(conf::popup::avatar);
|
|
|
|
avatar_->setLetter(utils::firstChar(displayName));
|
|
|
|
|
|
|
|
// If it's a matrix id we use the second letter.
|
|
|
|
if (displayName.size() > 1 && displayName.at(0) == '@')
|
|
|
|
avatar_->setLetter(QChar(displayName.at(1)));
|
|
|
|
|
|
|
|
userName_ = new QLabel(displayName, this);
|
|
|
|
userName_->setFont(font);
|
|
|
|
|
|
|
|
topLayout_->addWidget(avatar_);
|
|
|
|
topLayout_->addWidget(userName_, 1);
|
|
|
|
|
2018-04-21 16:34:50 +03:00
|
|
|
AvatarProvider::resolve(ChatPage::instance()->currentRoom(),
|
2018-04-27 01:57:46 +03:00
|
|
|
userId_,
|
2018-04-21 16:34:50 +03:00
|
|
|
this,
|
|
|
|
[this](const QImage &img) { avatar_->setImage(img); });
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2018-04-27 14:04:13 +03:00
|
|
|
void
|
|
|
|
UserItem::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->buttons() != Qt::RightButton)
|
|
|
|
emit clicked(
|
|
|
|
Cache::displayName(ChatPage::instance()->currentRoom(), selectedText()));
|
|
|
|
|
|
|
|
QWidget::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
RoomItem::RoomItem(QWidget *parent, const RoomSearchResult &res)
|
|
|
|
: PopupItem(parent)
|
|
|
|
, roomId_{QString::fromStdString(res.room_id)}
|
2018-03-25 00:16:15 +03:00
|
|
|
{
|
2018-04-27 01:57:46 +03:00
|
|
|
auto name = QFontMetrics(QFont()).elidedText(
|
|
|
|
QString::fromStdString(res.info.name), Qt::ElideRight, parentWidget()->width() - 10);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
avatar_->setSize(conf::popup::avatar + 6);
|
|
|
|
avatar_->setLetter(utils::firstChar(name));
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
roomName_ = new QLabel(name, this);
|
|
|
|
roomName_->setMargin(0);
|
2018-03-25 00:16:15 +03:00
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
topLayout_->addWidget(avatar_);
|
|
|
|
topLayout_->addWidget(roomName_, 1);
|
|
|
|
|
|
|
|
if (!res.img.isNull())
|
|
|
|
avatar_->setImage(res.img);
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2018-04-27 14:04:13 +03:00
|
|
|
void
|
|
|
|
RoomItem::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->buttons() != Qt::RightButton)
|
|
|
|
emit clicked(selectedText());
|
|
|
|
|
|
|
|
QWidget::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
2018-03-25 00:16:15 +03:00
|
|
|
SuggestionsPopup::SuggestionsPopup(QWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
|
|
|
setAttribute(Qt::WA_ShowWithoutActivating, true);
|
|
|
|
setWindowFlags(Qt::ToolTip | Qt::NoDropShadowWindowHint);
|
|
|
|
|
|
|
|
layout_ = new QVBoxLayout(this);
|
|
|
|
layout_->setMargin(0);
|
|
|
|
layout_->setSpacing(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-04-27 01:57:46 +03:00
|
|
|
SuggestionsPopup::addRooms(const std::vector<RoomSearchResult> &rooms)
|
2018-03-25 00:16:15 +03:00
|
|
|
{
|
2018-04-27 01:57:46 +03:00
|
|
|
removeItems();
|
|
|
|
|
|
|
|
if (rooms.empty()) {
|
|
|
|
hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &r : rooms) {
|
|
|
|
auto room = new RoomItem(this, r);
|
|
|
|
layout_->addWidget(room);
|
|
|
|
connect(room, &RoomItem::clicked, this, &SuggestionsPopup::itemSelected);
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2018-04-27 01:57:46 +03:00
|
|
|
resetSelection();
|
|
|
|
adjustSize();
|
|
|
|
|
|
|
|
resize(geometry().width(), 40 * rooms.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SuggestionsPopup::addUsers(const QVector<SearchResult> &users)
|
|
|
|
{
|
|
|
|
removeItems();
|
|
|
|
|
2018-03-25 00:16:15 +03:00
|
|
|
if (users.isEmpty()) {
|
|
|
|
hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &u : users) {
|
2018-04-27 01:57:46 +03:00
|
|
|
auto user = new UserItem(this, u.user_id);
|
2018-03-25 00:16:15 +03:00
|
|
|
layout_->addWidget(user);
|
2018-04-27 01:57:46 +03:00
|
|
|
connect(user, &UserItem::clicked, this, &SuggestionsPopup::itemSelected);
|
2018-03-25 00:16:15 +03:00
|
|
|
}
|
|
|
|
|
2018-04-14 14:12:36 +03:00
|
|
|
resetSelection();
|
2018-04-24 16:03:50 +03:00
|
|
|
adjustSize();
|
2018-04-10 11:47:23 +03:00
|
|
|
|
2018-03-25 00:16:15 +03:00
|
|
|
resize(geometry().width(), 40 * users.size());
|
|
|
|
}
|
2018-04-10 11:47:23 +03:00
|
|
|
|
|
|
|
void
|
2018-04-14 14:12:36 +03:00
|
|
|
SuggestionsPopup::hoverSelection()
|
|
|
|
{
|
|
|
|
resetHovering();
|
|
|
|
setHovering(selectedItem_);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SuggestionsPopup::selectNextSuggestion()
|
|
|
|
{
|
|
|
|
selectedItem_++;
|
|
|
|
if (selectedItem_ >= layout_->count())
|
|
|
|
selectFirstItem();
|
|
|
|
|
|
|
|
hoverSelection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SuggestionsPopup::selectPreviousSuggestion()
|
2018-04-10 11:47:23 +03:00
|
|
|
{
|
2018-04-14 14:12:36 +03:00
|
|
|
selectedItem_--;
|
|
|
|
if (selectedItem_ < 0)
|
|
|
|
selectLastItem();
|
|
|
|
|
|
|
|
hoverSelection();
|
|
|
|
}
|
2018-04-10 11:47:23 +03:00
|
|
|
|
2018-04-14 14:12:36 +03:00
|
|
|
void
|
|
|
|
SuggestionsPopup::resetHovering()
|
|
|
|
{
|
2018-04-10 11:47:23 +03:00
|
|
|
for (int i = 0; i < layout_->count(); ++i) {
|
2018-04-14 14:12:36 +03:00
|
|
|
const auto item = qobject_cast<PopupItem *>(layout_->itemAt(i)->widget());
|
|
|
|
|
|
|
|
if (item)
|
|
|
|
item->setHovering(false);
|
2018-04-10 11:47:23 +03:00
|
|
|
}
|
2018-04-14 14:12:36 +03:00
|
|
|
}
|
2018-04-10 11:47:23 +03:00
|
|
|
|
2018-04-14 14:12:36 +03:00
|
|
|
void
|
|
|
|
SuggestionsPopup::setHovering(int pos)
|
|
|
|
{
|
|
|
|
const auto &item = layout_->itemAt(pos);
|
2018-04-10 11:47:23 +03:00
|
|
|
const auto &widget = qobject_cast<PopupItem *>(item->widget());
|
|
|
|
|
2018-04-14 14:12:36 +03:00
|
|
|
if (widget)
|
|
|
|
widget->setHovering(true);
|
2018-04-10 11:47:23 +03:00
|
|
|
}
|
|
|
|
|
2018-04-24 16:03:50 +03:00
|
|
|
void
|
|
|
|
SuggestionsPopup::paintEvent(QPaintEvent *)
|
|
|
|
{
|
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
QPainter p(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
|
|
}
|