?? 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -