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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
#include "checkboxwordwrap.h"
#include <QStyle>
#include <QStyleOptionButton>
CheckBoxWordWrap::CheckBoxWordWrap(QWidget *parent)
: QCheckBox (parent)
, m_hMainLayout(new QHBoxLayout(this))
, m_label(new ClickableLabel(this))
{
init();
}
CheckBoxWordWrap::CheckBoxWordWrap(const QString &text, QWidget *parent)
: QCheckBox (parent)
, m_hMainLayout(new QHBoxLayout(this))
, m_label(new ClickableLabel(text, this))
{
init();
}
CheckBoxWordWrap::~CheckBoxWordWrap()
{
delete m_label;
delete m_hMainLayout;
}
bool CheckBoxWordWrap::isWordWrap() const
{
return m_label->wordWrap();
}
void CheckBoxWordWrap::setWordWrap(bool wordwrap)
{
m_label->setWordWrap(wordwrap);
}
QString CheckBoxWordWrap::text() const
{
return m_label->text();
}
void CheckBoxWordWrap::setText(const QString &text)
{
m_label->setText(text);
}
QSize CheckBoxWordWrap::sizeHint() const
{
QFontMetrics fm(m_label->font());
QRect r = m_label->rect();
r.setLeft(r.left()+m_label->indent()+separation);
QRect bRect = fm.boundingRect(r, int(Qt::AlignLeft | Qt::AlignVCenter | Qt::TextWordWrap), m_label->text());
QSize ret = QSize(QWidget::sizeHint().width(), bRect.height());
return ret;
}
void CheckBoxWordWrap::labelIsClicked()
{
setChecked(!isChecked());
}
void CheckBoxWordWrap::resizeEvent(QResizeEvent *event)
{
QWidget::resizeEvent(event);
updateGeometry();
}
void CheckBoxWordWrap::init()
{
setLayout(m_hMainLayout);
QStyleOptionButton opt;
initStyleOption(&opt);
int indicatorW = style()->pixelMetric(QStyle::PixelMetric::PM_IndicatorWidth, &opt, this);
// Useless in our case, we only need the indicator width
//int indicatorH = style()->pixelMetric(QStyle::PixelMetric::PM_IndicatorHeight, &opt, this);
m_hMainLayout->setContentsMargins(0, 0, 0, 0);
m_hMainLayout->addWidget(m_label);
m_label->setIndent(indicatorW+separation);
m_label->setWordWrap(true);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
connect(m_label, SIGNAL(clicked()), this, SLOT(labelIsClicked()));
}
RadioButtonWordWrap::RadioButtonWordWrap(QWidget* parent)
: QRadioButton(parent)
, m_hMainLayout(new QHBoxLayout(this))
, m_label(new ClickableLabel(this))
{
init();
}
RadioButtonWordWrap::RadioButtonWordWrap(const QString& text, QWidget* parent)
: QRadioButton(parent)
, m_hMainLayout(new QHBoxLayout(this))
, m_label(new ClickableLabel(text, this))
{
init();
}
RadioButtonWordWrap::~RadioButtonWordWrap()
{
delete m_label;
delete m_hMainLayout;
}
bool RadioButtonWordWrap::isWordWrap() const
{
return m_label->wordWrap();
}
void RadioButtonWordWrap::setWordWrap(bool wordwrap)
{
m_label->setWordWrap(wordwrap);
}
QString RadioButtonWordWrap::text() const
{
return m_label->text();
}
void RadioButtonWordWrap::setText(const QString& text)
{
m_label->setText(text);
}
QSize RadioButtonWordWrap::sizeHint() const
{
QFontMetrics fm(m_label->font());
QRect r = m_label->rect();
r.setLeft(r.left() + m_label->indent() + separation);
QRect bRect = fm.boundingRect(r, int(Qt::AlignLeft | Qt::AlignVCenter | Qt::TextWordWrap), m_label->text());
QSize ret = QSize(QWidget::sizeHint().width(), bRect.height());
return ret;
}
void RadioButtonWordWrap::labelIsClicked()
{
setChecked(!isChecked());
}
void RadioButtonWordWrap::resizeEvent(QResizeEvent* event)
{
QWidget::resizeEvent(event);
updateGeometry();
}
void RadioButtonWordWrap::init()
{
setLayout(m_hMainLayout);
QStyleOptionButton opt;
initStyleOption(&opt);
int indicatorW = style()->pixelMetric(QStyle::PixelMetric::PM_IndicatorWidth, &opt, this);
// Useless in our case, we only need the indicator width
//int indicatorH = style()->pixelMetric(QStyle::PixelMetric::PM_IndicatorHeight, &opt, this);
m_hMainLayout->setContentsMargins(0, 0, 0, 0);
m_hMainLayout->addWidget(m_label);
m_label->setIndent(indicatorW + separation);
m_label->setWordWrap(true);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
connect(m_label, SIGNAL(clicked()), this, SLOT(labelIsClicked()));
}
|