?? textimagesounddocument.cpp
字號:
/*
* ============================================================================
* Name : CTextImageSoundDocument from TextImageSoundDocument.h
* Part of : TextImageSound
* Created : 2006-4-22 by LiuLiping
* Implementation notes:
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "TextImageSoundDocument.h"
#include "TextImageSoundAppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CTextImageSoundDocument::CTextImageSoundDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CTextImageSoundDocument::~CTextImageSoundDocument()
{
}
// EPOC default constructor can leave.
void CTextImageSoundDocument::ConstructL()
{
}
// Two-phased constructor.
CTextImageSoundDocument* CTextImageSoundDocument::NewL(
CEikApplication& aApp) // CTextImageSoundApp reference
{
CTextImageSoundDocument* self = new (ELeave) CTextImageSoundDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CTextImageSoundDocument::CreateAppUiL()
// constructs CTextImageSoundAppUi
// ----------------------------------------------------
//
CEikAppUi* CTextImageSoundDocument::CreateAppUiL()
{
return new (ELeave) CTextImageSoundAppUi;
}
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -