📄 s60oplruntimedialog.cpp
字号:
#include "OplStartUpDialog.h"
#include <avkon.hrh>
#include <aknappui.h>
#include <EikFUtil.h>
#include <MsvIds.h>
COplRuntimeStartUpDialog::~COplRuntimeStartUpDialog()
{
}
// This function is called when either of the two softkeys is pressed.
TBool COplRuntimeStartUpDialog::OkToExitL(TInt aButtonId)
{
if (aButtonId == EAknSoftkeyOptions)
iAvkonAppUi->ProcessCommandL(EAknSoftkeyOptions);
else if (aButtonId == EAknSoftkeyExit)
iAvkonAppUi->ProcessCommandL(EEikCmdExit);
return EFalse;
}
void COplRuntimeStartUpDialog::PreLayoutDynInitL()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -