summary refs log tree commit diff
path: root/src/ui/TextLabel.h
blob: da6e9c4b8303d57869cc5d07b71568f3d13295d6 (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
#pragma once

#include <QSize>
#include <QString>
#include <QTextBrowser>
#include <QUrl>

class QMouseEvent;
class QFocusEvent;
class QWheelEvent;

class TextLabel : public QTextBrowser
{
        Q_OBJECT

public:
        TextLabel(const QString &text, QWidget *parent = nullptr);
        TextLabel(QWidget *parent = nullptr);

        void wheelEvent(QWheelEvent *event) override;
        void clearLinks() { link_.clear(); }

protected:
        void mousePressEvent(QMouseEvent *e) override;
        void mouseReleaseEvent(QMouseEvent *e) override;
        void focusOutEvent(QFocusEvent *e) override;

private slots:
        void adjustHeight(const QSizeF &size) { setFixedHeight(size.height()); }
        void handleLinkActivation(const QUrl &link);

signals:
        void userProfileTriggered(const QString &user_id);
        void linkActivated(const QUrl &link);

private:
        QString link_;
};