2018-01-09 16:07:32 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
#include <mtx/responses/groups.hpp>
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
#include "Config.h"
|
2018-01-09 16:07:32 +03:00
|
|
|
#include "ui/Theme.h"
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
class RippleOverlay;
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
class CommunitiesListItem : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor highlightedBackgroundColor READ highlightedBackgroundColor WRITE
|
|
|
|
setHighlightedBackgroundColor)
|
|
|
|
Q_PROPERTY(
|
|
|
|
QColor hoverBackgroundColor READ hoverBackgroundColor WRITE setHoverBackgroundColor)
|
|
|
|
Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor)
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
Q_PROPERTY(QColor avatarFgColor READ avatarFgColor WRITE setAvatarFgColor)
|
|
|
|
Q_PROPERTY(QColor avatarBgColor READ avatarBgColor WRITE setAvatarBgColor)
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
public:
|
2018-07-14 12:08:16 +03:00
|
|
|
CommunitiesListItem(QString group_id, QWidget *parent = nullptr);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
void setName(QString name) { name_ = name; }
|
2018-04-28 15:27:12 +03:00
|
|
|
bool isPressed() const { return isPressed_; }
|
|
|
|
void setAvatar(const QImage &img);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
void setRooms(std::vector<QString> room_ids) { room_ids_ = std::move(room_ids); }
|
|
|
|
std::vector<QString> rooms() const { return room_ids_; }
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
QColor highlightedBackgroundColor() const { return highlightedBackgroundColor_; }
|
|
|
|
QColor hoverBackgroundColor() const { return hoverBackgroundColor_; }
|
|
|
|
QColor backgroundColor() const { return backgroundColor_; }
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
QColor avatarFgColor() const { return avatarFgColor_; }
|
|
|
|
QColor avatarBgColor() const { return avatarBgColor_; }
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
void setHighlightedBackgroundColor(QColor &color) { highlightedBackgroundColor_ = color; }
|
|
|
|
void setHoverBackgroundColor(QColor &color) { hoverBackgroundColor_ = color; }
|
|
|
|
void setBackgroundColor(QColor &color) { backgroundColor_ = color; }
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
void setAvatarFgColor(QColor &color) { avatarFgColor_ = color; }
|
|
|
|
void setAvatarBgColor(QColor &color) { avatarBgColor_ = color; }
|
|
|
|
|
|
|
|
QSize sizeHint() const override
|
|
|
|
{
|
|
|
|
return QSize(IconSize + IconSize / 3, IconSize + IconSize / 3);
|
|
|
|
}
|
2018-01-09 16:07:32 +03:00
|
|
|
|
|
|
|
signals:
|
2018-07-14 12:08:16 +03:00
|
|
|
void clicked(const QString &group_id);
|
2018-01-09 16:07:32 +03:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setPressedState(bool state);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
|
|
|
|
private:
|
2018-04-28 15:27:12 +03:00
|
|
|
const int IconSize = 36;
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
QString resolveName() const;
|
|
|
|
|
|
|
|
std::vector<QString> room_ids_;
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
QString name_;
|
|
|
|
QString groupId_;
|
|
|
|
QPixmap avatar_;
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
QColor highlightedBackgroundColor_;
|
|
|
|
QColor hoverBackgroundColor_;
|
|
|
|
QColor backgroundColor_;
|
|
|
|
|
|
|
|
QColor avatarFgColor_;
|
|
|
|
QColor avatarBgColor_;
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
bool isPressed_ = false;
|
|
|
|
|
2018-04-28 15:27:12 +03:00
|
|
|
RippleOverlay *rippleOverlay_;
|
|
|
|
};
|