aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/fixedsizeclicklabel.cpp
blob: df41d3aa7e1bbb0ad2d4eb11ad59ad04a26b83c3 (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "fixedsizeclicklabel.h"

#include <QMouseEvent>

/*!
    \class Utils::FixedSizeClickLabel

    \brief The FixedSizeClickLabel class is a label with a size hint derived from a sample text
    that can be different to the text that is shown.

    For convenience it also has a clicked signal that is emitted whenever the label receives a mouse
    click.

    \inmodule Qt Creator
*/

/*!
    \fn Utils::FixedSizeClickLabel::clicked()

    This signal is emitted when the label is clicked with the left mouse button.
*/

/*!
    \property Utils::FixedSizeClickLabel::maxText

    This property holds the text that is used to calculate the label's size hint.
*/

namespace Utils {

/*!
    Constructs a FixedSizeClickLabel with the parent \a parent.
*/
FixedSizeClickLabel::FixedSizeClickLabel(QWidget *parent)
    : QLabel(parent)
{
}

/*!
    Sets the label's text to \a text, and changes the size hint of the label to the size of
    \a maxText.

    \sa maxText
    \sa setMaxText
*/
void FixedSizeClickLabel::setText(const QString &text, const QString &maxText)
{
    QLabel::setText(text);
    m_maxText = maxText;
}

/*!
    \reimp
*/
QSize FixedSizeClickLabel::sizeHint() const
{
    return fontMetrics().boundingRect(m_maxText).size();
}

QString FixedSizeClickLabel::maxText() const
{
    return m_maxText;
}

void FixedSizeClickLabel::setMaxText(const QString &maxText)
{
    m_maxText = maxText;
}

/*!
    \reimp
*/
void FixedSizeClickLabel::mousePressEvent(QMouseEvent *ev)
{
    QLabel::mousePressEvent(ev);
    if (ev->button() == Qt::LeftButton)
        m_pressed = true;
}

/*!
    \reimp
*/
void FixedSizeClickLabel::mouseReleaseEvent(QMouseEvent *ev)
{
    QLabel::mouseReleaseEvent(ev);
    if (ev->button() != Qt::LeftButton)
        return;
    if (m_pressed && rect().contains(ev->pos()))
        emit clicked();
    m_pressed = false;
}

} // namespace Utils