]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/panels/places/placesitemlistwidget.cpp
Allow folder creation on desktop via F10 shortcut
[dolphin.git] / src / panels / places / placesitemlistwidget.cpp
index 52b3baf309063857a7e75b1e8017407e998e11e4..38bc13438c6335b8182f61e952e475fe09e20e9f 100644 (file)
@@ -6,18 +6,23 @@
 
 #include "placesitemlistwidget.h"
 
-#include <QGraphicsView>
 #include <QStyleOption>
+#include <QPainter>
 
-#include <KDiskFreeSpaceInfo>
-#include <KMountPoint>
+#include <KColorScheme>
+
+#include <KIO/FileSystemFreeSpaceJob>
+#include <Solid/Device>
+#include <Solid/NetworkShare>
 
 #define CAPACITYBAR_HEIGHT 2
 #define CAPACITYBAR_MARGIN 2
+#define CAPACITYBAR_CACHE_TTL 60000
 
 
 PlacesItemListWidget::PlacesItemListWidget(KItemListWidgetInformant* informant, QGraphicsItem* parent) :
     KStandardItemListWidget(informant, parent)
+    , m_drawCapacityBar(false)
 {
 }
 
@@ -36,78 +41,107 @@ QPalette::ColorRole PlacesItemListWidget::normalTextColorRole() const
     return QPalette::WindowText;
 }
 
+void PlacesItemListWidget::updateCapacityBar()
+{
+    const QString udi = data().value("udi").toString();
+    if (udi.isEmpty()) {
+        resetCapacityBar();
+        return;
+    }
+    const Solid::Device device = Solid::Device(udi);
+    if (device.isDeviceInterface(Solid::DeviceInterface::NetworkShare)
+            || device.isDeviceInterface(Solid::DeviceInterface::OpticalDrive)
+            || device.isDeviceInterface(Solid::DeviceInterface::OpticalDisc)) {
+        resetCapacityBar();
+        return;
+    }
+    const QUrl url = data().value("url").toUrl();
+
+    if (m_freeSpaceInfo.job || !m_freeSpaceInfo.lastUpdated.hasExpired()) {
+        // Job running or cache is still valid.
+        return;
+    }
+
+    m_freeSpaceInfo.job = KIO::fileSystemFreeSpace(url);
+    connect(
+        m_freeSpaceInfo.job,
+        &KIO::FileSystemFreeSpaceJob::result,
+        this,
+        [this](KIO::Job *job, KIO::filesize_t size, KIO::filesize_t available) {
+            // even if we receive an error we want to refresh lastUpdated to avoid repeatedly querying in this case
+            m_freeSpaceInfo.lastUpdated.setRemainingTime(CAPACITYBAR_CACHE_TTL);
+
+            if (job->error()) {
+                return;
+            }
+
+            m_freeSpaceInfo.size = size;
+            m_freeSpaceInfo.used = size - available;
+            m_freeSpaceInfo.usedRatio = (qreal)m_freeSpaceInfo.used / (qreal)m_freeSpaceInfo.size;
+            m_drawCapacityBar = size > 0;
+
+            update();
+        }
+    );
+}
+
+void PlacesItemListWidget::resetCapacityBar()
+{
+    m_drawCapacityBar = false;
+    delete m_freeSpaceInfo.job;
+    m_freeSpaceInfo.lastUpdated.setRemainingTime(0);
+    m_freeSpaceInfo.size = 0;
+    m_freeSpaceInfo.used = 0;
+    m_freeSpaceInfo.usedRatio = 0;
+}
+
+void PlacesItemListWidget::polishEvent()
+{
+    updateCapacityBar();
+
+    QGraphicsWidget::polishEvent();
+}
+
 void PlacesItemListWidget::paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget)
 {
     KStandardItemListWidget::paint(painter, option, widget);
 
-    bool drawCapacityBar = false;
-    const QUrl url = data().value("url").toUrl();
-    if (url.isLocalFile()) {
-        const QString mountPointPath = url.toLocalFile();
-        KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(mountPointPath);
-        bool isMountPoint = (mp && mp->mountPoint() == mountPointPath);
-
-        if (isMountPoint) {
-            const KDiskFreeSpaceInfo info = KDiskFreeSpaceInfo::freeSpaceInfo(mountPointPath);
-            drawCapacityBar = info.size() != 0;
-            if (drawCapacityBar) {
-                const TextInfo* textInfo = m_textInfo.value("text");
-                if (textInfo) { // See KStandarItemListWidget::paint() for info on why we check textInfo.
-                    painter->save();
-
-                    QRect capacityRect(
-                        textInfo->pos.x(),
-                        option->rect.top() + option->rect.height() - CAPACITYBAR_HEIGHT - CAPACITYBAR_MARGIN,
-                        qMin((qreal)option->rect.width(), selectionRect().width()) - (textInfo->pos.x() - option->rect.left()),
-                        CAPACITYBAR_HEIGHT
-                    );
-
-                    const qreal ratio = (qreal)info.used() / (qreal)info.size();
-                    // qDebug() << "ratio:" << ratio << "(" << info.used() << "/" << info.size() << ")";
-
-                    const QPalette pal = palette();
-                    const QPalette::ColorGroup group = isActiveWindow() ? QPalette::Active : QPalette::Inactive;
-                    // QColor bgColor = QColor::fromRgb(230, 230, 230);
-                    // QColor outlineColor = QColor::fromRgb(208, 208, 208);
-                    // QColor bgColor = QColor::fromRgb(0, 230, 0);
-                    // QColor outlineColor = QColor::fromRgb(208, 0, 0, 127);
-                    // QColor normalUsedColor = QColor::fromRgb(38, 160, 218);
-                    // QColor dangerUsedColor = QColor::fromRgb(218, 38, 38);
-                    // QColor bgColor = pal.base().color().darker(130);
-                    // QColor outlineColor = pal.base().color().darker(150);
-
-                    QPalette::ColorRole role;
-                    // role = isSelected() ? QPalette::Highlight : QPalette::Window;
-                    // QColor bgColor = styleOption().palette.color(group, role).darker(150);
-                    // QColor outlineColor = styleOption().palette.color(group, role).darker(170);
-                    QColor bgColor = isSelected()
-                        ? styleOption().palette.color(group, QPalette::Highlight).darker(180)
-                        : styleOption().palette.color(group, QPalette::Window).darker(120);
-
-                    role = isSelected() ? QPalette::HighlightedText : QPalette::Highlight;
-                    QColor normalUsedColor = styleOption().palette.color(group, role);
-
-                    QColor dangerUsedColor = QColor::fromRgb(218, 38, 38);
-
-                    // Background
-                    painter->fillRect(capacityRect, bgColor);
-
-                    // Outline
-                    // const QRect outlineRect(capacityRect.x(), capacityRect.y(), capacityRect.width() - 1, capacityRect.height() - 1);
-                    // painter->setPen(outlineColor);
-                    // painter->drawRect(outlineRect);
-
-                    // Fill
-                    const QRect fillRect(capacityRect.x(), capacityRect.y(), capacityRect.width() * ratio, capacityRect.height());
-                    if (ratio < 0.95) { // Fill
-                        painter->fillRect(fillRect, normalUsedColor);
-                    } else {
-                        painter->fillRect(fillRect, dangerUsedColor);
-                    }
-
-                    painter->restore();
-                }
+    if (m_drawCapacityBar) {
+        const TextInfo* textInfo = m_textInfo.value("text");
+        if (textInfo) { // See KStandarItemListWidget::paint() for info on why we check textInfo.
+            painter->save();
+
+            const QRect capacityRect(
+                textInfo->pos.x(),
+                option->rect.top() + option->rect.height() - CAPACITYBAR_HEIGHT - CAPACITYBAR_MARGIN,
+                qMin((qreal)option->rect.width(), selectionRect().width()) - (textInfo->pos.x() - option->rect.left()),
+                CAPACITYBAR_HEIGHT
+            );
+
+            const QPalette pal = palette();
+            const QPalette::ColorGroup group = isActiveWindow() ? QPalette::Active : QPalette::Inactive;
+
+            // Background
+            const QColor bgColor = isSelected()
+                ? pal.color(group, QPalette::Highlight).darker(180)
+                : pal.color(group, QPalette::Window).darker(120);
+
+            painter->fillRect(capacityRect, bgColor);
+
+            // Fill
+            const QRect fillRect(capacityRect.x(), capacityRect.y(), capacityRect.width() * m_freeSpaceInfo.usedRatio, capacityRect.height());
+            if (m_freeSpaceInfo.usedRatio >= 0.95) { // More than 95% full!
+                const QColor dangerUsedColor = KColorScheme(group, KColorScheme::View).foreground(KColorScheme::NegativeText).color();
+                painter->fillRect(fillRect, dangerUsedColor);
+            } else {
+                const QPalette::ColorRole role = isSelected() ? QPalette::HighlightedText : QPalette::Highlight;
+                const QColor normalUsedColor = styleOption().palette.color(group, role);
+                painter->fillRect(fillRect, normalUsedColor);
             }
+
+            painter->restore();
         }
     }
+
+    updateCapacityBar();
 }