⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 countdownappui.cpp

📁 《基于symbian os 的手机开发与应用》 源代码 何伟 著
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CCountDownAppUi from CountDownAppUi.cpp
*  Part of  : CountDown
*  Created  : 2005-8-29 by 
*  Implementation notes:
*     Initial content was generated by Series 60 AppWizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include "CountDownAppUi.h"
#include "CountDownContainer.h" 
#include "countdown.hrh"

#include <CountDown.rsg>
#include <avkon.hrh>

// ================= MEMBER FUNCTIONS =======================
//
// ----------------------------------------------------------
// CCountDownAppUi::ConstructL()
// ?implementation_description
// ----------------------------------------------------------
//
void CCountDownAppUi::ConstructL()
{
	iDB = new(ELeave) CCountDownDB();
    iDB->SaveRscL();
    //BaseConstructL(CAknAppUi::EAknEnableSkinFlag);
    BaseConstructL();
    iAppContainer = new (ELeave) CCountDownContainer;
    iAppContainer->SetMopParent(this);
    iAppContainer->ConstructL( ClientRect() , this);
    AddToStackL(iAppContainer);
}

// ----------------------------------------------------
// CCountDownAppUi::~CCountDownAppUi()
// Destructor
// Frees reserved resources
// ----------------------------------------------------
//
CCountDownAppUi::~CCountDownAppUi()
{
    if (iAppContainer)
	{
        RemoveFromStack( iAppContainer );
        delete iAppContainer;
	}
	delete iDB;
}

// ------------------------------------------------------------------------------
// CCountDownAppUi::::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 CCountDownAppUi::DynInitMenuPaneL(
									   TInt /*aResourceId*/,CEikMenuPane* /*aMenuPane*/)
{
}

// ----------------------------------------------------
// CCountDownAppUi::HandleKeyEventL(
//     const TKeyEvent& aKeyEvent,TEventCode /*aType*/)
// ?implementation_description
// ----------------------------------------------------
//
TKeyResponse CCountDownAppUi::HandleKeyEventL(
											  const TKeyEvent& /*aKeyEvent*/,TEventCode /*aType*/)
{
    return EKeyWasNotConsumed;
}

// ----------------------------------------------------
// CCountDownAppUi::HandleCommandL(TInt aCommand)
// ?implementation_description
// ----------------------------------------------------
//
void CCountDownAppUi::HandleCommandL(TInt aCommand)
{
    switch ( aCommand )
	{
	case EAknSoftkeyBack:
		if(iCurFunctionId!=EMenuPage)
		{
			iAppContainer->CreateFunctionListBoxL();
			break;
		}
		//break;
	case EEikCmdExit:
        Exit();
        break;
	case ECountDownCmdAppTest:
		{
            //iDB->SaveRscL();
            //iAppContainer->CmdAdd();
            break;
		}
        // TODO: Add Your command handling code here
		
	default:
		break;      
	}
}

// End of File  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -