📄 csmsdialog.cpp
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */
// INCLUDE FILES
#include <eiklabel.h>
#include <avkon.hrh>
#include <aknappui.h>
#include "CSmsDialog.h"
// ============================ MEMBER FUNCTIONS ===============================
// ----------------------------------------------------------
// CSmsDialog::~CSmsDialog()
// Destructor.
// ----------------------------------------------------------
//
CSmsDialog::~CSmsDialog()
{
}
// -----------------------------------------------------------------------------
// CSmsDialog::OkToExitL()
// Called by framework when the softkey is pressed.
// -----------------------------------------------------------------------------
//
TBool CSmsDialog::OkToExitL( TInt aButtonId )
{
// Translate the button presses into commands for the appui to handle
if ( aButtonId == EAknSoftkeyOptions )
{
iAvkonAppUi->ProcessCommandL( EAknSoftkeyOptions );
}
else if ( aButtonId == EAknSoftkeyExit )
{
iAvkonAppUi->ProcessCommandL( EEikCmdExit );
}
return EFalse;
}
// -----------------------------------------------------------------------------
// CSmsDialog::PreLayoutDynInitL()
// Called by framework before dialog is shown.
// -----------------------------------------------------------------------------
//
void CSmsDialog::PreLayoutDynInitL()
{
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -