]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/global.h
KStandardItemListWidget: don't double up the expansion offset
[dolphin.git] / src / global.h
index 65247351a7476d1ee0d9a219251b60a3ffd42c75..4f4eb890cd79e954f72d6da81f8fa94140e1cc62 100644 (file)
@@ -11,6 +11,7 @@
 #include <QUrl>
 #include <QWidget>
 
+class KConfigGroup;
 class OrgKdeDolphinMainWindowInterface;
 
 namespace Dolphin {
@@ -45,6 +46,8 @@ namespace Dolphin {
      */
     QVector<QPair<QSharedPointer<OrgKdeDolphinMainWindowInterface>, QStringList>> dolphinGuiInstances(const QString& preferredService);
 
+    QPair<QString, Qt::SortOrder> sortOrderForUrl(QUrl &url);
+
     /**
      * TODO: Move this somewhere global to all KDE apps, not just Dolphin
      */
@@ -52,4 +55,26 @@ namespace Dolphin {
     const int LAYOUT_SPACING_SMALL = 2;
 }
 
+class GlobalConfig : public QObject
+{
+    Q_OBJECT
+
+public:
+    GlobalConfig() = delete;
+
+    /**
+     * @return a value from the global KDE config that should be
+     *         multiplied with every animation duration once.
+     *         0.0 is returned if animations are globally turned off.
+     *         1.0 is the default value.
+     */
+    static double animationDurationFactor();
+
+private:
+    static void updateAnimationDurationFactor(const KConfigGroup &group, const QByteArrayList &names);
+
+private:
+    static double s_animationDurationFactor;
+};
+
 #endif //GLOBAL_H