summary refs log tree commit diff
path: root/include/CommunitiesListItem.h
blob: 099b4fa2be3a8b24a04f5f49f4e66dfaab65c177 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#pragma once

#include <QDebug>
#include <QMouseEvent>
#include <QPainter>
#include <QSharedPointer>
#include <QWidget>

#include "Community.h"
#include "Menu.h"
#include "ui/Theme.h"

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)

public:
        CommunitiesListItem(QSharedPointer<Community> community,
                            QString community_id,
                            QWidget *parent = nullptr);

        ~CommunitiesListItem();

        void setCommunity(QSharedPointer<Community> community);

        inline bool isPressed() const;
        inline void setAvatar(const QImage &avatar_image);

        QColor highlightedBackgroundColor() const { return highlightedBackgroundColor_; }
        QColor hoverBackgroundColor() const { return hoverBackgroundColor_; }
        QColor backgroundColor() const { return backgroundColor_; }

        void setHighlightedBackgroundColor(QColor &color) { highlightedBackgroundColor_ = color; }
        void setHoverBackgroundColor(QColor &color) { hoverBackgroundColor_ = color; }
        void setBackgroundColor(QColor &color) { backgroundColor_ = color; }

        QColor highlightedBackgroundColor_;
        QColor hoverBackgroundColor_;
        QColor backgroundColor_;

signals:
        void clicked(const QString &community_id);

public slots:
        void setPressedState(bool state);

protected:
        void mousePressEvent(QMouseEvent *event) override;
        void paintEvent(QPaintEvent *event) override;
        void contextMenuEvent(QContextMenuEvent *event) override;

private:
        const int IconSize = 55;

        QSharedPointer<Community> community_;
        QString communityId_;
        QString communityName_;
        QString communityShortDescription;

        QPixmap communityAvatar_;

        Menu *menu_;
        bool isPressed_ = false;
};

inline bool
CommunitiesListItem::isPressed() const
{
        return isPressed_;
}

inline void
CommunitiesListItem::setAvatar(const QImage &avatar_image)
{
        communityAvatar_ = QPixmap::fromImage(
          avatar_image.scaled(IconSize, IconSize, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
        update();
}

class WorldCommunityListItem : public CommunitiesListItem
{
        Q_OBJECT
public:
        WorldCommunityListItem(QWidget *parent = nullptr);
        ~WorldCommunityListItem();

protected:
        void mousePressEvent(QMouseEvent *event) override;
        void paintEvent(QPaintEvent *event) override;

private:
        const int IconSize = 55;
};