#include <QKeyEvent>
StatusBarSpaceInfo::StatusBarSpaceInfo(QWidget* parent) :
- QProgressBar(parent),
+ KCapacityBar(KCapacityBar::DrawTextInline, parent),
m_gettingSize(false),
m_foundMountPoint(false),
- m_text()
+ m_kBSize(0)
{
- setMinimum(0);
- setMaximum(0);
-
setMaximumWidth(200);
+ setMinimumWidth(200); // something to fix on kcapacitybar (ereslibre)
// Update the space information each 10 seconds. Polling is useful
// here, as files can be deleted/added outside the scope of Dolphin.
refresh();
}
-QString StatusBarSpaceInfo::text() const
-{
- return m_text;
-}
-
void StatusBarSpaceInfo::slotFoundMountPoint(const QString& mountPoint,
quint64 kBSize,
quint64 kBUsed,
m_gettingSize = false;
m_foundMountPoint = true;
- const bool valuesChanged = (kBUsed != static_cast<quint64>(value())) ||
- (kBSize != static_cast<quint64>(maximum()));
+ const bool valuesChanged = (kBUsed != static_cast<quint64>(value())) || (kBSize != m_kBSize);
if (valuesChanged) {
- m_text = i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable * 1024));
+ setText(i18nc("@info:status Free disk space", "%1 free", KIO::convertSize(kBAvailable * 1024)));
setUpdatesEnabled(false);
- setMaximum(kBSize);
- setValue(kBUsed);
+ m_kBSize = kBSize;
+ setValue(kBSize > 0 ? (kBUsed * 100) / kBSize : 0);
setUpdatesEnabled(true);
update();
}
}
m_gettingSize = false;
- m_text = i18nc("@info:status", "Unknown size");
+ setText(i18nc("@info:status", "Unknown size"));
setValue(0);
update();
}
{
// KDiskFreeSpace is for local paths only
if (!m_url.isLocalFile()) {
- m_text = i18nc("@info:status", "Unknown size");
+ setText(i18nc("@info:status", "Unknown size"));
setValue(0);
update();
return;
void StatusBarSpaceInfo::showGettingSizeInfo()
{
if (m_gettingSize) {
- m_text = i18nc("@info:status", "Getting size...");
- setMaximum(0);
+ m_kBSize = 0;
+ setText(i18nc("@info:status", "Getting size..."));
update();
}
}