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

📄 callsummaryappui.h

📁 Symbian s60 2rd 通话摘要例题
💻 H
字号:
#ifndef CALLSUMMARYAPPUI_H
#define CALLSUMMARYAPPUI_H

// INCLUDES

// System includes
#include <aknviewappui.h>	// CAknViewAppUi
#include <rpbkviewresourcefile.h>

// User includes
#include "CallSummary.hrh"	// TCallSummaryViewNumber

// FORWARD DECLARATIONS
class CAknNavigationControlContainer;
class CAknNavigationDecorator;
class CAknTabGroup;
class CCallLogEngine;
class CCallView;
class CTopTenView;
class CPhoneBookEngine;

// CLASS DECLARATION

/**
*
* @class	CCallSummaryAppUi CallSummaryAppUi.h 
* @brief	This is the main application UI class for a log engine and phonebook example based on the 
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
* 
*/
class CCallSummaryAppUi : public CAknViewAppUi
	{
public: // Constructor and destructor
	void ConstructL();
	~CCallSummaryAppUi();

private: // from CEikAppUi
	void HandleCommandL(TInt aCommand);
	
private: // from CCoeAppUi
	virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);

private: // data
	CCallView*						iIncomingView;	// Not owned by this class.
	CCallView*						iOutgoingView;	// Not owned by this class.
	CTopTenView*					iTopTenView;    // Not owned by this class.
	TCallSummaryViewNumber			iCurrentViewId;
	CAknNavigationControlContainer* iNaviPane;		// Not owned by this class.
	CAknTabGroup*					iTabGroup;		// Not owned by this class.
	CAknNavigationDecorator*		iDecoratedTabGroup;
	CPhoneBookEngine* iPhoneBookEngine;
	};

#endif	// #ifndef CALLSUMMARYAPPUI_H

// End of File

⌨️ 快捷键说明

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