X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/576a97d8eb9601f4ad74def6528cc90fffe97b1c..a2c9c05de2dfabbb2bb614390c8e03023dad2bd1:/src/global.h diff --git a/src/global.h b/src/global.h index 65247351a..80ec03fd0 100644 --- a/src/global.h +++ b/src/global.h @@ -11,6 +11,7 @@ #include #include +class KConfigGroup; class OrgKdeDolphinMainWindowInterface; namespace Dolphin { @@ -38,13 +39,15 @@ namespace Dolphin { * @p preferredService needs to support the org.kde.dolphin.MainWindow dbus interface with the /dolphin/Dolphin_1 path. * Returns true if the URLs were successfully attached. */ - bool attachToExistingInstance(const QList& inputUrls, bool openFiles, bool splitView, const QString& preferredService = QString()); + bool attachToExistingInstance(const QList& inputUrls, bool openFiles, bool splitView, const QString& preferredService, const QString &activationToken); /** * Returns a QVector with all GUI-capable Dolphin instances */ QVector, QStringList>> dolphinGuiInstances(const QString& preferredService); + QPair sortOrderForUrl(QUrl &url); + /** * TODO: Move this somewhere global to all KDE apps, not just Dolphin */ @@ -52,4 +55,31 @@ namespace Dolphin { const int LAYOUT_SPACING_SMALL = 2; } +enum Animated { + WithAnimation, + WithoutAnimation +}; + +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