📄 fullscreenapp.cpp
字号:
/* ============================================================================
* Name : CFullScreenApp from FullScreenApp.cpp
* Part of : FullScreen
* Created : 15.05.2006 by ToBeReplacedByAuthor
*
* Implementation notes:
*
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "FullScreenApp.h"
#include "FullScreenDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CFullScreenApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CFullScreenApp::AppDllUid() const
{
return KUidFullScreen;
}
// ---------------------------------------------------------
// CFullScreenApp::CreateDocumentL()
// Creates CFullScreenDocument object
// ---------------------------------------------------------
//
CApaDocument* CFullScreenApp::CreateDocumentL()
{
return CFullScreenDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CFullScreenApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CFullScreenApp;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -