myhellodocument.cpp

来自「symbian中讲述的一个有关设置title和icon的例子」· C++ 代码 · 共 44 行

CPP
44
字号
/* Copyright (c) 2008, Nokia. All rights reserved */

#include "MyHelloAppUi.h"
#include "MyHelloDocument.h"


CMyHelloDocument* CMyHelloDocument::NewL(CEikApplication& aApp)
    {
    CMyHelloDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
    }

CMyHelloDocument* CMyHelloDocument::NewLC(CEikApplication& aApp)
    {
    CMyHelloDocument* self = new (ELeave) CMyHelloDocument(aApp);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
    }

void CMyHelloDocument::ConstructL()
    {
    // Add any construction that can leave here
    }    

CMyHelloDocument::CMyHelloDocument(CEikApplication& aApp) : CAknDocument(aApp) 
    {
    // Add any construction that can not leave here
    }   

CMyHelloDocument::~CMyHelloDocument()
    {
    // Any destruction code here
    }

CEikAppUi* CMyHelloDocument::CreateAppUiL()
    {
    // Create the application user interface, and return a pointer to it;
    // the framework takes ownership of this object
    return (static_cast<CEikAppUi*>(new (ELeave) CMyHelloAppUi));
    }

⌨️ 快捷键说明

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