X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/462982faa361c79daab43ce526ae64646b1ea63c..dd9405bf2f628bd28580737cc46335343074be0d:/src/global.h diff --git a/src/global.h b/src/global.h index 65247351a..088e9c5b6 100644 --- a/src/global.h +++ b/src/global.h @@ -11,6 +11,7 @@ #include #include +class KConfigGroup; class OrgKdeDolphinMainWindowInterface; namespace Dolphin { @@ -52,4 +53,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