⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 splash_screen.h

📁 symbian快捷方式添加的实例.3版的例子,添加快捷方式.
💻 H
字号:

#ifndef __SPLASSCREEN_H__
#define __SPLASSCREEN_H__

#include <coecntrl.h>       // CCoeControl
#include <AknsBasicBackgroundControlContext.h> 
#include <aknsdrawutils.h>
#include <aknscontrolcontext.h>
#include <AknsSkinInstance.h>
#include <aknsutils.h>

class CFbsBitmap;

//-------------------------------------------------------------------
//
//-------------------------------------------------------------------
class CMySplashScreen : public CCoeControl
    {
public:
	static CMySplashScreen* NewL(const TRect& aRect);
	~CMySplashScreen();
protected:
	TTypeUid::Ptr MopSupplyObject(TTypeUid aId); // needed for skins stuff
private:
	virtual void SizeChanged();
    void ConstructL(const TRect& aRect);
	void Draw(const TRect& aRect) const;
private:
	CAknsBasicBackgroundControlContext*	iBgContext; // skins are drawn with this one
	CFbsBitmap*		iBgPic;
	CFbsBitmap*		iBgMsk;
};

  
#endif // __SPLASSCREEN_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -