#ifndef ONESHADOWEFFECT_H #define ONESHADOWEFFECT_H #include class OneShadowEffect : public QGraphicsDropShadowEffect { public: OneShadowEffect(QObject *parent = nullptr, int radius = 20); ~OneShadowEffect(); private: void init(int radius); }; #endif // ONESHADOWEFFECT_H