StatusBarSpaceInfo::StatusBarSpaceInfo(QWidget* parent) :
QProgressBar(parent),
+ m_gettingSize(false),
+ m_foundMountPoint(false),
m_text()
{
+ setMinimum(0);
+ setMaximum(0);
+
setMaximumWidth(200);
// Update the space information each 10 seconds. Polling is useful
{
m_url = url;
refresh();
- QTimer::singleShot(300, this, SLOT(update()));
}
QString StatusBarSpaceInfo::text() const
quint64 kBUsed,
quint64 kBAvailable)
{
- Q_UNUSED(kBUsed);
Q_UNUSED(mountPoint);
- m_text = i18nc("@info:status", "%1 free", KIO::convertSizeFromKiB(kBAvailable));
+ m_gettingSize = false;
+ m_foundMountPoint = true;
+ const bool valuesChanged = (kBUsed != static_cast<quint64>(value())) ||
+ (kBSize != static_cast<quint64>(maximum()));
+ if (valuesChanged) {
+ m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable * 1024));
+ setUpdatesEnabled(false);
+ setMaximum(kBSize);
+ setValue(kBUsed);
+ setUpdatesEnabled(true);
+ update();
+ }
+}
- setMinimum(0);
- setMaximum(kBAvailable);
- setValue(kBUsed);
+void StatusBarSpaceInfo::slotDiskFreeSpaceDone()
+{
+ if (m_foundMountPoint) {
+ return;
+ }
+
+ m_gettingSize = false;
+ m_text = i18nc("@info:status", "Unknown size");
+ setValue(0);
+ update();
}
void StatusBarSpaceInfo::refresh()
{
// KDiskFreeSpace is for local paths only
if (!m_url.isLocalFile()) {
+ m_text = i18nc("@info:status", "Unknown size");
+ setValue(0);
+ update();
return;
}
- m_text = i18nc("@info:status", "Getting size...");
- setMinimum(0);
- setMaximum(0);
-
KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(m_url.path());
if (!mp) {
return;
}
+ m_gettingSize = true;
+ m_foundMountPoint = false;
KDiskFreeSpace* job = new KDiskFreeSpace(this);
connect(job, SIGNAL(foundMountPoint(const QString&,
quint64,
quint64,
quint64,
quint64)));
+ connect(job, SIGNAL(done()), this, SLOT(slotDiskFreeSpaceDone()));
job->readDF(mp->mountPoint());
+
+ // refresh() is invoked for each directory change. Usually getting
+ // the size information can be done very fast, so to prevent any
+ // flickering the "Getting size..." indication is only shown if
+ // at least 300 ms have been passed.
+ QTimer::singleShot(300, this, SLOT(showGettingSizeInfo()));
+}
+
+void StatusBarSpaceInfo::showGettingSizeInfo()
+{
+ if (m_gettingSize) {
+ m_text = i18nc("@info:status", "Getting size...");
+ setMaximum(0);
+ update();
+ }
}
#include "statusbarspaceinfo.moc"