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

📄 mylistboxdocument.cpp

📁 MyListBox Symbian 3rd custom control.
💻 CPP
字号:
// --------------------------------------------------------------------------
// MyListBoxDocument.cpp
//
// Copyright 2005, Antony Pranata
// http://www.antonypranata.com
//
// A document class for custom list box example.
// --------------------------------------------------------------------------

// INCLUDE FILES
#include "MyListBoxDocument.h"
#include "MyListBoxAppui.h"

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

CMyListBoxDocument::CMyListBoxDocument(CEikApplication& aApp)
:CQikDocument(aApp)    
	{
	}

CMyListBoxDocument::~CMyListBoxDocument()
	{
	}

void CMyListBoxDocument::ConstructL()
	{
	}

CMyListBoxDocument* CMyListBoxDocument::NewL(CEikApplication& aApp)
	{
	CMyListBoxDocument* self = new (ELeave) CMyListBoxDocument(aApp);
	CleanupStack::PushL(self);
	self->ConstructL();
	CleanupStack::Pop();

	return self;
	}
    
CEikAppUi* CMyListBoxDocument::CreateAppUiL()
	{
	return new (ELeave) CMyListBoxAppUi;
	}

// End of File  

⌨️ 快捷键说明

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