?? helloworldddialog.cpp
字號:
/*
* ============================================================================
* Name : CHelloWorldDDialog from HelloWorldDDialog.h
* Part of : HelloWorldD
* Created : 2006-3-13 by
* Implementation notes:
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "HelloWorldDDialog.h"
#include <eiklabel.h> // for example label control
#include <avkon.hrh>
#include <aknappui.h>
// ================= MEMBER FUNCTIONS =======================
// Destructor
CHelloWorldDDialog::~CHelloWorldDDialog()
{
}
// ---------------------------------------------------------
// CHelloWorldDDialog::OkToExitL(TInt aButtonId)
// called by framework when the softkey is pressed
// ---------------------------------------------------------
//
TBool CHelloWorldDDialog::OkToExitL(TInt aButtonId)
{
// Translate the button presses into commands for the appui & current
// view to handle
if ( aButtonId == EAknSoftkeyOptions )
{
iAvkonAppUi->ProcessCommandL( EAknSoftkeyOptions );
}
else if ( aButtonId == EAknSoftkeyBack )
{
iAvkonAppUi->ProcessCommandL( EEikCmdExit );
}
return EFalse;
}
// ---------------------------------------------------------
// CHelloWorldDDialog::PreLayoutDynInitL();
// called by framework before dialog is shown
// ---------------------------------------------------------
//
void CHelloWorldDDialog::PreLayoutDynInitL()
{
}
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -