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++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#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