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.
nmWTAI-Platform/Include/iGui/iGuiSplash/iSplashObjSwf.h

35 lines
559 B
C

#pragma once
#include "qglobal.h"
#ifdef Q_OS_WIN
#include <ActiveQt/QAxWidget>
#endif
#include "iSplashObj.h"
#ifdef Q_OS_WIN
// 麒麟说明:
// 不要继续使用SWF格式花10分钟转换为MP4或直接使用Qt动画可以避免大量的兼容性问题。
class I_GUI_SPLASH_EXPORT iSplashObjSwf : public QAxWidget, public iSplashObj
{
//Q_OBJECT// Must deleted
public:
explicit iSplashObjSwf();
~iSplashObjSwf();
// 开启或关闭
virtual void start();
virtual void finish();
protected:
private:
};
#endif