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

📄 pdfs60application.cpp

📁 Symbian界面设计的C++源代码例子:Designing and building portable UIs for Symbian OS: Using a controller as a por
💻 CPP
字号:
//
// PdfS60Application.cpp
//

#include <aknapp.h>

// UI
#include "PdfS60Document.h"

class CPdfS60Application: public CAknApplication
	{
// --o CEikApplication
private:
	TUid AppDllUid() const { return KUidPdf; }
	CApaDocument* CreateDocumentL();
	CDictionaryStore* OpenIniFileLC(RFs& aFs) const;
	};

CApaDocument* CPdfS60Application::CreateDocumentL()
	{
	CPdfS60Document* doc = new(ELeave) CPdfS60Document(*this);
	CleanupStack::PushL(doc);
	doc->ConstructL();
	CleanupStack::Pop(); // doc
	return doc;
	}

CDictionaryStore* CPdfS60Application::OpenIniFileLC(RFs& aFs) const
	{
	return CEikApplication::OpenIniFileLC(aFs);
	}

EXPORT_C CApaApplication* NewApplication()
	{
	return new CPdfS60Application;
	}

GLDEF_C TInt E32Dll(TDllReason /* aReason */)
	{
	return KErrNone;
	}

⌨️ 快捷键说明

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