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

📄 pizizhapplication.cpp

📁 实现了图像的切换效果,包括飞入飞出,雨滴效果,水平交错,百页窗效果,是symbian学习的好例子.
💻 CPP
字号:
/*
============================================================================
 Name		: pizizhApplication.cpp
 Author	  : pizi
 Copyright   : Your copyright notice
 Description : Main application class
============================================================================
*/

// INCLUDE FILES
#include "pizizh.hrh"
#include "pizizhDocument.h"
#include "pizizhApplication.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CpizizhApplication::CreateDocumentL()
// Creates CApaDocument object
// -----------------------------------------------------------------------------
//
CApaDocument* CpizizhApplication::CreateDocumentL()
	{
	// Create an pizizh document, and return a pointer to it
	return (static_cast<CApaDocument*>
					( CpizizhDocument::NewL( *this ) ) );
	}

// -----------------------------------------------------------------------------
// CpizizhApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CpizizhApplication::AppDllUid() const
	{
	// Return the UID for the pizizh application
	return KUidpizizhApp;
	}

// End of File

⌨️ 快捷键说明

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