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

📄 aknexlistdocument.cpp

📁 symbian ui的 例子 初学者可以 好好看看,这个是培训的资料,应该比较宝贵
💻 CPP
字号:
/*  Copyright (c) 2005, Nokia. All rights reserved */

// INCLUDE FILES
#include "AknExListDocument.h"
#include "AknExListAppUi.h"

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

// ----------------------------------------------------------------------------
// CAknExListDocument::NewL()
// Symbian two-phased constructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument* CAknExListDocument::NewL( CEikApplication& aApp )
    {
    CAknExListDocument* self = new ( ELeave ) CAknExListDocument( aApp );
    CleanupStack::PushL( self ); // Pushes document to clean-up stack.
    self->ConstructL();
    CleanupStack::Pop(); // Pops from clean-up stack.
    return self;
    }

// ----------------------------------------------------------------------------
// CAknExListDocument::~CAknExListDocument()
// Destructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument::~CAknExListDocument()
    {
    }

// ----------------------------------------------------------------------------
// CAknExListDocument::CAknExListDocument()
// Overload constructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument::CAknExListDocument( CEikApplication& aApp )
: CEikDocument( aApp )
    {
    }

// ----------------------------------------------------------------------------
// CAknExListDocument::ConstructL()
// Symbian constructor.
// ----------------------------------------------------------------------------
//
void CAknExListDocument::ConstructL()
    {
    }

// ----------------------------------------------------------------------------
// CAknExListDocument::CreateAppUiL()
// Constructs CAknExListAppUi.
// ----------------------------------------------------------------------------
//
CEikAppUi* CAknExListDocument::CreateAppUiL()
    {
    return new ( ELeave ) CAknExListAppUi;
    }

// End of File

⌨️ 快捷键说明

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