📄 imagesviewerdocument.cpp
字号:
/*
============================================================================
Name : CImagesViewerDocument from ImagesViewerDocument.h
Author :
Version :
Copyright : Your copyright notice
Description : CImagesViewerDocument implementation
============================================================================
*/
// INCLUDE FILES
#include "ImagesViewerDocument.h"
#include "ImagesViewerAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CImagesViewerDocument::CImagesViewerDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CImagesViewerDocument::~CImagesViewerDocument()
{
}
// EPOC default constructor can leave.
void CImagesViewerDocument::ConstructL()
{
}
// Two-phased constructor.
CImagesViewerDocument* CImagesViewerDocument::NewL(
CEikApplication& aApp) // CImagesViewerApp reference
{
CImagesViewerDocument* self = new (ELeave) CImagesViewerDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CImagesViewerDocument::CreateAppUiL()
// constructs CImagesViewerAppUi
// ----------------------------------------------------
//
CEikAppUi* CImagesViewerDocument::CreateAppUiL()
{
return new (ELeave) CImagesViewerAppUi;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -