nheko/include/SuggestionsPopup.hpp

149 lines
3.8 KiB
C++
Raw Normal View History

#pragma once
#include <QHBoxLayout>
#include <QLabel>
#include <QPoint>
#include <QWidget>
2018-04-27 00:57:46 +02:00
#include "Avatar.h"
#include "AvatarProvider.h"
#include "Cache.h"
#include "ChatPage.h"
class Avatar;
2018-04-21 15:34:50 +02:00
struct SearchResult;
class PopupItem : public QWidget
{
Q_OBJECT
Q_PROPERTY(QColor hoverColor READ hoverColor WRITE setHoverColor)
Q_PROPERTY(bool hovering READ hovering WRITE setHovering)
public:
2018-04-27 00:57:46 +02:00
PopupItem(QWidget *parent);
2018-04-27 00:57:46 +02:00
QString selectedText() const { return QString(); }
QColor hoverColor() const { return hoverColor_; }
void setHoverColor(QColor &color) { hoverColor_ = color; }
bool hovering() const { return hovering_; }
void setHovering(const bool hover) { hovering_ = hover; };
protected:
void paintEvent(QPaintEvent *event) override;
signals:
2018-04-27 00:57:46 +02:00
void clicked(const QString &text);
2018-04-27 00:57:46 +02:00
protected:
QHBoxLayout *topLayout_;
Avatar *avatar_;
QColor hoverColor_;
2018-04-27 13:04:13 +02:00
//! Set if the item is currently being
//! hovered during tab completion (cycling).
bool hovering_;
};
2018-04-27 00:57:46 +02:00
class UserItem : public PopupItem
{
Q_OBJECT
public:
UserItem(QWidget *parent, const QString &user_id);
QString selectedText() const { return userId_; }
void updateItem(const QString &user_id);
2018-04-27 00:57:46 +02:00
2018-04-27 13:04:13 +02:00
protected:
void mousePressEvent(QMouseEvent *event) override;
2018-04-27 00:57:46 +02:00
private:
void resolveAvatar(const QString &user_id);
2018-04-27 00:57:46 +02:00
QLabel *userName_;
QString userId_;
};
class RoomItem : public PopupItem
{
Q_OBJECT
public:
RoomItem(QWidget *parent, const RoomSearchResult &res);
QString selectedText() const { return roomId_; }
void updateItem(const RoomSearchResult &res);
2018-04-27 00:57:46 +02:00
2018-04-27 13:04:13 +02:00
protected:
void mousePressEvent(QMouseEvent *event) override;
2018-04-27 00:57:46 +02:00
private:
QLabel *roomName_;
QString roomId_;
RoomSearchResult info_;
};
class SuggestionsPopup : public QWidget
{
Q_OBJECT
public:
explicit SuggestionsPopup(QWidget *parent = nullptr);
2018-04-27 00:57:46 +02:00
template<class Item>
void selectHoveredSuggestion()
{
const auto item = layout_->itemAt(selectedItem_);
if (!item)
return;
const auto &widget = qobject_cast<Item *>(item->widget());
emit itemSelected(
Cache::displayName(ChatPage::instance()->currentRoom(), widget->selectedText()));
resetSelection();
}
public slots:
void addUsers(const QVector<SearchResult> &users);
2018-04-27 00:57:46 +02:00
void addRooms(const std::vector<RoomSearchResult> &rooms);
//! Move to the next available suggestion item.
void selectNextSuggestion();
//! Move to the previous available suggestion item.
void selectPreviousSuggestion();
//! Remove hovering from all items.
void resetHovering();
//! Set hovering to the item in the given layout position.
void setHovering(int pos);
protected:
void paintEvent(QPaintEvent *event) override;
signals:
void itemSelected(const QString &user);
private:
void hoverSelection();
void resetSelection() { selectedItem_ = -1; }
void selectFirstItem() { selectedItem_ = 0; }
void selectLastItem() { selectedItem_ = layout_->count() - 1; }
void removeLayoutItemsAfter(size_t startingPos)
2018-04-27 00:57:46 +02:00
{
size_t posToRemove = layout_->count() - 1;
2018-04-27 00:57:46 +02:00
QLayoutItem *item;
while (startingPos <= posToRemove && (item = layout_->takeAt(posToRemove)) != 0) {
2018-04-27 00:57:46 +02:00
delete item->widget();
delete item;
posToRemove = layout_->count() - 1;
2018-04-27 00:57:46 +02:00
}
}
QVBoxLayout *layout_;
//! Counter for tab completion (cycling).
int selectedItem_ = -1;
};