/* SPDX-FileCopyrightText: 2021 Jonah BrĂ¼chert SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KIRIGAMIPLASMADESKTOPUNITS_H #define KIRIGAMIPLASMADESKTOPUNITS_H #include #include #include class Units : public Kirigami::Platform::Units { Q_OBJECT public: explicit Units(QObject *parent = nullptr); void updateAnimationSpeed(); private: KConfigWatcher::Ptr m_animationSpeedWatcher; }; #endif