From f01a61b76c8588a4df2054ab70e9a746a74f7817 Mon Sep 17 00:00:00 2001 From: Felix Ernst Date: Sat, 2 Jan 2021 17:48:52 +0000 Subject: Animate split view mode toggling Have the secondary ViewContainer slide into/out of view when split view mode is switched on or off by the user. This should help users understand what split view mode is about. Without the animation it might seem like the only thing the button does is creating a weird vertical line in the middle of the view or something. With the animation it should be clear that the second view is a separate entity that was added. The closing animation will help users understand which of the ViewContainers was just closed. --- src/global.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to '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 -- cgit v1.3