📄 s60uicodeexapplication.cpp
字号:
/*
* ==============================================================================
* Name : S60UICodeExApplication.cpp
* Part of : S60UICodeEx
* Interface :
* Description :
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
// INCLUDE FILES
#include <avkon.hrh>
#include <avkon.rsg>
#include <S60UICodeEx.rsg>
#include "S60UICodeEx.h"
// CONSTANTS
const TUid KUidS60UICodeEx = { 0x8000ABBA };
// ----------------------------------------------------------------------------
// CS60UICodeExApplication::AppDllUid
// The function is called by the UI framework to ask for the
// application's UID.
// ----------------------------------------------------------------------------
//
TUid CS60UICodeExApplication::AppDllUid() const
{
return KUidS60UICodeEx;
}
// ----------------------------------------------------------------------------
// CS60UICodeExApplication::CreateDocumentL
// Creates an instance of the document class. Called by UI framework.
// ----------------------------------------------------------------------------
//
CApaDocument* CS60UICodeExApplication::CreateDocumentL()
{
return new ( ELeave ) CS60UICodeExDocument( *this );
}
// End of file.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -