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