2019-06-12 03:04:30 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "../AvatarProvider.h"
|
|
|
|
#include "../Cache.h"
|
|
|
|
#include "../ChatPage.h"
|
|
|
|
|
|
|
|
class Avatar;
|
|
|
|
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:
|
|
|
|
PopupItem(QWidget *parent);
|
|
|
|
|
|
|
|
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:
|
|
|
|
void clicked(const QString &text);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QHBoxLayout *topLayout_;
|
|
|
|
Avatar *avatar_;
|
|
|
|
QColor hoverColor_;
|
|
|
|
|
|
|
|
//! Set if the item is currently being
|
|
|
|
//! hovered during tab completion (cycling).
|
|
|
|
bool hovering_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UserItem : public PopupItem
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-06-14 04:33:04 +02:00
|
|
|
UserItem(QWidget *parent);
|
2019-06-12 03:04:30 +02:00
|
|
|
UserItem(QWidget *parent, const QString &user_id);
|
|
|
|
QString selectedText() const { return userId_; }
|
|
|
|
void updateItem(const QString &user_id);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void resolveAvatar(const QString &user_id);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QLabel *roomName_;
|
|
|
|
QString roomId_;
|
|
|
|
RoomSearchResult info_;
|
|
|
|
};
|