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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185 | /* ============================================================
*
* This file is a part of digiKam project
* https://www.digikam.org
*
* Date : 2008-12-23
* Description : a widget to select between system font or a custom font.
*
* SPDX-FileCopyrightText: 2008-2026 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* ============================================================ */
#include "dfontselect.h"
// Qt includes
#include <QLabel>
#include <QEvent>
#include <QStyle>
#include <QToolTip>
#include <QComboBox>
#include <QHelpEvent>
#include <QPushButton>
#include <QFontDialog>
#include <QApplication>
#include <QFontDatabase>
// KDE includes
#include <klocalizedstring.h>
// Local includes
#include "digikam_globals.h"
#include "dexpanderbox.h"
namespace Digikam
{
class Q_DECL_HIDDEN DFontSelect::Private
{
public:
Private() = default;
QWidget* space = nullptr;
QLabel* label = nullptr;
DAdjustableLabel* desc = nullptr;
QFont font;
QFont ttFont = QToolTip::font();
QPushButton* chooseFontButton = nullptr;
QComboBox* modeCombo = nullptr;
DFontSelect::FontMode mode = DFontSelect::SystemFont;
};
DFontSelect::DFontSelect(const QString& text, QWidget* const parent)
: DHBox(parent),
d (new Private)
{
d->label = new QLabel(this);
d->label->setText(text);
d->space = new QWidget(this);
if (text.isEmpty())
{
d->label->hide();
d->space->hide();
}
d->modeCombo = new QComboBox(this);
d->modeCombo->addItem(i18n("System Font"));
d->modeCombo->addItem(i18n("Custom Font"));
d->chooseFontButton = new QPushButton(i18n("Choose..."), this);
d->desc = new DAdjustableLabel(this);
setSpacing(layoutSpacing());
setContentsMargins(0, 0, 0, 0);
setStretchFactor(d->space, 10);
connect(d->modeCombo, SIGNAL(activated(int)),
this, SLOT(slotChangeMode(int)));
connect(d->chooseFontButton, SIGNAL(clicked()),
this, SLOT(slotOpenFontDialog()));
slotChangeMode(d->modeCombo->currentIndex());
}
DFontSelect::~DFontSelect()
{
delete d;
}
void DFontSelect::setMode(FontMode mode)<--- Shadow argument
{
d->mode = mode;
d->modeCombo->setCurrentIndex(d->mode);
d->desc->setAdjustedText(QString::fromLatin1("%1 - %2").arg(font().family()).arg(font().pointSize()));
d->chooseFontButton->setEnabled(d->mode == CustomFont);
}
DFontSelect::FontMode DFontSelect::mode() const
{
return d->mode;
}
QFont DFontSelect::font() const
{
return (d->mode == CustomFont) ? d->font
: QFontDatabase::systemFont(QFontDatabase::GeneralFont);
}
void DFontSelect::setFont(const QFont& font)<--- Shadow argument
{
d->font = font;
if (d->font == QFontDatabase::systemFont(QFontDatabase::GeneralFont))
{
setMode(SystemFont);
}
else
{
setMode(CustomFont);
}
}
bool DFontSelect::event(QEvent* e)
{
if (e->type() == QEvent::ToolTip)
{
QHelpEvent* const helpEvent = static_cast<QHelpEvent*>(e);
if (d->modeCombo == qApp->widgetAt(helpEvent->globalPos()))
{
QToolTip::setFont(font());
QToolTip::showText(helpEvent->globalPos(),
d->modeCombo->currentText());
QToolTip::setFont(d->ttFont);
}
else
{
QToolTip::setFont(d->ttFont);
QToolTip::showText(helpEvent->globalPos(), toolTip());
}
e->ignore();
return true;
}
return DHBox::event(e);
}
void DFontSelect::slotOpenFontDialog()
{
bool ok = false;
QFont f = QFontDialog::getFont(&ok, font(), this,
i18n("Select a Font"),
QFontDialog::DontUseNativeDialog);
if (ok)
{
setFont(f);
Q_EMIT signalFontChanged();
}
}
void DFontSelect::slotChangeMode(int index)
{
setMode((index == CustomFont) ? CustomFont : SystemFont);
Q_EMIT signalFontChanged();
}
} // namespace Digikam
#include "moc_dfontselect.cpp"
|