You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
369 B
C++
26 lines
369 B
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
|
|
#include "iSplashObj.h"
|
|
|
|
class I_GUI_SPLASH_EXPORT iSplashObjGif : public QLabel, public iSplashObj
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit iSplashObjGif ();
|
|
~iSplashObjGif ();
|
|
|
|
// 开启或关闭
|
|
virtual void start();
|
|
virtual void finish();
|
|
|
|
protected:
|
|
// 居中显示
|
|
void changeBound(QRect rt);
|
|
|
|
private:
|
|
|
|
};
|