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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
/*
* SPDX-FileCopyrightText: 2006-2012 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "dolphinstatusbar.h"
#include "dolphin_generalsettings.h"
#include "statusbarspaceinfo.h"
#include "views/dolphinview.h"
#include "views/zoomlevelinfo.h"
#include <KLocalizedString>
#include <KSqueezedTextLabel>
#include <QApplication>
#include <QHBoxLayout>
#include <QHelpEvent>
#include <QIcon>
#include <QMenu>
#include <QPainter>
#include <QProgressBar>
#include <QSlider>
#include <QStyleOption>
#include <QTimer>
#include <QToolButton>
namespace
{
const int UpdateDelay = 50;
}
DolphinStatusBar::DolphinStatusBar(QWidget *parent)
: QWidget(parent)
, m_text()
, m_defaultText()
, m_label(nullptr)
, m_zoomLabel(nullptr)
, m_spaceInfo(nullptr)
, m_zoomSlider(nullptr)
, m_progressBar(nullptr)
, m_stopButton(nullptr)
, m_progress(100)
, m_showProgressBarTimer(nullptr)
, m_delayUpdateTimer(nullptr)
, m_textTimestamp()
{
setContentsMargins(4, 0, 4, 0);
// Initialize text label
m_label = new KSqueezedTextLabel(m_text, this);
m_label->setWordWrap(true);
m_label->setTextFormat(Qt::PlainText);
// Initialize zoom slider's explanatory label
m_zoomLabel = new QLabel(i18nc("Used as a noun, i.e. 'Here is the zoom level:'", "Zoom:"), this);
// Initialize zoom widget
m_zoomSlider = new QSlider(Qt::Horizontal, this);
m_zoomSlider->setAccessibleName(i18n("Zoom"));
m_zoomSlider->setAccessibleDescription(i18nc("Description for zoom-slider (accessibility)", "Sets the size of the file icons."));
m_zoomSlider->setPageStep(1);
m_zoomSlider->setRange(ZoomLevelInfo::minimumLevel(), ZoomLevelInfo::maximumLevel());
connect(m_zoomSlider, &QSlider::valueChanged, this, &DolphinStatusBar::zoomLevelChanged);
connect(m_zoomSlider, &QSlider::valueChanged, this, &DolphinStatusBar::updateZoomSliderToolTip);
connect(m_zoomSlider, &QSlider::sliderMoved, this, &DolphinStatusBar::showZoomSliderToolTip);
// Initialize space information
m_spaceInfo = new StatusBarSpaceInfo(this);
// Initialize progress information
m_stopButton = new QToolButton(this);
m_stopButton->setIcon(QIcon::fromTheme(QStringLiteral("process-stop")));
m_stopButton->setAccessibleName(i18n("Stop"));
m_stopButton->setAutoRaise(true);
m_stopButton->setToolTip(i18nc("@tooltip", "Stop loading"));
m_stopButton->hide();
connect(m_stopButton, &QToolButton::clicked, this, &DolphinStatusBar::stopPressed);
m_progressTextLabel = new QLabel(this);
m_progressTextLabel->hide();
m_progressBar = new QProgressBar(this);
m_progressBar->hide();
m_showProgressBarTimer = new QTimer(this);
m_showProgressBarTimer->setInterval(500);
m_showProgressBarTimer->setSingleShot(true);
connect(m_showProgressBarTimer, &QTimer::timeout, this, &DolphinStatusBar::updateProgressInfo);
// initialize text updater delay timer
m_delayUpdateTimer = new QTimer(this);
m_delayUpdateTimer->setInterval(UpdateDelay);
m_delayUpdateTimer->setSingleShot(true);
connect(m_delayUpdateTimer, &QTimer::timeout, this, &DolphinStatusBar::updateLabelText);
// Initialize top layout and size policies
const int fontHeight = QFontMetrics(m_label->font()).height();
const int zoomSliderHeight = m_zoomSlider->minimumSizeHint().height();
const int buttonHeight = m_stopButton->height();
const int contentHeight = qMax(qMax(fontHeight, zoomSliderHeight), buttonHeight);
QFontMetrics fontMetrics(m_label->font());
m_label->setFixedHeight(contentHeight);
m_label->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
m_zoomSlider->setMaximumWidth(fontMetrics.averageCharWidth() * 15);
m_spaceInfo->setFixedHeight(contentHeight);
m_spaceInfo->setMaximumWidth(fontMetrics.averageCharWidth() * 25);
m_spaceInfo->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
m_progressBar->setFixedHeight(zoomSliderHeight);
m_progressBar->setMaximumWidth(fontMetrics.averageCharWidth() * 20);
QHBoxLayout *topLayout = new QHBoxLayout(this);
topLayout->setContentsMargins(2, 0, 2, 0);
topLayout->setSpacing(4);
topLayout->addWidget(m_label, 1);
topLayout->addWidget(m_zoomLabel);
topLayout->addWidget(m_zoomSlider, 1);
topLayout->addWidget(m_spaceInfo, 1);
topLayout->addWidget(m_stopButton);
topLayout->addWidget(m_progressTextLabel);
topLayout->addWidget(m_progressBar);
setVisible(GeneralSettings::showStatusBar());
setExtensionsVisible(true);
setWhatsThis(xi18nc("@info:whatsthis Statusbar",
"<para>This is "
"the <emphasis>Statusbar</emphasis>. It contains three elements "
"by default (left to right):<list><item>A <emphasis>text field"
"</emphasis> that displays the size of selected items. If only "
"one item is selected the name and type is shown as well.</item>"
"<item>A <emphasis>zoom slider</emphasis> that allows you "
"to adjust the size of the icons in the view.</item>"
"<item><emphasis>Space information</emphasis> about the "
"current storage device.</item></list></para>"));
}
DolphinStatusBar::~DolphinStatusBar()
{
}
void DolphinStatusBar::setText(const QString &text)
{
if (m_text == text) {
return;
}
m_textTimestamp = QTime::currentTime();
m_text = text;
// will update status bar text in 50ms
m_delayUpdateTimer->start();
}
QString DolphinStatusBar::text() const
{
return m_text;
}
void DolphinStatusBar::setProgressText(const QString &text)
{
m_progressTextLabel->setText(text);
}
QString DolphinStatusBar::progressText() const
{
return m_progressTextLabel->text();
}
void DolphinStatusBar::setProgress(int percent)
{
// Show a busy indicator if a value < 0 is provided:
m_progressBar->setMaximum((percent < 0) ? 0 : 100);
percent = qBound(0, percent, 100);
const bool progressRestarted = (percent < 100) && (percent < m_progress);
m_progress = percent;
if (progressRestarted && !m_progressBar->isVisible()) {
// Show the progress bar delayed: In the case if 100 % are reached within
// a short time, no progress bar will be shown at all.
m_showProgressBarTimer->start();
}
m_progressBar->setValue(m_progress);
if (percent == 100) {
// The end of the progress has been reached. Assure that the progress bar
// gets hidden and the extensions widgets get visible again.
m_showProgressBarTimer->stop();
updateProgressInfo();
}
}
int DolphinStatusBar::progress() const
{
return m_progress;
}
void DolphinStatusBar::resetToDefaultText()
{
m_text.clear();
QTime currentTime;
if (currentTime.msecsTo(m_textTimestamp) < UpdateDelay) {
m_delayUpdateTimer->start();
} else {
updateLabelText();
}
}
void DolphinStatusBar::setDefaultText(const QString &text)
{
m_defaultText = text;
updateLabelText();
}
QString DolphinStatusBar::defaultText() const
{
return m_defaultText;
}
void DolphinStatusBar::setUrl(const QUrl &url)
{
if (GeneralSettings::showSpaceInfo()) {
m_spaceInfo->setUrl(url);
}
}
QUrl DolphinStatusBar::url() const
{
return m_spaceInfo->url();
}
void DolphinStatusBar::setZoomLevel(int zoomLevel)
{
if (zoomLevel != m_zoomSlider->value()) {
m_zoomSlider->setValue(zoomLevel);
}
}
int DolphinStatusBar::zoomLevel() const
{
return m_zoomSlider->value();
}
void DolphinStatusBar::readSettings()
{
setVisible(GeneralSettings::showStatusBar());
setExtensionsVisible(true);
}
void DolphinStatusBar::updateSpaceInfo()
{
m_spaceInfo->update();
}
void DolphinStatusBar::contextMenuEvent(QContextMenuEvent *event)
{
Q_UNUSED(event)
QMenu menu(this);
QAction *showZoomSliderAction = menu.addAction(i18nc("@action:inmenu", "Show Zoom Slider"));
showZoomSliderAction->setCheckable(true);
showZoomSliderAction->setChecked(GeneralSettings::showZoomSlider());
QAction *showSpaceInfoAction = menu.addAction(i18nc("@action:inmenu", "Show Space Information"));
showSpaceInfoAction->setCheckable(true);
showSpaceInfoAction->setChecked(GeneralSettings::showSpaceInfo());
const QAction *action = menu.exec(event->reason() == QContextMenuEvent::Reason::Mouse ? QCursor::pos() : mapToGlobal(QPoint(width() / 2, height() / 2)));
if (action == showZoomSliderAction) {
const bool visible = showZoomSliderAction->isChecked();
GeneralSettings::setShowZoomSlider(visible);
m_zoomSlider->setVisible(visible);
m_zoomLabel->setVisible(visible);
} else if (action == showSpaceInfoAction) {
const bool visible = showSpaceInfoAction->isChecked();
GeneralSettings::setShowSpaceInfo(visible);
m_spaceInfo->setVisible(visible);
}
}
void DolphinStatusBar::showZoomSliderToolTip(int zoomLevel)
{
updateZoomSliderToolTip(zoomLevel);
QPoint global = m_zoomSlider->rect().topLeft();
global.ry() += m_zoomSlider->height() / 2;
QHelpEvent toolTipEvent(QEvent::ToolTip, QPoint(0, 0), m_zoomSlider->mapToGlobal(global));
QApplication::sendEvent(m_zoomSlider, &toolTipEvent);
}
void DolphinStatusBar::updateProgressInfo()
{
if (m_progress < 100) {
// Show the progress information and hide the extensions
m_stopButton->show();
m_progressTextLabel->show();
m_progressBar->show();
setExtensionsVisible(false);
} else {
// Hide the progress information and show the extensions
m_stopButton->hide();
m_progressTextLabel->hide();
m_progressBar->hide();
setExtensionsVisible(true);
}
}
void DolphinStatusBar::updateLabelText()
{
const QString text = m_text.isEmpty() ? m_defaultText : m_text;
m_label->setText(text);
}
void DolphinStatusBar::updateZoomSliderToolTip(int zoomLevel)
{
const int size = ZoomLevelInfo::iconSizeForZoomLevel(zoomLevel);
m_zoomSlider->setToolTip(i18ncp("@info:tooltip", "Size: 1 pixel", "Size: %1 pixels", size));
}
void DolphinStatusBar::setExtensionsVisible(bool visible)
{
bool showSpaceInfo = visible;
bool showZoomSlider = visible;
if (visible) {
showSpaceInfo = GeneralSettings::showSpaceInfo();
showZoomSlider = GeneralSettings::showZoomSlider();
}
m_spaceInfo->setShown(showSpaceInfo);
m_spaceInfo->setVisible(showSpaceInfo);
m_zoomSlider->setVisible(showZoomSlider);
m_zoomLabel->setVisible(showZoomSlider);
}
void DolphinStatusBar::paintEvent(QPaintEvent *paintEvent)
{
QPainter p(this);
QStyleOption opt;
opt.initFrom(this);
style()->drawPrimitive(QStyle::PE_PanelStatusBar, &opt, &p, this);
}
#include "moc_dolphinstatusbar.cpp"
|