?? bluetoothchatdialog.cpp
字號:
/**
*
* @brief Definition of CBluetoothChatDialog
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "BluetoothChatDialog.h"
// System includes
#include <aknappui.h> // iAvkonAppUi
#include <avkon.hrh> // EAknSoftkeyBack, EEikCmdExit
// ================= MEMBER FUNCTIONS =======================
/**
* Called by the framework when a button is pressed.
* Translates aButtonId into a command for the AppUi to handle
*
* @param aButtonId The button which was pressed
* @return false, always
*/
TBool CBluetoothChatDialog::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;
}
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -