📄 s60appui.cpp
字号:
// s60appui.cpp
// Copyright Symbian Ltd, John Pagonis 2005-2006, Symbian Developer Network
#include "projectAppUi.h" //includes the Avkon headers
void CProjectAppUi::ConstructUiVariantL()
{
// completes the UI framework's construction of the App UI.
BaseConstructL();
}
/**
This method may be called by HandlecommandL(TInt aCommand) for GUI Variant
specific command handling.
*/
void CProjectAppUi::VariantHandleCommandL(TInt aCommand)
{
switch(aCommand)
{
case EAknSoftkeyExit:
{
CEikAppUi::Exit();
break;
}
default:
break;
}
}
void CProjectAppUi::VariantDimButtons()
{
}
void CProjectAppUi::DimOption()
{
}
void CProjectAppUi::DimCancelOption()
{
}
/**
This method may be called by DynInitMenuPaneL(TInt aMenuId,CEikMenuPane* aMenuPane),
for GUI Variant specific command handling.
*/
void CProjectAppUi::VariantDynInitMenuPaneL(TInt aMenuId,CEikMenuPane* aMenuPane)
{
}
CProjectDocument::CProjectDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -