123456789101112131415 |
- #ifndef JOBS_H
- #define JOBS_H
- #include <QObject>
- #include <QPropertyAnimation>
- #include <QEasingCurve>
- #include <QWidget>
- class JOBS : public QObject{
- Q_OBJECT
- public:
- static void btn_animation(QWidget* obj, QPropertyAnimation* animation, int start = 50, int end = 170);
- };
- #endif // JOBS_H
|