📄 mulslistappui.cpp
字号:
/*
* ============================================================================
* Name : CMulsListAppUi from MulsListAppui.cpp
* Part of : MulsList
* Created : 16.03.2006 by ToBeReplacedByAuthor
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include <eikmenup.h> // for CEikMenuPane
#include <avkon.hrh>
#include <avkon.rsg>
#include <aknquerydialog.h>
#include <MulsList.rsg>
#include "MulsListAppui.h"
#include "MulsListContainer.h"
#include "MulsList.hrh"
// ================= MEMBER FUNCTIONS =======================
//
// ----------------------------------------------------------
// CMulsListAppUi::ConstructL()
//
// ----------------------------------------------------------
//
void CMulsListAppUi::ConstructL()
{
BaseConstructL();
iAppContainer = new (ELeave) CMulsListContainer;
iAppContainer->SetMopParent( this );
iAppContainer->ConstructL( ClientRect() );
AddToStackL( iAppContainer );
}
// ----------------------------------------------------
// CMulsListAppUi::~CMulsListAppUi()
// Destructor
// Frees reserved resources
// ----------------------------------------------------
//
CMulsListAppUi::~CMulsListAppUi()
{
if (iAppContainer)
{
RemoveFromStack( iAppContainer );
delete iAppContainer;
}
}
// ------------------------------------------------------------------------------
// CMulsListAppUi::DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane)
// This function is called by the EIKON framework just before it displays
// a menu pane. Its default implementation is empty, and by overriding it,
// the application can set the state of menu items dynamically according
// to the state of application data.
// ------------------------------------------------------------------------------
//
void CMulsListAppUi::DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane)
{
if(aResourceId==R_MULSLIST_MENU)
{
aMenuPane->SetItemDimmed(EMulsListCmdDelete, iAppContainer->SelectionCount()<=0);
}
}
// ----------------------------------------------------
// CMulsListAppUi::HandleKeyEventL(
// const TKeyEvent& aKeyEvent,TEventCode /*aType*/)
// takes care of key event handling
// ----------------------------------------------------
//
TKeyResponse CMulsListAppUi::HandleKeyEventL(
const TKeyEvent& /*aKeyEvent*/,TEventCode /*aType*/)
{
return EKeyWasNotConsumed;
}
// ----------------------------------------------------
// CMulsListAppUi::HandleCommandL(TInt aCommand)
// takes care of command handling
// ----------------------------------------------------
//
void CMulsListAppUi::HandleCommandL(TInt aCommand)
{
switch ( aCommand )
{
case EAknSoftkeyBack:
case EEikCmdExit:
{
Exit();
break;
}
case EMulsListCmdAdd:
{
TBuf<16> buf;
CAknTextQueryDialog* dlg = new(ELeave) CAknTextQueryDialog(buf);
if(dlg->ExecuteLD(R_AVKON_DIALOG_QUERY_VALUE_TEXT))
{
iAppContainer->AddRecordL(buf);
}
break;
}
case EMulsListCmdDelete:
{
iAppContainer->DeleteRecordL();
break;
}
// TODO: Add Your command handling code here
default:
break;
}
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -