jobs.h 303 B

123456789101112131415
  1. #ifndef JOBS_H
  2. #define JOBS_H
  3. #include <QObject>
  4. #include <QPropertyAnimation>
  5. #include <QEasingCurve>
  6. #include <QWidget>
  7. class JOBS : public QObject{
  8. Q_OBJECT
  9. public:
  10. static void btn_animation(QWidget* obj, QPropertyAnimation* animation, int start = 50, int end = 170);
  11. };
  12. #endif // JOBS_H