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

📄 ldleniefeilongdocument.cpp

📁 symbian 视图切换源代码,很有学习价值
💻 CPP
字号:
/* Copyright (c) 2008, NieFeiLong. All rights reserved */

#include "LDLENieFeiLongAppUi.h"
#include "LDLENieFeiLongDocument.h"


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

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

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

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

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

CEikAppUi* CLDLENieFeiLongDocument::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) CLDLENieFeiLongAppUi));
    }

⌨️ 快捷键说明

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