mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-12 06:12:21 +08:00
35 lines
720 B
C++
35 lines
720 B
C++
|
|
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QTimeLine>
|
|
|
|
class SpkLoading : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SpkLoading(QWidget *parent = nullptr);
|
|
virtual void paintEvent(QPaintEvent *e) override;
|
|
virtual void resizeEvent(QResizeEvent *e) override;
|
|
|
|
private:
|
|
QTimeLine *mAnimTimer;
|
|
QList<int> mSizeList;
|
|
int mUserHeight = 0;
|
|
int dw, dh;
|
|
double dx, dy;
|
|
|
|
public slots:
|
|
void start() { mAnimTimer->start(); }
|
|
void stop() { mAnimTimer->stop(); }
|
|
void Begin() { start(); setVisible(true); }
|
|
void End() { stop(); setVisible(false); }
|
|
void setHeight(int h) { mUserHeight = h; }
|
|
void reset();
|
|
|
|
private slots:
|
|
void timer(int s);
|
|
void loop();
|
|
};
|
|
|