jobs.h 306 B

1234567891011121314
  1. #ifndef JOBS_H
  2. #define JOBS_H
  3. #include <QEasingCurve>
  4. #include <QObject>
  5. #include <QPropertyAnimation>
  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